2022-10-31, 18:13:55
(2022-10-31, 16:25:07)echolis Wrote: This works great to get the form to display. But, the control itself doesn't actually display; I can see that the navigate fires and is successful. The control is just in it's default "grey" state.
I was able to fix that by setting the control to visible = .f. and then .t., see below:
Code:*** ActiveX Control Event ***
LPARAMETERS hresult
this.Visible = .f.
thisform.Visible = .F.
thisform.WindowType = 1
thisform.Visible = .T.
this.Visible = .t.
Glad to hear you got a functioning workaround.
I'd much rather fix it in the control though.
Sadly don't know what to do in order to make it behave like VFP expects.
There's not a lot of low level info out on VFP anymore (or at least I don't know where to find it).
Good tips on books etc.. are welcome.
--
Wil