Oh, the "set step on" is to examine the IE DOM. Don't just think the program has hung!!!
Dave -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Dave Crozier Sent: 25 June 2012 09:01 To: ProFox Email List Subject: RE: display a html page in foxpro Use this as a template: Dave ************ * Start Code * oForm = CREATEOBJECT("form") With oForm .Width=500 .Height=500 .Show() .AddObject("oIE","olecontrol","shell.explorer.2") .oIE.Width = .Width .oIE.Height = .Height .oIE.Visible = .t. .oIE.navigate2("http://www.google.com") Set Step On EndWith Read events * * End Code ****************** [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

