client platform information

clochiani

Newcomer
Joined
Oct 20, 2003
Messages
5
How can you get information about the client? Is there an class present in the framework? I have to check it with a windows application! I have to know what version of .NET is present and whether IExplorer is present or not...
 
This will return the .NET version for you:
Visual Basic:
System.Environment.Version
You can get the version in pieces like major, minor, build or the whole version. To use it as a string you would simply use the TOString method.
IE 5.1 (I think thats the one) is required for framework and every Windows ships with IE so you shouldn't have problems there.
 
Back
Top