Search results for 'ShowDialog'. 1 post(s) found.
- 2007/08/28 How To Print Text In C#
If you want to use MultipadPrintDocument in your own code,it's best to rename the class and its constructor to something more appropriate. Then add a variable of type XXXPrintDocument to your form and implement the menu items as follows:
void OnFilePrint(Object sender,EventArgs e)
{
PrintDialog pd = new PrintDialog();
_Printdocument.Text = _multipadbox.Text;
_Printdocument.Font = _multipadbox.Font;
pd.Document = _Printdocument;
pd.ShowDialog();
}
void OnFilePrintPreview(Object sender,EventArgs e)
{
PrintPreviewDialog ppd = new PrintPreviewDialog();
_Printdocument.Text = _multipadbox.Text;
_Printdocument.Font = _multipadbox.Font;
ppd.Document = _Printdocument;
ppd.ShowDialog();
}
void OnFilePageSetup(Object sender,EventArgs e)
{
PageSetupDialog psd = new PageSetupDialog();
psd.Document = _Printdocument;
psd.ShowDialog();
}
{
PrintDialog pd = new PrintDialog();
_Printdocument.Text = _multipadbox.Text;
_Printdocument.Font = _multipadbox.Font;
pd.Document = _Printdocument;
pd.ShowDialog();
}
void OnFilePrintPreview(Object sender,EventArgs e)
{
PrintPreviewDialog ppd = new PrintPreviewDialog();
_Printdocument.Text = _multipadbox.Text;
_Printdocument.Font = _multipadbox.Font;
ppd.Document = _Printdocument;
ppd.ShowDialog();
}
void OnFilePageSetup(Object sender,EventArgs e)
{
PageSetupDialog psd = new PageSetupDialog();
psd.Document = _Printdocument;
psd.ShowDialog();
}
Another posts included in "C#"
| How To Check If Your Printer Is Connected Using C# (0) | 2007/08/28 |
| Simplified .NET Printing In C# (0) | 2007/08/28 |
| A Customizable Printing Text Class (0) | 2007/08/28 |
| C Sharp Lists (0) | 2007/08/28 |
| Simple Example Of IF/THEN Using C# (0) | 2007/08/28 |
| Simple C# CGI working on Apache (0) | 2007/08/27 |
| How to send binary data through C# CGI app? (0) | 2007/08/27 |
| Interacting With TinyPic From C# (0) | 2007/08/27 |
Trackback : Cannot send a trackbact to this post.
-
Subject different money making ideas
2010/01/29 05:22
moneyideas
-
Subject different money making ideas
2010/01/29 14:17
moneyideas
-
Subject different money making ideas
2010/01/31 16:44
moneyideas

Prev

Rss Feed