Refresh warning screen [closed]

-2

I am developing a stock control system and front of box and I intend to create a warning screen in the main form (it can be with datagridview), where, if when selling certain product and it reaches the minimum stock limit, then the warning screen should display this warning automatically. So far, the only alternative I could think of is to put this warning screen to update automatically every 1 minute, but still it would not be something online.

What is the best possible alternative to this development? Please do not want to leave the system heavy, I want something LIGHT!

Thank you! Abs!

    
asked by anonymous 06.01.2017 / 02:13

1 answer

2

There are several ways to resolve this. But as you explained that you do not want to dictate anything in the current system, to keep it level, the best I see is to periodically reach the stock level, and send a notification .

So you do not add new code to the current project, release your client from having one more responsibility, and use a native feature of Windows 10.

    
06.01.2017 / 10:05