Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Putting Focus on a textbox and having the Enter key 'click' a button 1

Status
Not open for further replies.

DotNetter

Programmer
May 19, 2005
194
US
I have a textbox (along with a "submit" command-button and a couple other controls) in a UserControl which, in turn, sits on a form.

I am trying to give the textbox Focus when the UserControl loads. In the constructor of the UserControl, I do a [tt]txtFilter.Focus()[/tt] but it doesn't work. (In case it matters, I can't really tell where the Focus actually is.) The user of my application must still manually go and click on the textbox to enter text there.

Also, I want the "submit" button to be able to be "clicked" by pressing the Enter button after the user's entered text into the textbox.

How do I do these two things, please?

Thanks!
Dot
 
Do: txtFilter.Select() for the focus
and
Click on the form, find the property "AcceptButton" and put the txtFilter
 
TipGiver,

Thanks for replying!

1) What's the difference between "Select" and "Focus"?
2) When I click on the form - the property "AcceptButton" doesn't list my button (which is on the UserControl, not the form) as a choice.

Thanks,
Dot
 
Else just set the tabIndex to 0. Be careful not to exist more than one controls with the 0 value at tabIndex. More than one controls in the same container can have the same tabIndex.

And if you wonder, for the Esc button just set the "CancelButton" property on the form.


-
 
2) When I click on the form - the property "AcceptButton" doesn't list my button (which is on the UserControl, not the form) as a choice.

In the form's constructor add me.acceptbutton = [userControlObject].[button]

That will require the button to be declared as Public Withevents on the user control.

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
Thanks, everyone!

Rick - I used both of your suggestions - thanks much!

Dot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top