Hi guys,
I proudly shipped my latest and greatest only to have the user tell me under win2000 he gets the error message:
Myapp.exe "is not a valid Win32 Application!"
Where do i start?
PS testing the code HTML instruction
------------------
Kind Regards
Mike
[This message has been edited by Mike Trader (edited July 01, 2001).]
I proudly shipped my latest and greatest only to have the user tell me under win2000 he gets the error message:
Myapp.exe "is not a valid Win32 Application!"
Where do i start?
PS testing the code HTML instruction
Code:
FUNCTION PBMAIN LOCAL TmpAsciiz AS ASCIIZ*255 CALL GETMODULEFILENAME(BYVAL 0&, TmpAsciiz, SIZEOF(TmpAsciiz)) CHDIR LEFT$(TmpAsciiz, INSTR(-1, TmpAsciiz, "\")) ' Change Directory to the one this app resides in AppName = " Convert" DIALOG NEW 0 , "", , , 200, 100, %WS_POPUP OR %WS_DLGFRAME TO sDlg ' Splash Screen DIALOG SHOW MODELESS sDlg CALL SplashScreen SLEEP 500 Wdth = 110 : Hght = 190 : BtnW = 90 : BtnH = 14 : BtnS = Wdth/2-BtnW/2 : FrmS = 4 : FrmW = Wdth-2*FrmS TxtH = 12 : TxtS = 10 : TxtW = Wdth-TxtS-FrmS-2 : Disp = 104 DIALOG NEW 0, " Convert Data", 100, 60, Wdth, Hght, 0 TO hDlg DRAGACCEPTFILES hDlg, %True 'Registers window to accept dropped files. CONTROL ADD COMBOBOX, hDlg, 99,
------------------
Kind Regards
Mike
[This message has been edited by Mike Trader (edited July 01, 2001).]
Comment