Question : Create Custom Internet Explorer browser session Intranet application.

We have developed a small web application for delivery over our intranet.  We will run this application from internet explorer 6 and above.  What is the best approach for having our clients launch the application?  I would like main window to launch with the title bar, status bar, and maximized.  I have found examples on this website that do this properly (see included code).  Is there any way I can get this code, or something similar to run directly from a web page?  Is there another approach I should consider?

Thanks in advance.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
Set objIE = CreateObject("InternetExplorer.Application")
 
With objIE
      .visible=1
      .left=0
      .top=0      
      .menubar=0
      .toolbar=0
      .statusBar=1
      .height = 800
      .width = 600
      .TheaterMode = True 
       iHeight =  .Height 
       iWidth =  .Width 
      .TheaterMode = False 
      .Height = iHeight 
      .Width = iWidth 
      .navigate "http://www.google.com"
End With
 
'Wait until IE has finished loading
Do While objIE.ReadyState <> 4
      WScript.Sleep 100
Loop
 
Set objIE = Nothing

Answer : Create Custom Internet Explorer browser session Intranet application.

I think you will have to use Javascript to do this. Here is a function that will do something similar:

http://www.pageresource.com/jscript/jwinopen.htm
Random Solutions  
 
programming4us programming4us