473,396 Members | 2,038 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Focus

I set focus to a text box the data in the text box is highlited. When I
enter into the text box, whatever was there is replaced by what I entered.
How can I set this up so what I enter is appended to the text that is there.
I need to do this one character at a time. I'm using the KeyUp event to get
each new char entered.

Thanks,
Richard
Nov 20 '05 #1
8 1267
Hi Richard,

I use this for that
TextBox1.SelectionStart = TextBox1.Text.Length

I hope it helps for you?

Cor
Nov 20 '05 #2
* "Richard Grene" <rg****@s4si.com> scripsit:
I set focus to a text box the data in the text box is highlited. When I
enter into the text box, whatever was there is replaced by what I entered.
How can I set this up so what I enter is appended to the text that is there.
I need to do this one character at a time. I'm using the KeyUp event to get
each new char entered.


Add a handler to the textbox's 'GotFocus' event and enter this code:

\\\
Dim t As TextBox = DirectCast(sender, TextBox)
t.Select(t.TextLength, 0)
///

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #3
Hi Herfried,

Does my simple code not works?

Cor
Add a handler to the textbox's 'GotFocus' event and enter this code:

\\\
Dim t As TextBox = DirectCast(sender, TextBox)
t.Select(t.TextLength, 0)
///

Nov 20 '05 #4
* "Cor Ligthert" <no**********@planet.nl> scripsit:
Does my simple code not works?


It works, but you didn't say where to place it. AFAIU the OP's post, he
wants the behavior when the control gets focus and the user types in
some text.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #5
Hi Herfried,
It works, but you didn't say where to place it. AFAIU the OP's post, he
wants the behavior when the control gets focus and the user types in
some text.

Will I copy this and place a message when you only send a link?

Although you did not read the message of the OP, because he stated for sure
I need to do this one character at a time. I'm using the KeyUp event to geteach new char entered.


For which what I sand works perfectly.

I find it a very awful procedure you did send. You said you have to add an
extra handler for the getFocus event as something extra (which will by the
way never fired)

I do not understand how that would work however maybe you can explain that.

Cor
Nov 20 '05 #6
* "Cor Ligthert" <no**********@planet.nl> scripsit:
It works, but you didn't say where to place it. AFAIU the OP's post, he
wants the behavior when the control gets focus and the user types in
some text.


Will I copy this and place a message when you only send a link?

Although you did not read the message of the OP, because he stated for sure
I need to do this one character at a time. I'm using the KeyUp event to

get
each new char entered.


For which what I sand works perfectly.

I find it a very awful procedure you did send. You said you have to add an
extra handler for the getFocus event as something extra (which will by the
way never fired)

I do not understand how that would work however maybe you can explain that.


When the control gets focus, the cursor is set after the last character
and not the whole text of the textbox is selected (which is the default
behavior). So tabbing to the textbox and pressing a key will /append/
it instead of /replacing/ the whole text in the textbox.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #7
* "Cor Ligthert" <no**********@planet.nl> scripsit:
It works, but you didn't say where to place it. AFAIU the OP's post, he
wants the behavior when the control gets focus and the user types in
some text.


Will I copy this and place a message when you only send a link?

Although you did not read the message of the OP, because he stated for sure
I need to do this one character at a time. I'm using the KeyUp event to

get
each new char entered.


For which what I sand works perfectly.

I find it a very awful procedure you did send. You said you have to add an
extra handler for the getFocus event as something extra (which will by the
way never fired)

I do not understand how that would work however maybe you can explain that.


When the control gets focus, the cursor is set after the last character
and not the whole text of the textbox is selected (which is the default
behavior). So tabbing to the textbox and pressing a key will /append/
it instead of /replacing/ the whole text in the textbox.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #8
Hi Herfried,
It works, but you didn't say where to place it. AFAIU the OP's post, he wants the behavior when the control gets focus and the user types in
some text.
Will I copy this and place a message when you only send a link?

Although you did not read the message of the OP, because he stated for sure
I need to do this one character at a time. I'm using the KeyUp event
to get
each new char entered.


For which what I sand works perfectly.

I find it a very awful procedure you did send. You said you have to add an extra handler for the getFocus event as something extra (which will by the way never fired)

I do not understand how that would work however maybe you can explain

that.
When the control gets focus, the cursor is set after the last character
and not the whole text of the textbox is selected (which is the default
behavior). So tabbing to the textbox and pressing a key will /append/
it instead of /replacing/ the whole text in the textbox.

In my opinion exactly as the OP was asking for. However I can be wrong.

Cor
Nov 20 '05 #9

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

Similar topics

4
by: Nitin | last post by:
Hi I have created function to check date and time. at the time of execution, if date is left empty the function returns the error message but then the focus goes to next field. Next filed is for...
2
by: Peter Wright | last post by:
Hi all. Hopefully this should demonstrate the problem I'm having: http://flooble.net/~pete/focus-problem-demo/ (I'm testing it in Mozilla only, but I'm not sure if it's actually a...
3
by: VA | last post by:
t=document.getElementById('mytable') is a HTML table with some input fields in its cells Why doesnt t.getElementsByTagName('tr').firstChild.focus; put the focus on that text field? It...
17
by: Neil Ginsberg | last post by:
OK, this is a stupid thing, but I can't seem to get this to work. I have a form with a subform (in continuous form view). A combo box on the main form has code in the AfterUpdate event which adds a...
1
by: avnrao | last post by:
Hi, I am facing a problem with control.focus (javascript). Here is the description of the issue. 1. I have 2 aspx files. on Aspx1 I have button named NewRow. Clicking on this, will redirect...
4
by: SJ | last post by:
Hi all, I have come across a weird problem when attempting to automatically set the focus in a vb.net form to a checkbox control... In my form I have (on a tab page in a tab control) several...
11
by: Alex.Svetos | last post by:
Hello, I'm trying to get a popup to keep focus when it is re-clicked. The script below is supposed to produce this exact behaviour, however it doesn't work, at least on firefox 1.0.7 and moz...
7
by: Dave Booker | last post by:
I am using a WebBrowser object in my .NET 2.0 application, but it is not shown to the user. Every time a timer event triggers it to perform a m_WebBrowser.Navigate() I get that classic IE 'click'...
4
by: Roger | last post by:
Hi, I am confused about the differences between this.window.focus(), window.focus(), and this.focus(). I want to use the calls in a <body onload="..."tag. What are the differences between...
3
by: jp2express | last post by:
I have several applications that use panels as screens, but I can *not* seem to set the focus for a Textbox. Panel1.BringToFront() Panel1_Textbox.Focus() ' do something with a control on Panel1...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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...
0
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...
0
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,...

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.