Feb 7, 2001 #1 subhavs Programmer Nov 27, 2000 54 US Hello ... Is there a way that I can determine which operating system the application is running on from within the app itself ? Thanks in advance for the help, - Subha Nothing is impossible, even the word impossible says I'm possible.
Hello ... Is there a way that I can determine which operating system the application is running on from within the app itself ? Thanks in advance for the help, - Subha Nothing is impossible, even the word impossible says I'm possible.
Feb 7, 2001 #2 Gettoblaster Programmer Feb 4, 2000 13 GB You can use the GetVersionEX API: Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (ByVal lpVersionInformation As OSVERSIONINFO) As Long Gettoblaster Upvote 0 Downvote
You can use the GetVersionEX API: Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (ByVal lpVersionInformation As OSVERSIONINFO) As Long Gettoblaster
Feb 7, 2001 Thread starter #3 subhavs Programmer Nov 27, 2000 54 US Thanks GettoBlaster. I also found out just now that there is a SYSINFO control that can be used. This was much simpler than using the API calls. - Subha Nothing is impossible, even the word impossible says I'm possible. Upvote 0 Downvote
Thanks GettoBlaster. I also found out just now that there is a SYSINFO control that can be used. This was much simpler than using the API calls. - Subha Nothing is impossible, even the word impossible says I'm possible.