That works great.
Thanks Jerry

-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf
Of Tracy Pearson
Sent: Wednesday, July 13, 2011 12:39 PM
To: [email protected]
Subject: RE: How do I maximize?

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


[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/699C933858E645948BBF30B6647A38C3@jerryfootePC
** 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.

Reply via email to