PDA

View Full Version : how i know the site name thet open in internet explorer


lnd
11-18-2006, 09:08 AM
how i know the site name thet open in internet explorer?

Roboblue
11-18-2006, 02:56 PM
If you are using the AMS web object to open the page, Then Web.GetURL will return a string that you can display.
put this in the Web Object - Properties - On Loaded
sSiteName = Web.GetURL("Web1");
result = Dialog.Message("Notice",sSiteName , MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
you can also create an input box somewhere and display the address there.
put this in the Web Object - Properties - On Loaded
sSiteName = Web.GetURL("Web1");
Input.SetText("Input1", sSiteName);

you can see a lot of features in the custom browser.apz.

lnd
11-19-2006, 12:48 AM
i dont use the web object i wont to get the site from microsoft internet explorer

lnd
11-20-2006, 03:52 AM
:huh help:huh

andyk68
11-20-2006, 04:01 AM
Can you explain further?

lnd
11-20-2006, 02:06 PM
i need to get the address (web site) in internet explorer.
i go to "www.google.com" in microsoft internet explorer and i wont to put a batton in ams6 and if i posh the batton i get messeg "www.google.com"

yosik
11-21-2006, 12:39 AM
Web.GetURL("yourwebobject");

Roboblue
11-21-2006, 12:49 AM
yosik
He wants to have IE opened separately, then have a button in the ams project that will give a return of the web page that is opened in IE (not a web object).
At least I THINK that is what he wants by his other thread on this subject.
lnd
I don't know how to do that, but maybe some one else does. I haven't seen any other posts on it, tho.