|
-
Jul 3rd, 2007, 09:41 AM
#1
Thread Starter
Frenzied Member
Input Panel Control Question PLZ
Hi All,
I have several panels in my form and I have coded a next and back button to scroll through the panels. On each panel I have several text boxes; I don't want the input panel showing unless I click on one of the text boxes because it hides my buttons. I have enabled it in the got focus and disabled it in the lost focus but is there a better way as I will have to do this for all my textboxes and there is a lot.
Thank you all for any help,
Jiggy!
-
Jul 3rd, 2007, 12:53 PM
#2
Frenzied Member
Re: Input Panel Control Question PLZ
Hi,
no - you have to handle it in every event
Pete
-
Jul 3rd, 2007, 06:02 PM
#3
Re: Input Panel Control Question PLZ
If that's all you are using that event for, you only need to write it once. At the end of the event you see a Handles <control name>.GotFocus. You can use the same function to handle any number of these in this fashion:
Handles <control name 1>.GotFocus, <control name 2>.GotFocus, etc.
Of course, this gets a bit more difficult if you want each one of those textboxes to do a different thing in that event.
My usual boring signature: Nothing
 
-
Jul 4th, 2007, 08:00 AM
#4
Thread Starter
Frenzied Member
Re: Input Panel Control Question PLZ
Hi All,
Thank you for that; I think I will code each one as this makes it easier if in the future I need specific textboxes to do different things.
Thanks again,
Jiggy!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|