I have a textbox control on a page of a multi-page control. If the user
enters text into that control and tabs out of the control to the OK button
(not contained within the page of the multi-page control) then the
TextBox_Exit event isn't received. If I keep tabbing and the focus comes
back into the Multi-Page control, the TextBox_Exit event is received and
processed. How can I always catch this event?

Re: TextBox_Exit not receiving event when user tabs off of multi-page form by Word

Word
Wed Aug 11 06:19:23 CDT 2004

G'day "Chad Knudson" <knudson@sputnix.com>,

I normally use _Change for texboxes, but that has its own set of
problems too. An excellent way around is to all data validation on
form OK, msgbox if errors, and return to the form. Cancel just quits
natch.

Steve Hudson - Word Heretic
Want a hyperlinked index? S/W R&D? See WordHeretic.com

steve from wordheretic.com (Email replies require payment)


Chad Knudson reckoned:

>I have a textbox control on a page of a multi-page control. If the user
>enters text into that control and tabs out of the control to the OK button
>(not contained within the page of the multi-page control) then the
>TextBox_Exit event isn't received. If I keep tabbing and the focus comes
>back into the Multi-Page control, the TextBox_Exit event is received and
>processed. How can I always catch this event?
>
>


Re: TextBox_Exit not receiving event when user tabs off of multi-page form by Chad

Chad
Wed Aug 11 15:32:04 CDT 2004

I generally like to take care of the automatic formatting as early on in the
process so that the user gets that instant gratification of seeing things
"fixed" automatically.

I am guessing that the Page is getting an _Exit event and not the textbox
control.

"Word Heretic" <myfullname@tpg.com.au> wrote in message
news:840kh09cu2kjgnmmh02jeobre2iuie7gi6@4ax.com...
> G'day "Chad Knudson" <knudson@sputnix.com>,
>
> I normally use _Change for texboxes, but that has its own set of
> problems too. An excellent way around is to all data validation on
> form OK, msgbox if errors, and return to the form. Cancel just quits
> natch.
>
> Steve Hudson - Word Heretic
> Want a hyperlinked index? S/W R&D? See WordHeretic.com
>
> steve from wordheretic.com (Email replies require payment)
>
>
> Chad Knudson reckoned:
>
> >I have a textbox control on a page of a multi-page control. If the user
> >enters text into that control and tabs out of the control to the OK
button
> >(not contained within the page of the multi-page control) then the
> >TextBox_Exit event isn't received. If I keep tabbing and the focus comes
> >back into the Multi-Page control, the TextBox_Exit event is received and
> >processed. How can I always catch this event?
> >
> >
>
>