Hallo,
ich habe ein Handlingsproblem. Mein Program läuft prima auf dem PDA (iPAQ) aber es passiert mir immer öfter, das ich das Program aus Versehen ausschalte, weil ich mit dem Finger auf dem Touchscreen den "OK" bzw "X" Button getroffen habe.
Kann man den OK button ausschalten ????
guenterl
I have been using something based on this and found the addition of the following to be useful:
This will reset the Close to 0 everytime the frmMain.Show command is used.
Sub frmMain_Show
Close=0
End Sub
And an alternative to shutting the App
This will allow the form to close if you are using more than one form
Sub btnExit_Click
Close=1
frmMain_Close
frmSecond.show
End Sub