Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
IE control help
Message
From
15/01/2004 12:54:02
 
 
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Title:
Miscellaneous
Thread ID:
00867191
Message ID:
00867203
Views:
24
Hi, Ashley.

>Can anyone point me to some documentation on controlling IE options.
>I am trying to disable the min/max buttons and disable the view menu option.

Why don't you just drop an instance of the IE control in a VFP form and use this as the browser. You have full control over the object this way.

Add a TextBox and a CommandButton, and the only code you basically needs is something like:
** Load
Sys(2333,1)

** cmdgo.Click
If Empty( thisform.txtURL.Value )
   * DO Nothing
Else
   thisform.oleIE.navigate2( thisform.txtURL.Value )
EndIf
Hope this helps,
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform