Discussion:
How can I make the cursor ready inside the lit Box?
(too old to reply)
Allen
2009-09-24 03:13:08 UTC
Permalink
--------------------------------------------------------------------------------

I have a list box ready to collect information from the users. I noticed
that; every time the users need to enter something they have to use the
mouse to set the cursor inside the box. How can I set the cursor ready
inside the list box so that the users do not have to use the mouse every
time they want to enter something?

empNumBox->Text = " ";
--
Thanks
Allen
Jeff Johnson
2009-09-24 13:19:17 UTC
Permalink
Post by Allen
I have a list box ready to collect information from the users. I noticed
that; every time the users need to enter something they have to use the
mouse to set the cursor inside the box. How can I set the cursor ready
inside the list box so that the users do not have to use the mouse every
time they want to enter something?
empNumBox->Text = " ";
empNumBox.Focus();
Allen
2009-09-26 20:44:54 UTC
Permalink
Hi Jeff,
You are great. It works. My windows mail was down I could not thank
earlier.
--
Thanks
Allen
Post by Jeff Johnson
Post by Allen
I have a list box ready to collect information from the users. I noticed
that; every time the users need to enter something they have to use the
mouse to set the cursor inside the box. How can I set the cursor ready
inside the list box so that the users do not have to use the mouse every
time they want to enter something?
empNumBox->Text = " ";
empNumBox.Focus();
Loading...