Jerry Foote wrote on 2011-07-13: > In my vfp form I call > > PARAMETERS WHERE_TO > oIE = Createobject( "internetexplorer.application" ) > > oIE.Visible = .T. > > oIE.Navigate( WHERE_TO ) > > Do While oIE.ReadyState!=4 > > ENDDO > > > The page loads but is minimized, how do I maximize the page? > > I tried fullscreen but that's not it. > > > Thanks jerry >
Jerry, You may not be able to do it natively #define SW_HIDE 0 #define SW_SHOWNORMAL 1 #define SW_NORMAL 1 #define SW_SHOWMINIMIZED 2 #define SW_SHOWMAXIMIZED 3 DECLARE ShowWindow IN WIN32API long, long oIE = Createobject( "internetexplorer.application" ) *-- code before showing goes here ShowWindow(oIE.HWND, SW_SHOWMAXIMIZED) Tracy Pearson PowerChurch Software _______________________________________________ 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.

