View Full Version : Greetings, and a "How do you do?"


dschomburg
01-23-2002, 06:27 AM
I just found this forum, and I was hoping someone could answer a question of mine.

I have a db which is not yet split, is located on a network drive and will be access by multiple users (without anysort of log on name). - Is there a way to open a form so that every user will see it at the same time. I'm trying to create a sort of "broadcast" message before I close the application and kick everyone off.

-Any help would help a heap.
Thanks,
Dave

Fornatian
01-23-2002, 09:51 AM
The only way I think you could do that is to build yourself a custom table that only you have access to. When you want to send the 'kick off' message get each front end to check the value of the field value at intervals(say every five minutes) and say it is TRUE then display the message.

You would obviously only give yourself access to the form which sets the field value to TRUE.

Ian

dschomburg
01-23-2002, 09:58 AM
Ok, that makes sense.
Thanks a heap. I will re-post with results.

Thanks again.

dschomburg
01-23-2002, 11:32 AM
Awsome! I just had to set the "warning form" as the actual start up form and have the timer running then On_Timer it checks the value of a Global boolean var. If true then Msgbox("get the heck off") kinda thing.

Thanks for the suggestion!

Fornatian
01-24-2002, 07:12 AM
It's good to talk.