Hi,any of you know how to like create a alert system(reminder) ??
using vb.net..windows application..and it goes in tis way..
a alert will pop out to tell u the amount of stocks when it left less than 10. (i creating an application -database)

Recommended Answers

All 2 Replies

You want something other than a Message Box?

Why not make a Label or Textbox populate with a response that shows the stock left is less than 10?

Do you mean a windows alert? Why make it that complicated? I would go with either a label or message box route.

If intInventoryAmount < 10 then
MsgBox("Note: The amount left is less than 10 units!")
End If


Please provide more details if this is not what you are asking for?

thank...i solved it yday le..hee..i used msgbox to pop up the alert.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.