How can i get the internet explorer version ,home page and to how change the home page!!
Hi guys...
I want to know how can i get the internet explorer version..
and how to get the internet explorer home page..
and how to change the home page
[Edited by Slim Shady on 24-01-2005 at 01:19 AM GMT]
24-01-2005 at 01:15 AM
|
Goran Level: Moderator Registered: 16-05-2002 Posts: 1681
Re: How can i get the internet explorer version ,home page and to how change the home page!!
quote:I want to know how can i get the internet explorer version..
Option Explicit
Private Type DllVersionInfo
cbSize As Long
dwMajorVersion As Long
dwMinorVersion As Long
dwBuildNumber As Long
dwPlatformID As Long
End Type
Private Declare Function DllGetVersion Lib "shlwapi" (dwVersion As DllVersionInfo) As Long
Private Sub Command1_Click()
Dim DVI As DllVersionInfo
DVI.cbSize = Len(DVI)
DllGetVersion DVI
MsgBox "IE Version: " & DVI.dwMajorVersion & "." & _
DVI.dwMinorVersion & "." & DVI.dwBuildNumber
End Sub