Search This Blog

Saturday, August 28, 2010

How to show Print Dialog Box when a button is clicked(Window Application)

 private void button1_Click(object sender, EventArgs e)
{
        PrintDialog p = new PrintDialog(); 
                 p.ShowDialog();

}

No comments:

Post a Comment