Ask a questionAsk a question
 

Questionreminder

All Replies

  • Tuesday, November 03, 2009 5:47 PMGanesh Ranganathan - Bangalore, India Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Please elaborate on what exactly you want to achieve. 
    Ganesh Ranganathan
    [Please mark the post as answer if it answers your question]
    blog.ganeshzone.net
  • Tuesday, November 03, 2009 8:38 PMDig-Boy Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Has Code
    'REMINDER:  Do that thing (you know).
    

    Sorry, I just couldn't resist :)

    So yes, what Ganesh is saying...  please explain in detail what you are trying to do.
     
     
     
     

  • Tuesday, November 03, 2009 10:12 PMMalange Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    how to create a reminder in vb.net2008

    you mean a software that reminder you something, like alarm? ok you need to creat the software to do that. and for that you need to right a code. and for that you need to know how to write it.
    Don't judge me, just Upgrade me. Thanks!
  • Wednesday, November 04, 2009 7:21 AMCor LigthertMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    To create a reminder, you need something that is always running.

    Most persons use a scheduler for that, but you can also try a windows service.

    Be aware that a window service cannot direct communicatie with the screen in an other way than with a notification icon.

    A windowsservice is something easily to make, but not something that is easily to install, simply make first a console application and then change it to a windows service by adding a windows service install project to the solution. With wsinstalutil you can then install it.


    http://msdn.microsoft.com/en-us/library/50614e95(VS.80).aspx
    Success
    Cor
  • Monday, November 16, 2009 11:24 AMkrunal89 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    see actually i want to make that reminder come when current month date to next date month i want every date that stored in database that should come in the & display the corresponding value so that if i want to remind about due date for policy for next month which r the policy will be dueing so that i can collect that & submit b4 due date the things & even i want that birthday shold come even when i m not opening that software on sunday it will display on monday
    like this
    any one pls help

    then also if u have doubt u can ask how i want to make?ok

  • Monday, November 16, 2009 11:33 AMCor LigthertMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    You unmarked the answer I've given.

    Any reason.

    It fits exactly to your very quick reply you give now.


    Success
    Cor
  • Monday, November 16, 2009 11:53 AMkrunal89 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    actually i m new in this i have saw that but i didnt understood so pls can u guide me or make me undertand
    how to make console application
  • Monday, November 16, 2009 2:02 PMCor LigthertMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Do you see that console application all the time running, it wont, simply have a look what the scheduler can do for you if making a console application needs already guidance.


    Success
    Cor
  • Monday, November 16, 2009 2:27 PMRod StephensMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    You can also create a program and place a shortcut to it in the startup folder so it runs when the system boots. Then it can be a Windows Forms program instead of a console app.

    You'll still want a database, text file, or something to store the reminder data.

    I think the startup directories for XP and Vista are:

    XP, all users: C:\Documents and Settings\All Users\Start Menu\Programs\Startup
    XP particular user: C:\Documents and Settings\<username>\Start Menu\Programs\Startup
    Vista all users: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    Vista particular user: C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

    Rod

    www.vb-helper.com