here's my code for c#
private void printButton_Cli ck(object sender, EventArgs e)
{
//print form on printer
Form1.Print = System.Drawing. Printing.PrintA ction.PrintToPr eview;
Form1.Print();
i'm trying to print the entire project (Form1), as if it were one picture, but the code isn't working. is it typed wrong?
private void printButton_Cli ck(object sender, EventArgs e)
{
//print form on printer
Form1.Print = System.Drawing. Printing.PrintA ction.PrintToPr eview;
Form1.Print();
i'm trying to print the entire project (Form1), as if it were one picture, but the code isn't working. is it typed wrong?
Comment