09.04.2009, 22:05 | #1 |
Участник
|
Launching and closing Internet Explorer
Источник: http://alexvoy.blogspot.com/2009/04/...-explorer.html
============== One can run Internet Explorer in visible or invisible mode, then navigate any url and close the application, finally. X++: static void TestIE(Args _args) { COM c = new COM("InternetExplorer.Application"); str url = "http://msdn.microsoft.com/en-us/library/ms952618.aspx"; ; c.navigate(url); c.visible(true); if (DialogButton::Yes == BOX::YesNo("To close the browser press Yes", DialogButton::Yes)) { info(strfmt("Job is done")); c.quit(); } } Источник: http://alexvoy.blogspot.com/2009/04/...-explorer.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
09.04.2009, 23:59 | #2 |
Участник
|
Следует учесть, что navigate асинхронный так что надо подождать загрузки как вот тут, например: http://www.paulsadowski.com/WSH/GetGoogleVideoURL.htm
|
|