Hello Everyone,
Is it possible to set the name of the window that displays Google map
oOle:=CreateObject("InternetExplorer.Application")
oOle:width:=675
oOle:height:=675
oOle:Visible:=.t. // Displays the Browser
oOle:ToolBar:=.f. // Disables the toolbar
oOle:StatusBar:=.f. // Disables status bar
oOle:MenuBar:=.f. // Disables the menu bar
oOle:Navigate(cMapFile) // Open the Webpage
SysRefresh()
Thank you,
OLE Object Title
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: OLE Object Title
Darrell,
SetWindowText( oOle:HWND, "This is a test" )
Try this:Thankfully, the InternetExplorer.Application COM type exposes a HWND property, which contains the handle to the window.
SetWindowText( oOle:HWND, "This is a test" )
Re: OLE Object Title
Darrell
Have you solved the problem?
Have you solved the problem?
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.