|
-
May 24th, 2013, 01:31 AM
#1
Thread Starter
New Member
How to hide AddressBar using VB6 in Internet Explorer 9
Hi All, InternetExplorer.AddressBar = False was working fine with IE 8. But in IE 9, this does not work. Address Bar is visible. Please help.
-
May 24th, 2013, 05:48 AM
#2
Re: How to hide AddressBar using VB6 in Internet Explorer 9
Works fine for me
Code:
Private Sub cmd_Click()
Dim ie9 As Object
Set ie9 = CreateObject("InternetExplorer.Application")
ie9.Visible = True
ie9.AddressBar = False
End Sub
Version: 9.0.8112.16421
Update Versions: 9.0.16
according to 'About'
(Running 32bit OS)
-
May 24th, 2013, 06:32 AM
#3
Re: How to hide AddressBar using VB6 in Internet Explorer 9
 Originally Posted by Doogle
Works fine for me
Works for me too!
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
May 27th, 2013, 01:16 AM
#4
Thread Starter
New Member
Re: How to hide AddressBar using VB6 in Internet Explorer 9
 Originally Posted by Nightwalker83
Works for me too!
Ok.. So is it the problem with Windows 7?
-
May 28th, 2013, 06:53 AM
#5
Re: How to hide AddressBar using VB6 in Internet Explorer 9
Nope...works fine on Win 7. Did you copy Doog's code and try?
-
May 29th, 2013, 06:57 AM
#6
Thread Starter
New Member
Re: How to hide AddressBar using VB6 in Internet Explorer 9
 Originally Posted by SamOscarBrown
Nope...works fine on Win 7. Did you copy Doog's code and try?
Ok.. I am not sure. We are using same code as Doog's code only.
-
May 29th, 2013, 08:21 AM
#7
Re: How to hide AddressBar using VB6 in Internet Explorer 9
Shot in the dark.....can you download/reinstall IE9? (WIth latest update), then try. As you can see by responses, no one seems to be experiencing same as you.
-
May 29th, 2013, 05:59 PM
#8
Re: How to hide AddressBar using VB6 in Internet Explorer 9
Maybe if Sam or Doogle are nice, they will lend you a copy of their Internet Explorer 9. Sometimes at my house if the wind is coming from N-W then my Internet Explorer does not load VBFORUMS.COM correctly, is it just me?
-
May 30th, 2013, 01:34 AM
#9
Re: How to hide AddressBar using VB6 in Internet Explorer 9
@Surekha: Are you running Windows 7 64Bit? I believe in 64bit editions of Windows there are 2 Internet Explorers (1 is for 32bit and the other for 64bit) I'm not sure which is the default - it may be something to do with that. I don't have W7 or any 64bit editions so I can't test it.
-
May 30th, 2013, 06:26 AM
#10
Re: How to hide AddressBar using VB6 in Internet Explorer 9
@Max.....and when that wind comes from the NW in BC, I have no doubt your IE9 doesn't work right. As a matter of a fact, with those cold winds, I am surprised your computer works at all. :-) OR, it could just be you!
@Doogle/Surekha....I am on Win7, 32bit...I don't have 64 either.
-
May 31st, 2013, 06:26 AM
#11
Thread Starter
New Member
Re: How to hide AddressBar using VB6 in Internet Explorer 9
 Originally Posted by Doogle
@Surekha: Are you running Windows 7 64Bit? I believe in 64bit editions of Windows there are 2 Internet Explorers (1 is for 32bit and the other for 64bit) I'm not sure which is the default - it may be something to do with that. I don't have W7 or any 64bit editions so I can't test it.
'm not sure about the bit in what my Windows 7 is running. How to check that?
-
May 31st, 2013, 06:53 AM
#12
Re: How to hide AddressBar using VB6 in Internet Explorer 9
OPen Control Panel, System.
-
May 31st, 2013, 07:11 AM
#13
Re: How to hide AddressBar using VB6 in Internet Explorer 9
Works on win7 64 and I can even toggle between show/hide.
-
Jun 6th, 2013, 07:55 AM
#14
Thread Starter
New Member
Re: How to hide AddressBar using VB6 in Internet Explorer 9
 Originally Posted by RhinoBull
Works on win7 64 and I can even toggle between show/hide.
Hi, I myself got a solution for this. I was able to hide the addressbar for other URLs (Google.com, icicibank.com, etc.) with same piece of code but not for the internal website. So changed the order of invoking the objects.
<big>Old Code:</big>
<pre>browser.Navigate ("http://www.internalsite.com/")
browser.Toolbar = False</pre>
<big>New Code:</big>
<pre>browser.Toolbar = False
browser.Navigate ("http://www.internalsite.com/")</pre>
Now it is working fine..
-
Jun 6th, 2013, 08:56 AM
#15
Re: How to hide AddressBar using VB6 in Internet Explorer 9
What are you writing this in?
-
Jun 7th, 2013, 01:56 AM
#16
Thread Starter
New Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|