I had written a long explanation but decided to rewrite it... here's the skinny. I have a client side database that scans the table for new entries. When it sees one it updates a listbox. The code is placed in the On_Timer event and cycles every second.
I want the form to popup on the screen over what anyone is working on (basically from minimized in the taskbar) whenever the count >= 1.
My code is:
Obviously it's the me.setfocus that isn't making the form popup over what the users are working on. Does anyone know how to code it differently? Any help would be greatly appreciated.
~Snay
I want the form to popup on the screen over what anyone is working on (basically from minimized in the taskbar) whenever the count >= 1.
My code is:
Code:
dim x
x = dcount("[VISITID]","VISITORtbl","[SEEN] = -1"
if x >= 1 then
me.setfocus
end if
Obviously it's the me.setfocus that isn't making the form popup over what the users are working on. Does anyone know how to code it differently? Any help would be greatly appreciated.
~Snay