borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (HELP me, My filter has to work)Next Topic (How to check website) New Topic New Poll Post Reply
AndreaVB Forum : Internet Applications : How can i get the internet explorer version ,home page and to how change the home page!!
Poster Message
Slim Shady
Level: Scholar

Registered: 11-01-2005
Posts: 46

icon 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
View Profile Send Email to User Show All Posts | Quote Reply
Goran
Level: Moderator

Registered: 16-05-2002
Posts: 1681
icon 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


Dodatne informacije:

DllGetVersion

DllVersionInfo

quote:
and how to change the home page


You need to look into registry for this information. The key that holds this info is

HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Start Page

____________________________
If you find the answer helpful, please mark this topic as solved.
24-01-2005 at 11:06 PM
View Profile Send Email to User Show All Posts | Quote Reply
AndreaVB Forum : Internet Applications : How can i get the internet explorer version ,home page and to how change the home page!!
Previous Topic (HELP me, My filter has to work)Next Topic (How to check website) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder