473,772 Members | 2,478 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to move cursor from one textbox to adjacent textbox using LEFT ARROW key

Hi friends ,
here is the sample code
private void txtbox_KeyPress (object sender, System.Windows. Forms.KeyPressE ventArgs e)
{
if(e.KeyChar == 13) //enter
{
txtbox2.Focus() ;

}

if(e.KeyChar == 27) //escape
{

txtbox.Text = "";
}

if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control is not coming inside*/
{
txtboxAdjacent. Enabled = true;
txtboxAdjacent. Focus();
}
}
In the above code when executed the control is not coming inside the if(e.KeyChar == 37) loop when i pressed
left arrow key on keyboard;

how to implement the Arrow Keys in the KeyPress_event or in any other event?

hey guys plz help me out this.
-------------@@@@@@@@@@@@@---------------------------------------------------

Nov 15 '05 #1
7 5802

Try using the KeyDown event instead:

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
textBox2.Focus( );
e.Handled = true;
}
}
You will probably want to put in additional checking to make sure that's
what they really want - this will let the user move the cursor in the
textbox with the right arrow, but not the left. This would be a bit
confusing to me!

Hope this helps
- Philip
"Seash" <an*******@disc ussions.microso ft.com> wrote in message
news:F3******** *************** ***********@mic rosoft.com...
Hi friends ,
here is the sample code
private void txtbox_KeyPress (object sender, System.Windows. Forms.KeyPressE ventArgs e) {
if(e.KeyChar == 13) //enter
{
txtbox2.Focus() ;

}

if(e.KeyChar == 27) //escape
{

txtbox.Text = "";
}

if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control is not coming inside*/ {
txtboxAdjacent. Enabled = true;
txtboxAdjacent. Focus();
}
}
In the above code when executed the control is not coming inside the if(e.KeyChar == 37) loop when i pressed left arrow key on keyboard;

how to implement the Arrow Keys in the KeyPress_event or in any other event?
hey guys plz help me out this.
-------------@@@@@@@@@@@@@------------------------------------------------ ---

Nov 15 '05 #2
thxs philip,
But there is a problem, in the middle of text of the textbox if i press left arrow key control straight away goes to the adjacent one, this one bugging me plz help me.

----- Philip Rieck wrote: -----
Try using the KeyDown event instead:

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
textBox2.Focus( );
e.Handled = true;
}
}
You will probably want to put in additional checking to make sure that's
what they really want - this will let the user move the cursor in the
textbox with the right arrow, but not the left. This would be a bit
confusing to me!

Hope this helps
- Philip
"Seash" <an*******@disc ussions.microso ft.com> wrote in message
news:F3******** *************** ***********@mic rosoft.com...
Hi friends ,
here is the sample code
private void txtbox_KeyPress (object sender, System.Windows. Forms.KeyPressE ventArgs e) {
if(e.KeyChar == 13) //enter
{
txtbox2.Focus() ;
}
if(e.KeyChar == 27) //escape {
txtbox.Text = "";

}
if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control is not coming inside*/ {
txtboxAdjacent. Enabled = true;
txtboxAdjacent. Focus();
}
} In the above code when executed the control is not coming inside the
if(e.KeyChar == 37) loop when i pressed
left arrow key on keyboard;
how to implement the Arrow Keys in the KeyPress_event or in any other
event? hey guys plz help me out this.

-------------@@@@@@@@@@@@@------------------------------------------------

---

Nov 15 '05 #3
------seash wrote-----------------------
Cursor should not move to the immidiate text box if there is text in the text box , it should pass each and every character before moving to the adgacent texbox

hope someone out there to crack this!
---seash

----- seash wrote: -----

thxs philip,
But there is a problem, in the middle of text of the textbox if i press left arrow key control straight away goes to the adjacent one, this one bugging me plz help me.

----- Philip Rieck wrote: -----
Try using the KeyDown event instead:

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
textBox2.Focus( );
e.Handled = true;
}
}
You will probably want to put in additional checking to make sure that's
what they really want - this will let the user move the cursor in the
textbox with the right arrow, but not the left. This would be a bit
confusing to me!

Hope this helps
- Philip
"Seash" <an*******@disc ussions.microso ft.com> wrote in message
news:F3******** *************** ***********@mic rosoft.com...
Hi friends ,
here is the sample code
private void txtbox_KeyPress (object sender, System.Windows. Forms.KeyPressE ventArgs e) {
if(e.KeyChar == 13) //enter
{
txtbox2.Focus() ;
}
if(e.KeyChar == 27) //escape {
txtbox.Text = "";

}
if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control is not coming inside*/ {
txtboxAdjacent. Enabled = true;
txtboxAdjacent. Focus();
}
} In the above code when executed the control is not coming inside the
if(e.KeyChar == 37) loop when i pressed
left arrow key on keyboard;
how to implement the Arrow Keys in the KeyPress_event or in any other
event? hey guys plz help me out this.

-------------@@@@@@@@@@@@@------------------------------------------------

---

Nov 15 '05 #4
Test the selectionstart :

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
if(textBox1.Sel ectionStart == 0)
{
textBox2.Focus( );
e.Handled = true;
}
}
}
If your textbox is right-to-left text instead of left-to-right, then test if
the selectionstart is equal to textbox1.text.l ength instead of 0.
"seash" <an*******@disc ussions.microso ft.com> wrote in message
news:CE******** *************** ***********@mic rosoft.com...
------seash wrote-----------------------
Cursor should not move to the immidiate text box if there is text in the text box , it should pass each and every character before moving to the
adgacent texbox
hope someone out there to crack this!
---seash

----- seash wrote: -----

thxs philip,
But there is a problem, in the middle of text of the textbox if i press left arrow key control straight away goes to the adjacent one, this
one bugging me plz help me.
----- Philip Rieck wrote: -----
Try using the KeyDown event instead:

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
textBox2.Focus( );
e.Handled = true;
}
}
You will probably want to put in additional checking to make sure that's what they really want - this will let the user move the cursor in the textbox with the right arrow, but not the left. This would be a bit confusing to me!

Hope this helps
- Philip
"Seash" <an*******@disc ussions.microso ft.com> wrote in message
news:F3******** *************** ***********@mic rosoft.com...
> Hi friends ,
> here is the sample code
> private void txtbox_KeyPress (object sender, System.Windows. Forms.KeyPressE ventArgs e)
> {
> if(e.KeyChar == 13) //enter
> {
> txtbox2.Focus() ;
>> }
>> if(e.KeyChar == 27) //escape

> {
>> txtbox.Text = "";

> }
>> if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control
is not coming inside*/
> {
> txtboxAdjacent. Enabled = true;
> txtboxAdjacent. Focus();
> }
> }
>>> In the above code when executed the control is not
coming inside the if(e.KeyChar == 37) loop when i pressed
> left arrow key on keyboard;
>> how to implement the Arrow Keys in the KeyPress_event or
in any other event? >> hey guys plz help me out this.




-------------@@@@@@@@@@@@@------------------------------------------------
---
>

Nov 15 '05 #5
Thxs Philip
this statement "e.Handled = true;" is necessary to include?, is there any cases of events not executing after events invocation? will the above statement gives any exception if events is not handled

-- seash
----- Philip Rieck wrote: ----

Test the selectionstart

private void textBox1_KeyDow n(object sender
System.Windows. Forms.KeyEventA rgs e

if( e.KeyCode == Keys.Left

if(textBox1.Sel ectionStart == 0

textBox2.Focus( )
e.Handled = true

If your textbox is right-to-left text instead of left-to-right, then test i
the selectionstart is equal to textbox1.text.l ength instead of 0
"seash" <an*******@disc ussions.microso ft.com> wrote in messag
news:CE******** *************** ***********@mic rosoft.com..
------seash wrote----------------------
Cursor should not move to the immidiate text box if there is text in th text box , it should pass each and every character before moving to th
adgacent texbo
hope someone out there to crack this

---seas
----- seash wrote: ----
thxs philip

But there is a problem, in the middle of text of the textbox if

press left arrow key control straight away goes to the adjacent one, thi
one bugging me plz help me
----- Philip Rieck wrote: ----
Try using the KeyDown event instead

private void textBox1_KeyDow n(object sender

System.Windows. Forms.KeyEventA rgs e

if( e.KeyCode == Keys.Left

textBox2.Focus( )
e.Handled = true

You will probably want to put in additional checking to mak
sure that' what they really want - this will let the user move the curso in th textbox with the right arrow, but not the left. This would be bi confusing to me
Hope this help - Phili "Seash" <an*******@disc ussions.microso ft.com> wrote in messag news:F3******** *************** ***********@mic rosoft.com..
Hi friends
here is the sample cod
private void txtbox_KeyPress (object sender

System.Windows. Forms.KeyPressE ventArgs e

if(e.KeyChar == 13) //ente

txtbox2.Focus()

if(e.KeyChar == 27) //escap

txtbox.Text = ""

if(e.KeyChar == 37)// LEFT ARROW KEY /*here the contro

is not comin inside*

txtboxAdjacent. Enabled = true
txtboxAdjacent. Focus()

In the above code when executed the control is no
coming inside th if(e.KeyChar == 37) loop when i presse
left arrow key on keyboard
how to implement the Arrow Keys in the KeyPress_event o
in any othe event hey guys plz help me out this

-------------@@@@@@@@@@@@@-----------------------------------------------

--

Nov 15 '05 #6
The statement "e.Handled = true" will simply cause the base class to stop
processing the KeyDown event. This will keep it from performing the normal
action of moving the cursor. Since in this case you don't care, it's not
entirely needed.
The event will still be handled, but the textbox assumes that you are going
to do the right thing with the message, it will simply ignore the keypress.
You don't need to worry about exceptions due to unhandled events.

"seash" <an*******@disc ussions.microso ft.com> wrote in message
news:0C******** *************** ***********@mic rosoft.com...
Thxs Philip,
this statement "e.Handled = true;" is necessary to include?, is there any cases of events not executing after events invocation? will the above
statement gives any exception if events is not handled?
-- seash
----- Philip Rieck wrote: -----

Test the selectionstart :

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
if(textBox1.Sel ectionStart == 0)
{
textBox2.Focus( );
e.Handled = true;
}
}
}
If your textbox is right-to-left text instead of left-to-right, then test if the selectionstart is equal to textbox1.text.l ength instead of 0.
"seash" <an*******@disc ussions.microso ft.com> wrote in message
news:CE******** *************** ***********@mic rosoft.com...
> ------seash wrote-----------------------
> Cursor should not move to the immidiate text box if there is text in the
text box , it should pass each and every character before moving to the adgacent texbox >> hope someone out there to crack this! > ---seash
>> ----- seash wrote: -----
>> thxs philip,

> But there is a problem, in the middle of text of the textbox if i press left arrow key control straight away goes to the adjacent one, this one bugging me plz help me. >> ----- Philip Rieck wrote: -----
>>> Try using the KeyDown event instead:
>> private void textBox1_KeyDow n(object sender, > System.Windows. Forms.KeyEventA rgs e)
> {
> if( e.KeyCode == Keys.Left)
> {
> textBox2.Focus( );
> e.Handled = true;
> }
> }
>>> You will probably want to put in additional checking to make sure that's
> what they really want - this will let the user move the cursor
in the
> textbox with the right arrow, but not the left. This
would be a bit
> confusing to me!
>> Hope this helps

> - Philip
>>> "Seash" <an*******@disc ussions.microso ft.com> wrote in

message > news:F3******** *************** ***********@mic rosoft.com... >> Hi friends ,
>> here is the sample code
>> private void txtbox_KeyPress (object sender,

> System.Windows. Forms.KeyPressE ventArgs e)
>> {
>> if(e.KeyChar == 13) //enter
>> {
>> txtbox2.Focus() ;
>>> }
>>> if(e.KeyChar == 27) //escape
>> {
>>> txtbox.Text = "";
>> }
>>> if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control

is not coming
> inside*/
>> {
>> txtboxAdjacent. Enabled = true;
>> txtboxAdjacent. Focus();
>> }
>> }
>>>> In the above code when executed the control is not

coming inside the
> if(e.KeyChar == 37) loop when i pressed
>> left arrow key on keyboard;
>>> how to implement the Arrow Keys in the KeyPress_event or

in any other
> event?
>>> hey guys plz help me out this.



-------------@@@@@@@@@@@@@----------------------------------------------- - > ---
>>

Nov 15 '05 #7
The statement "e.Handled = true" will simply cause the base class to stop
processing the KeyDown event. This will keep it from performing the normal
action of moving the cursor. Since in this case you don't care, it's not
entirely needed.
The event will still be handled, but the textbox assumes that you are going
to do the right thing with the message, it will simply ignore the keypress.
You don't need to worry about exceptions due to unhandled events.

"seash" <an*******@disc ussions.microso ft.com> wrote in message
news:0C******** *************** ***********@mic rosoft.com...
Thxs Philip,
this statement "e.Handled = true;" is necessary to include?, is there any cases of events not executing after events invocation? will the above
statement gives any exception if events is not handled?
-- seash
----- Philip Rieck wrote: -----

Test the selectionstart :

private void textBox1_KeyDow n(object sender,
System.Windows. Forms.KeyEventA rgs e)
{
if( e.KeyCode == Keys.Left)
{
if(textBox1.Sel ectionStart == 0)
{
textBox2.Focus( );
e.Handled = true;
}
}
}
If your textbox is right-to-left text instead of left-to-right, then test if the selectionstart is equal to textbox1.text.l ength instead of 0.
"seash" <an*******@disc ussions.microso ft.com> wrote in message
news:CE******** *************** ***********@mic rosoft.com...
> ------seash wrote-----------------------
> Cursor should not move to the immidiate text box if there is text in the
text box , it should pass each and every character before moving to the adgacent texbox >> hope someone out there to crack this! > ---seash
>> ----- seash wrote: -----
>> thxs philip,

> But there is a problem, in the middle of text of the textbox if i press left arrow key control straight away goes to the adjacent one, this one bugging me plz help me. >> ----- Philip Rieck wrote: -----
>>> Try using the KeyDown event instead:
>> private void textBox1_KeyDow n(object sender, > System.Windows. Forms.KeyEventA rgs e)
> {
> if( e.KeyCode == Keys.Left)
> {
> textBox2.Focus( );
> e.Handled = true;
> }
> }
>>> You will probably want to put in additional checking to make sure that's
> what they really want - this will let the user move the cursor
in the
> textbox with the right arrow, but not the left. This
would be a bit
> confusing to me!
>> Hope this helps

> - Philip
>>> "Seash" <an*******@disc ussions.microso ft.com> wrote in

message > news:F3******** *************** ***********@mic rosoft.com... >> Hi friends ,
>> here is the sample code
>> private void txtbox_KeyPress (object sender,

> System.Windows. Forms.KeyPressE ventArgs e)
>> {
>> if(e.KeyChar == 13) //enter
>> {
>> txtbox2.Focus() ;
>>> }
>>> if(e.KeyChar == 27) //escape
>> {
>>> txtbox.Text = "";
>> }
>>> if(e.KeyChar == 37)// LEFT ARROW KEY /*here the control

is not coming
> inside*/
>> {
>> txtboxAdjacent. Enabled = true;
>> txtboxAdjacent. Focus();
>> }
>> }
>>>> In the above code when executed the control is not

coming inside the
> if(e.KeyChar == 37) loop when i pressed
>> left arrow key on keyboard;
>>> how to implement the Arrow Keys in the KeyPress_event or

in any other
> event?
>>> hey guys plz help me out this.



-------------@@@@@@@@@@@@@----------------------------------------------- - > ---
>>

Nov 15 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
12792
by: Arno | last post by:
Hello, I am trying to edit a textbox which contains a number. When focus is on the textbox, and a user press the "arrow up", I would like the textbox value to increase of 100, and at the opposite when the user press "arrow down", I would like this value to decrease by 100. For the moment I have done that using the "keypress" event, but I have a problem, as this event reacts to any key of the keyboard. So I would need whether another idea...
5
1952
by: Marcos Ribeiro | last post by:
Does anyone knows how to change the cursor when the mouse is over a selected text on a textbox or richtextbox? (similar effect on Window Wordpad) From IBeam to Arrow for drag & drop purpouses Thanks Marcos
9
4906
by: DotNetShadow | last post by:
Hi Guys, I have been having this problem recently where I have a form with a textbox and button, if in the button event I have the following: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Cursor = Cursors.WaitCursor Textbox1.text = Now.Tostring System.Threading.Thread.Sleep(2000) ' 2 second wait
2
1996
by: Rader | last post by:
As the textbox is focused,if I press the keys up/down arrow instead of other keys like a,b,c...... the input cursor moves left and right.Now its the problem,I want the cursor stay where it was(stop moving), as I press the up/down key.Can I do that through recoding the textbox's events in c#? I appreciate everyone can help me,thanks in advance~
4
6583
by: David Veeneman | last post by:
I'm creating a UserControl that uses a LinkLabel. For reasons that I won't bore everyone with, I don't want the LinkLable to show the default hand cursor when the mouse enters the control. Should be a simple setting on the LinkLabel.Cursor property, right? Not so simple. I set the property, but still got the default 'hand' cursor. To debug, I added the following event handler to my LinkLabel control: private void...
1
4224
by: VanKha | last post by:
How to move the cursor( I'm programming with Win32 console applications in visual c++ 6.0) by letting the user type in arrow keys(and obviously, I will then have some variable column and row and use gotoxy() to move to the right point) ? I ask that question because I'm trying to write a text processor : //just pseudocode.. char c; while(1) + if c is a "normal" character,just write it down + if c is arrow keys,move + if c==127,delete the...
2
7250
by: sandromani | last post by:
Hello, I was wondering if there was a way (in c++) to move the cursor when pressing the arrow keys instead of getting ^[[C resp. ^[[D (left resp. right arrow) in the cin input - I am using linux. I guess this behavior is controlled by the terminal, therefore not modifiable, or does anyone have an idea? I thought of getting one character at the time, check it against the arrow codes, and in case print the ANSI codes for moving the cursor, but...
0
1361
by: ivan | last post by:
Hello, How do I move the keyboard cursor position in a Tix.HList? I am using an HList with the right mouse button bound to pop up a menu. If the right click is done on an unselected item, I change the selection to that item. This works, however the keyboard cursor position remains at the last item selected with arrow keys or left click. How can I move this as well as the selection?
5
8517
by: michels287 | last post by:
Right now I have a touchscreen with a virual keyboard. I would like to create arrow keys. If the user messed up the inputted text, he can move the blinking cursor left one space at a time between inputted characters to add a letter. Then a button to move the blinking cursor back to the end of the inputted text. Private Sub Left Arrow_Click() If Text1.SelStart Then Text1.SelStart = Text1.SelStart - 1 Text1.SetFocus End Sub Private...
0
9621
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10264
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10106
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10039
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9914
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8937
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7461
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6716
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3610
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.