Oct 30, 2000 1 #1 JUANCARLOS Programmer Joined Oct 30, 2000 Messages 61 Location PE I want to ask if a form is open as: if Forms!xxxxxx is open else endif Can you help me....
Oct 31, 2000 1 #2 MichaelRed Programmer Joined Dec 22, 1999 Messages 8,410 Location US Function basFrmOpen(strFrmName as String) As Boolean [tab]basFrmOpen = (SysCmd(acSysCmdGetObjectState, acForm, strFrmName) <> 0) End Function MichaelRed mred@duvallgroup.com There is never time to do it right but there is always time to do it over Upvote 0 Downvote
Function basFrmOpen(strFrmName as String) As Boolean [tab]basFrmOpen = (SysCmd(acSysCmdGetObjectState, acForm, strFrmName) <> 0) End Function MichaelRed mred@duvallgroup.com There is never time to do it right but there is always time to do it over