Link to home
Create AccountLog in
Avatar of samiam41
samiam41Flag for United States of America

asked on

VB.NET 2022 Client notification program

How to create a client notification program that will send a popup message to a worker when a client arrives to our office in vb.net 2022. The receptionist will sign the client in and assign a worker from the information in a sql database. If the worker is available the program will send the worker a popup message by the computers IP address with the information in the database. 

Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

I would not reinvent the wheel for the part trying to send a popup on a computer. I would use Teams to do it.


You would only need to get the data from the database and make something that copies to the clipboard for the receptionist to paste in Teams Chat.


If your employees are using different devices, Teams would always be reachable!

or you can use the included msg.exe command line application



MSG {username | sessionname | sessionid | @filename | *}

    [/SERVER:servername] [/TIME:seconds] [/V] [/W] [message]


  username            Identifies the specified username.

  sessionname         The name of the session.

  sessionid           The ID of the session.

  @filename           Identifies a file containing a list of usernames,

                      sessionnames, and sessionids to send the message to.

  *                   Send message to all sessions on specified server.

  /SERVER:servername  server to contact (default is current).

  /TIME:seconds       Time delay to wait for receiver to acknowledge msg.

  /V                  Display information about actions being performed.

  /W                  Wait for response from user, useful with /V.

  message             Message to send.  If none specified, prompts for it

                      or reads from stdin.

ASKER CERTIFIED SOLUTION
Avatar of samiam41
samiam41
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer