Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Web browser control on main VFP screen?
Message
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00877030
Message ID:
00877192
Views:
16
Mel,

Here's whole class definitions.
DEFINE CLASS ScreenBrowser AS Container
  BorderWidth = 0
	
  ADD OBJECT Browser AS WB
	
  PROCEDURE Init
    BINDEVENT(_Screen, "Resize", This, "scr_Resize")
    This.scr_Resize()
  ENDPROC 

  PROCEDURE scr_Resize
    This.Move(0, 0, _Screen.Width, _Screen.Height)
    This.Browser.Move(0, 0, _Screen.Width, _Screen.Height)
  ENDPROC 
ENDDEFINE 

DEFINE CLASS WB AS OleControl
	Oleclass = "Shell.Explorer.2"
ENDDEFINE

>Hi Sergey,
>
>I am a little confused (not first time though). The code you gave to Anton:
>
>...	
>  ADD OBJECT Browser AS WB
>
>...
>
>DEFINE CLASS WB AS OleControl
>	Oleclass = "Shell.Explorer.2"
>ENDDEFINE
>
>Is that being added to his code, or replacing what he gave completely?
>
>Mel Cummings
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform