hi,
Are there any issues that have to be taken care of while writing applications for Windows XP using Visual Basic 6.0?
Will an application developed on Windows 98 environment run properly on Windows XP?
Thanks
Printable View
hi,
Are there any issues that have to be taken care of while writing applications for Windows XP using Visual Basic 6.0?
Will an application developed on Windows 98 environment run properly on Windows XP?
Thanks
It should all be fine.
Mine have worked without a hitch and I did not make any code changes.
I have only tested a couple of programs.... but pretty complex ones.
works with me. I usually compile my programs and P&D them in 98SE so i dont "accedentally" include an Xp dll when i decide to include
VB Code:
Private Declare Function InitCommonControls Lib "comctl32.dll" () As Long Private Sub Form_Initialize() InitCommonControls End Sub
What is this coding supposed to do?Quote:
Originally posted by Liquid Pennies
works with me. I usually compile my programs and P&D them in 98SE so i dont "accedentally" include an Xp dll when i decide to include
VB Code:
Private Declare Function InitCommonControls Lib "comctl32.dll" () As Long Private Sub Form_Initialize() InitCommonControls End Sub
will app develop in xp work on any ...95,98,2k nt with out any hitch...
i hope backward compatabilty should do...
that code makes your buttons look Xp-ish when you add the MyExe.exe.manifest to the same folder as your programQuote:
Originally posted by Shawn N
What is this coding supposed to do?
See attachment