I'm looking for a way to test if a user form already loaded. Browsing the web I found examples such as
But is there a way to determine if the form is loaded, even is it is not visible?
Is this a possible place to apply creating my own events with class subs? I've been learning about class subs recently, but I haven't gotten into that aspect of them. I've only heard you can do it.
-JTBorton
If it isn't broken, it doesn't have enough parts yet.
Code:
if frm[FormName].visible = true then
...stuff...
end if
But is there a way to determine if the form is loaded, even is it is not visible?
Is this a possible place to apply creating my own events with class subs? I've been learning about class subs recently, but I haven't gotten into that aspect of them. I've only heard you can do it.
-JTBorton
If it isn't broken, it doesn't have enough parts yet.