Monday, November 28, 2016

Create Startup Program using C#

 This post shows how to launch your application on system startup using few lines of codes in C#.Launching your application at windows start up is useful for checking updates etc.Create a new windows form application and design a form as shown below.


Sunday, November 27, 2016

Hide Program using C#

Hi this post show how to to hide your C# Application in system tray.To hide your program in system tray you need "notifyicon" control from toolbox.Create a new windows application and design a form like this


Wednesday, November 23, 2016

Task Scheduler in C#

This post show how to create a simple task scheduler in C#.The program takes input(hours,minutes) from the user and display a message box at a specific time(Input Time).Create a new C# Windows Form Project in Visual studio.