Jan 17, 2005 #1 MJPPaba MIS May 28, 2003 142 GB I need Access VBA to evaluate whether a table is open. Your assistance is gratefully appreciated. Cheers, Matthew The only bad question is the question you dont ask!
I need Access VBA to evaluate whether a table is open. Your assistance is gratefully appreciated. Cheers, Matthew The only bad question is the question you dont ask!
Jan 17, 2005 #2 lupins46 MIS Feb 19, 2004 2,509 GB If sysCmd(acSyscmdGetObjectState, acTable, "MyTable") = acObjStateOpen Then 'Do whatever else ' do something else End If Upvote 0 Downvote
If sysCmd(acSyscmdGetObjectState, acTable, "MyTable") = acObjStateOpen Then 'Do whatever else ' do something else End If
Jan 17, 2005 Thread starter #3 MJPPaba MIS May 28, 2003 142 GB Thankyou lupins46 Works like a dream. Cheers Matthew The only bad question is the question you dont ask! Upvote 0 Downvote
Thankyou lupins46 Works like a dream. Cheers Matthew The only bad question is the question you dont ask!