Application developed under vista
Windows API
2
Posts
2
Posters
0
Views
1
Watching
-
i have visual studio 2005.net installed in Windows Vista home Premium, and am wondering whether the application i develop while using Vista will still be used in other Windows OSs, as you know many people are still using XP and server 2003?
It can be used if you are not using any new APIs introduced in Vista. If you want to use the new Vista APIs you would first need to check the OS version using
GetVersionEx
and then dynamically load the APIs usingLoadLibrary
andGetProcAddress
.«_Superman_»