navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

Microsoft MVP

 

Hiding file path in IE address bar

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> General Web Development >> Hiding file path in IE address bar
Page: [1]
 
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
Hiding file path in IE address bar - 2/27/2002 23:06:26   
Hi all. I was asked to design a help page for a Visual Basic project with a table of contents and hyperlinks to the subject matter. This was pretty easy to do in FP2002 - it opens the help screen in a IE browser window when you click on the help button in the VB program. Now the client wants me to hide the IE address bar so a user can't navigate from the help window (like a popup). Any ideas how to do this?

William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 4:01:47   
quote:

Hi all. I was asked to design a help page for a Visual Basic project with a table of contents and hyperlinks to the subject matter. This was pretty easy to do in FP2002 - it opens the help screen in a IE browser window when you click on the help button in the VB program. Now the client wants me to hide the IE address bar so a user can't navigate from the help window (like a popup). Any ideas how to do this?





In your VB IDE, can you not remove the cboAddress of the Web Browser form?


William Lee

(in reply to eslifkin)
caywind

 

Posts: 1479
From: USA
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 4:50:06   
I believe the only thing you can't hide is the title bar! It's the visibilty property of the various window objects....

Also there is a HTML Help project, just search
<spellcheck> </spellcheck>

Edited by - caywind on 02/28/2002 04:51:13

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 9:44:03   
The title bar is ok - it's the address bar they want concealed. I found popup scripts at JavaScript Source that do this. One is called "protected link - it creates a popup that displays a full screen with only the title bar. I can't figure out how to modify the script to open an HTML page the same way. I need to ask the VB guy if I can install the popup within the VB script - that may work...


(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 10:00:09   
caywind, you don't say..I once had a link opened a FULL screen without anything, no title bar, no X to close...maybe the author opened it in excess of 1024x768

eslifkin, I thought you were the person doing the VB app. sorry I misunderstood you.

William Lee

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 10:42:02   
Well according to the VB guy he can only link to an object such as a word doc or html page using ole (I almost sound like I know what I'm talkinh about!). caywind, I will look for that help project...


(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 11:01:02   
quote:

Well according to the VB guy he can only link to an object such as a word doc or html page using ole (I almost sound like I know what I'm talkinh about!). caywind, I will look for that help project...





So the client had seen your web pages for the Help files but hadn't seen your Help files integrated with the VB app yet?


William Lee

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 11:34:18   
We had a demo yesterday and they liked my html help pages - they just want it to look like a popup so the user cannot surf the web from the help page!

I found the download for MS HTML Help Workshop so I will check it out. It sounds like it is more advanced than the FP stuff I do but I'm a glutton for punishment!


(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 12:34:23   
I believe the VB programmer can do up a form easily in VB to display your webpages without the address bar.
Your webpages(Help Files) will be contained in his Form. The Form is the Container for your web pages (I repeating myself?) The VB Form dictates whether to have Toolbar, menu, status bar etc.

Ask the VB programmer whether the WebBrowser control is available in his VB edition.

This will save you the work.




William Lee

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 13:36:17   
Thanks. I e-mailed him the info. Let you know what happens...


(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 17:53:24   
quote:

I believe the VB programmer can do up a form easily in VB to display your webpages without the address bar.
Your webpages(Help Files) will be contained in his Form. The Form is the Container for your web pages (I repeating myself?) The VB Form dictates whether to have Toolbar, menu, status bar etc.

Ask the VB programmer whether the WebBrowser control is available in his VB edition.

This will save you the work.




William Lee



Thanks, William - we turned on the WebBrowser control - it works great! You saved me much time and effort.


(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 18:22:34   
Yep, been through this many times.
When the left hand knows what the right hand is doing, saves a lot of handwringing and things don't get out of hand

William Lee

(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 18:35:41   
By the way eslifkin, where are you from?



William Lee

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 19:06:54   
NJ
you?


(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 19:16:26   
Singapore,somewhere in South-East Asia.

William Lee

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 19:29:13   
I guess your profile would have told me that. Have yet to fill out mine. I have purchased templates from the Theme Gallery in S. Korea. It works out nicely since I am usually doing Webs late at night (your workday)


(in reply to eslifkin)
William Lee

 

Posts: 1080
Joined: 1/25/2002
From: Singapore
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 19:57:34   
eslifkin: There is a pop-up javascript found here at http://www.outfront.net/tutorials_02/faq.htm#popup
Just in case you still need pop-up down the road.



William Lee

(in reply to eslifkin)
eslifkin

 

Posts: 33
Joined: 2/5/2002
From:
Status: offline

 
RE: Hiding file path in IE address bar - 2/28/2002 21:51:17   
thanks again


(in reply to eslifkin)
Page:   [1]

All Forums >> Web Development >> General Web Development >> Hiding file path in IE address bar
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts