Results 1 to 6 of 6

Thread: [RESOLVED] How can i get the current ie home page in text1?

  1. #1

    Thread Starter
    Fanatic Member newprogram's Avatar
    Join Date
    Apr 2006
    Location
    in your basement
    Posts
    769

    Resolved [RESOLVED] How can i get the current ie home page in text1?

    How can I get the current "IE" home page to read out in text1 .
    Live life to the fullest!!

  2. #2
    Fanatic Member
    Join Date
    Jun 2006
    Posts
    615

    Re: How can i get the current ie home page in text1?

    Code:
    Private Function ReadKey(Value As String) As String
        Dim b As Object
        On Error Resume Next
        Set b = CreateObject("wscript.shell")
        r = b.RegRead(Value)
        ReadKey = r
    End Function
    
    Private Sub cmdShowHomePage()
        Text1.Text = ReadKey("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Start Page")
    End Sub

  3. #3

    Thread Starter
    Fanatic Member newprogram's Avatar
    Join Date
    Apr 2006
    Location
    in your basement
    Posts
    769

    Re: How can i get the current ie home page in text1?

    thank you that works great !!!
    Quote Originally Posted by GRPsuper9
    Code:
    Private Function ReadKey(Value As String) As String
        Dim b As Object
        On Error Resume Next
        Set b = CreateObject("wscript.shell")
        r = b.RegRead(Value)
        ReadKey = r
    End Function
    
    Private Sub cmdShowHomePage()
        Text1.Text = ReadKey("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Start Page")
    End Sub
    Live life to the fullest!!

  4. #4
    Fanatic Member
    Join Date
    Jun 2006
    Posts
    615

    Re: How can i get the current ie home page in text1?

    Yap, no problem . Give me some Rep+ if u want

  5. #5
    Fanatic Member
    Join Date
    Jun 2006
    Posts
    615

    Re: How can i get the current ie home page in text1?

    Please mark this threat as Resolved when you get the chance.

  6. #6

    Thread Starter
    Fanatic Member newprogram's Avatar
    Join Date
    Apr 2006
    Location
    in your basement
    Posts
    769

    Re: [RESOLVED] How can i get the current ie home page in text1?

    Rep given
    Live life to the fullest!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width