Rahul Shirphule
Rahul Shirphule

Reputation: 999

How Do I show Notification when Application is closed Vb.net

I'm Java Developer and new to Vb.net,I using Win form for developing Windows Application and my application is showing the notification for new changes in database(i.e new row added) So how can i achieve this in Vb.net.? should I use Services for it(but as i read, services can not interact with UI) I don't know what to use for getting data in background and show update in notification when my application is in background/close.

Lots of thanks.

Upvotes: 0

Views: 2409

Answers (1)

HShbib
HShbib

Reputation: 1841

You can have a look at something like this:

Send a notification message to vb.net application

Create a System Tray Application in VB.NET
Here you could allow the tray to display a notification in case 2 or more users are using your app so that they can be notified. However, you should consider database centralization as mentioned here

Also you can see Implementing SQL Notification

Upvotes: 1

Related Questions