In my file explorer program I wanted to test the listview in Andrew Graham's new ControlsExDevice[Dummy].dll
I needed to have a double click event to run programs etc. The door code I implemented works fine on desktop but is ignored on the device. Is this a limitation or a bug in door.dll?
The double click event is part of Felippo's listview.dll and works fine on my IPAQ H2210.
See included zip for source and dlls. Relevant code is as follows.
Sub App_Start
...
obj.New1(False)
obj.FromControl( Control("main.lv1", listview).ControlRef )
lv1_DoubleClickEvent.New1( obj.Value,"DoubleClick")
...
Sub lv1_DoubleClickEvent_NewEvent
st=GetSelectedPgm("LV")
If st<>"" Then Shell(st, "")
End Sub
I needed to have a double click event to run programs etc. The door code I implemented works fine on desktop but is ignored on the device. Is this a limitation or a bug in door.dll?
The double click event is part of Felippo's listview.dll and works fine on my IPAQ H2210.
See included zip for source and dlls. Relevant code is as follows.
Sub App_Start
...
obj.New1(False)
obj.FromControl( Control("main.lv1", listview).ControlRef )
lv1_DoubleClickEvent.New1( obj.Value,"DoubleClick")
...
Sub lv1_DoubleClickEvent_NewEvent
st=GetSelectedPgm("LV")
If st<>"" Then Shell(st, "")
End Sub