Print this page
Monday, 14 January 2013 18:14

how to show tips when windows application starts

Written by 
Rate this item
(0 votes)

It's a great idea to show application related tips
when users run your application.you may show tips
about how to use your application efficiently,details
of your application terms,etc.

to show tips add the codes in your main form's
load method.this method runs the tips form -

private void frmMain_Load(object sender, System.EventArgs e)
{

frmTips newfrmTipoftheday = new frmTipOfTheDay();

//this line shows the tips form as a modal dialog box.
//design your frmTips form in a way that it shows
//tips from database(keep a next button to show next
//tips and cancel button which quits tips window.

newfrmTipoftheday.ShowDialog();
}

Read 2730 times
Super User

Email This email address is being protected from spambots. You need JavaScript enabled to view it.
7