How to launch web page in small IE window 
Author Message
 How to launch web page in small IE window

I have a web page on my home network that I want to launch in a 640x480
window with no toolbars and such... it is just a web page to monitor stuff.
Can anyone point me to some code?

thanks!
Aaron

--
Tek Recycle
www.TekRecycle.com
* your source for the best prices on Sony InfoLithium batteries,
camera/camcorder accessories, Home electronics and
small appliances, and tools!



Thu, 13 Oct 2005 10:50:17 GMT  
 How to launch web page in small IE window
http://groups.google.com/groups?selm=OchKiHV6CHA.2308%40TK2MSFTNGP11....

--
LFS

What is the KB?: http://support.microsoft.com/default.aspx?scid=fh;en-us;kbinfo
RTFM?  http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbco...
Where's the archive?: http://groups.google.com/advanced_group_search?q=group:microsoft.publ...

Quote:

> I have a web page on my home network that I want to launch in a 640x480
> window with no toolbars and such... it is just a web page to monitor stuff.
> Can anyone point me to some code?

> thanks!
> Aaron



Thu, 13 Oct 2005 11:43:52 GMT  
 How to launch web page in small IE window
why WSH, then?

Just use a <body onload="functionName(arglist)"> tag in the page in question
to resize it and position it at will.  This is part of standard DOM
functionality.

Alex.



Thu, 13 Oct 2005 14:35:01 GMT  
 How to launch web page in small IE window

Set oIE = CreateObject("InternetExplorer.Application")
oIE.Height = 380
oIE.Width = 580
oIE.Left = 0
oIE.Top = 0
oIE.Menubar = 0
oIE.Toolbar = 0
oIE.Statusbar = 0
oIE.Navigate("http://www.monsite.com/mapage.htm")
oIE.Visible = True



Quote:
> I have a web page on my home network that I want to launch in a 640x480
> window with no toolbars and such... it is just a web page to monitor
stuff.
> Can anyone point me to some code?

> thanks!
> Aaron

> --
> Tek Recycle
> www.TekRecycle.com
> * your source for the best prices on Sony InfoLithium batteries,
> camera/camcorder accessories, Home electronics and
> small appliances, and tools!



Thu, 13 Oct 2005 22:26:21 GMT  
 How to launch web page in small IE window
NG,
exactly what I wanted... thanks!


Quote:

> Set oIE = CreateObject("InternetExplorer.Application")
> oIE.Height = 380
> oIE.Width = 580
> oIE.Left = 0
> oIE.Top = 0
> oIE.Menubar = 0
> oIE.Toolbar = 0
> oIE.Statusbar = 0
> oIE.Navigate("http://www.monsite.com/mapage.htm")
> oIE.Visible = True



> > I have a web page on my home network that I want to launch in a 640x480
> > window with no toolbars and such... it is just a web page to monitor
> stuff.
> > Can anyone point me to some code?

> > thanks!
> > Aaron

> > --
> > Tek Recycle
> > www.TekRecycle.com
> > * your source for the best prices on Sony InfoLithium batteries,
> > camera/camcorder accessories, Home electronics and
> > small appliances, and tools!



Fri, 21 Oct 2005 06:47:49 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. How to launch web page in small IE window

2. HowTo: Launch default browser from Windows Control running in IE browser

3. Launching IE w/out window decorations?

4. possible to use Vb to launch an IE browser window

5. launch new/old IE window

6. Can I launch apps from web page ?

7. Can't launch a 2nd resizeable web window

8. need to launch outlook from a web page

9. Launching WordPad from Web Page

10. Accessing the A: drive from a program launched via a web page

11. trying to launch Access in a web page.

12. Can't launch a 2nd resizeable web window

 

 
Powered by phpBB® Forum Software