Link to home
Start Free TrialLog in
Avatar of keithcsl
keithcsl

asked on

Funny behaviour of mouse click...

Hi

This is a simple scenario but I can't figure why it happens and how to solve it:

There are 2 edit boxes in a form, with their Caption set as the original value, ie Edit1 and Edit2. Now, in the OnEnter event of Edit1 (chosen arbitrarily), this code is written
 
  showmessage('enter');

OK, now if we run this program, and first click on Edit2, so far so good. Now, if we click on Edit1, the message comes out, and if we press OK, the focus returns to Edit1. OK, notice that the text is being selected as the mouse moves...

How do prevent this? I don't want the select thing to occur, but instead want the cursor to remain still in the edit box.

My feeling is i have to trap for the mouse event. Any other ideas?

Keith
Avatar of pjdb
pjdb

Change the autoselect to false and the text won't be selected during the onenter event of the Tedit box.

JDB
Avatar of keithcsl

ASKER

pjdb

sorry but it doesn't work. i have got a small exe file and if u r interested to test it out, that's great..

Keith
Can u send it to jeanditbailleulp@usa.net , I will take a look

JDB
I think that OnEnter is the wrong event - try others like OnMouseUp, or OnClick, just see what you got there...

Good luck!
Matvey
(bosism@netvision.net.il)

PS you can send me this too...
ASKER CERTIFIED SOLUTION
Avatar of inter
inter
Flag of Türkiye image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the answer. I have actually tried the PostMessage but placed it before the ShowMessage rather than after. But it is working now...

PJDB, Matvey
I have sent u a copy of the .exe. Sorry I could not have sent it earlier...

Keith