Hi Ross!
-----Original Message-----
From: delphi-boun...@elists.org [mailto:delphi-boun...@elists.org] On Behalf Of 
Ross Levis
...
A user of my software who has a touch screen says when he touches a button
on the form that doesn't currently have the focus, the button doesn't get
clicked.  First touch only activates the form and a 2nd touch is required.
...
>>>>>>>>>>>>>>>>>>>

That is the default windows behavior.  The Key here is that only one 
window/form can have focus at a time.  Therefore the system's attention is 
focused on the active form.  When the user touches the inactive form the first 
time, it focuses the system on the new form and then the user can touch the 
button to run the procedure.

The only way to fix this is to eliminate the two form approach and create a 
larger form to have all the controls of both forms.

I am guessing that the Windows 8 Operating system will fix this problem but 
then it will probably require rewriting your program to make it work 
anyway...:-(

Tom Nesler
_______________________________________________
Delphi mailing list
Delphi@elists.org
http://lists.elists.org/cgi-bin/mailman/listinfo/delphi

Reply via email to