Click here to Skip to main content
15,893,401 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello

I am developing a GUI for Project improvements like one member has to send his problem to all the team members
I have developed till that and also updating also i have done .

So Now my Problem is i have certain members with their Login id and password.when they login to their respective System i should get the message who are all active and how to issue Notification for them to convey the problem when they are active and they should be intimated like he has some message.

Can anyone help in this regard
Posted

One way to achieve this would be;

1) maintain a date stamp or notification id on the client for the last time notifications were checked
2) On the client, when the user logs in, use a background worker to run an SQL query to check for new notifications after the last checked date / notif. id from #1 above and also notification not raised by them. Use a windows notfication bubble or some other method to show the user. Update the last check date or the notification id last checked
3) On the server, record a notification id, date raised, and raised by user id.

Then as part of the Client App, have some form of bug tracker, inbox etc. where the notifications can be viewed and comments added etc.
 
Share this answer
 
Comments
venkataramreddy 18-May-10 2:24am    
Thanks for the reply
Can u please mention an example for this
or some coding because i was bit confused in doing this
DaveAuld 18-May-10 2:38am    
You will just have to research the articles on CodeProject and Google for each of the subject areas. e.g. BackGroundWorker, Windows Notifications and Basic SQL, there is nothing really out of the ordinary, that you shouldn't be able to figure out once you look at a few basic examples you find on the net. Start piecing together your app, and then come back and ask specifics on the c# forum on CodeProject (if that is your language of choice).
What exactly is the problem? You will probably need to specify your question a little more.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900