Create a popup alert to all users

  • Thread starter Thread starter Victor Torres
  • Start date Start date
V

Victor Torres

Hi to all, I want to create an alert so that all of the users that are
working in the database receive it. Is there any simple way to do it?
Thanks.
 
Hi to all,  I want to create an alert so that all of the users that are
working in the database receive it.  Is there any simple way to do it?  
Thanks.

not really.

Create a popup/modal form.
create a timer event on your main form, or whatever form you always
have open. In the Timer event, check [for] some value in the back end
database. If the value = the trigger value, show the modal form.
 
Hi to all,  I want to create an alert so that all of the users that are
working in the database receive it.  Is there any simple way to do it?  
Thanks.

not really.

Create a popup/modal form.
create a timer event on your main form, or whatever form you always
have open. In the Timer event, check [for] some value in the back end
database. If the value = the trigger value, show the modal form.
 
Create a hidden from that opens when the front-end of the database opens. On
this form have an OnTimer event that is set to check for a value in a table.
Something like tPopUp with one field, a Y or N.

When the OnTimer event fires and it finds a Y (or N) then it will open a
Pop-up and Modal form that will do whatever you need it to.
 
Create a hidden from that opens when the front-end of the database opens. On
this form have an OnTimer event that is set to check for a value in a table.
Something like tPopUp with one field, a Y or N.

When the OnTimer event fires and it finds a Y (or N) then it will open a
Pop-up and Modal form that will do whatever you need it to.
 
Back
Top