#1   Report Post  
tkaplan
 
Posts: n/a
Default set focus


I have a form with a txt box named txtAuditor. on the exit event, i have
some validation checks.
i want that if the validation fails, the focus will go back to that txt
box.

i currectly have

if variable=false then
txtauditor.value=""
txtauditor.setfocus
endif

this did not work!
Any suggestions??


--
tkaplan
------------------------------------------------------------------------
tkaplan's Profile: http://www.excelforum.com/member.php...o&userid=22987
View this thread: http://www.excelforum.com/showthread...hreadid=471132

  #2   Report Post  
Dave O
 
Posts: n/a
Default

Sure looks like it should work. One debugging strategy is to put a
Msgbox statement inside your "if variable=false then" / end if
statement. That way you can deliberately cause your validation to fail
and when you get the message box you know your logic is sound.

if variable=false then

msgbox ("About to set focus to txt.auditor")
txtauditor.value=""
txtauditor.setfocus
endif


  #3   Report Post  
tkaplan
 
Posts: n/a
Default


it does enter the procedure- it also resets the text box

I think what is happening is that it is still letting the user exit the
txtbox so it sets the focus, but then the user exited. i set cancel to
true and then is worked:)


--
tkaplan
------------------------------------------------------------------------
tkaplan's Profile: http://www.excelforum.com/member.php...o&userid=22987
View this thread: http://www.excelforum.com/showthread...hreadid=471132

  #4   Report Post  
Dave O
 
Posts: n/a
Default

....Or, now that I hearken back to my Access programming days, try this:

if variable=false then
me.txtauditor.value=""
me.txtauditor.setfocus
endif

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outline color of cell that has focus RobertC Excel Discussion (Misc queries) 1 July 15th 05 02:40 PM
font size changes w/ control focus mark kubicki Excel Worksheet Functions 0 June 17th 05 06:00 PM
Focus David Unger Excel Worksheet Functions 20 March 21st 05 06:43 PM
Cursor Keys does not change cell focus Skypilot Excel Discussion (Misc queries) 3 February 24th 05 07:13 AM
Printing switches focus off proper sheet Abi Excel Worksheet Functions 1 January 26th 05 07:42 PM


All times are GMT +1. The time now is 09:20 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"