Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Explorer object needs Double click to shows content.
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Explorer object needs Double click to shows content.
Miscellaneous
Thread ID:
00418681
Message ID:
00418681
Views:
54
Hello Guys !, WARNING !, this is long

I have this code :
PUBLIC ox
ox = CREATEOBJECT("MyInternetExplorer")
ox.VISIBLE = .T.
ox.oWeb.navigate("R:\bmps\009_6a.jpg")


DEFINE CLASS MyInternetExplorer AS FORM
ADD OBJECT oWeb AS CWeb
CAPTION = "My Internet Explorer"

PROCEDURE INIT
THISFORM.LEFT = 0
THISFORM.WIDTH = SYSMETRIC(1) * 3/4
THISFORM.HEIGHT = SYSMETRIC(2) * 3/4

THIS.RESIZE

PROCEDURE RESIZE
DODEFAULT()
THIS.oWeb.RESIZE

ENDDEFINE

DEFINE CLASS CWeb AS OLECONTROL
OLECLASS = "Shell.Explorer.1"
PROCEDURE RESIZE
THIS.WIDTH = THISFORM.WIDTH - 60
THIS.HEIGHT = THISFORM.HEIGHT - 60
PROCEDURE REFRESH
NODEFAULT
ENDDEFINE

After it runs I have to doble click on it so it can show the picture,
I have to actually double click manually on it, I can't do this.DblClick(), what can I do to avoid that ?

This.Thanks("in advance")

"A picture is worth more bandwith than a thousand words..."
Luis Guzman, MCP
"The only glory most of us have to hope for
is the glory of being normal." Katherine Fulleton Gerould
Next
Reply
Map
View

Click here to load this message in the networking platform