Click here to Skip to main content
15,905,136 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problems with Exchange WebService API Pin
DotNetCoderJunior21-Feb-10 22:07
DotNetCoderJunior21-Feb-10 22:07 
QuestionProblems showing another form when user activates the main form Pin
TheFoZ18-Feb-10 3:32
TheFoZ18-Feb-10 3:32 
AnswerRe: Problems showing another form when user activates the main form Pin
1.21 Gigawatts18-Feb-10 3:39
1.21 Gigawatts18-Feb-10 3:39 
GeneralRe: Problems showing another form when user activates the main form Pin
TheFoZ18-Feb-10 3:42
TheFoZ18-Feb-10 3:42 
QuestionFile I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 2:45
1.21 Gigawatts18-Feb-10 2:45 
AnswerRe: File I/O - New Line Character Pin
Luc Pattyn18-Feb-10 2:58
sitebuilderLuc Pattyn18-Feb-10 2:58 
GeneralRe: File I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 3:07
1.21 Gigawatts18-Feb-10 3:07 
GeneralRe: File I/O - New Line Character Pin
Luc Pattyn18-Feb-10 3:12
sitebuilderLuc Pattyn18-Feb-10 3:12 
GeneralRe: File I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 3:16
1.21 Gigawatts18-Feb-10 3:16 
GeneralRe: File I/O - New Line Character Pin
Luc Pattyn18-Feb-10 3:28
sitebuilderLuc Pattyn18-Feb-10 3:28 
GeneralRe: File I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 3:31
1.21 Gigawatts18-Feb-10 3:31 
AnswerRe: File I/O - New Line Character Pin
Luc Pattyn18-Feb-10 3:38
sitebuilderLuc Pattyn18-Feb-10 3:38 
GeneralRe: File I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 3:40
1.21 Gigawatts18-Feb-10 3:40 
GeneralRe: File I/O - New Line Character Pin
harold aptroot18-Feb-10 3:42
harold aptroot18-Feb-10 3:42 
GeneralRe: File I/O - New Line Character Pin
ragnaroknrol18-Feb-10 3:46
ragnaroknrol18-Feb-10 3:46 
GeneralRe: File I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 3:49
1.21 Gigawatts18-Feb-10 3:49 
GeneralRe: File I/O - New Line Character Pin
ragnaroknrol18-Feb-10 4:08
ragnaroknrol18-Feb-10 4:08 
AnswerRe: File I/O - New Line Character Pin
Gideon Engelberth18-Feb-10 16:08
Gideon Engelberth18-Feb-10 16:08 
GeneralRe: File I/O - New Line Character Pin
1.21 Gigawatts18-Feb-10 21:37
1.21 Gigawatts18-Feb-10 21:37 
Questioninstallation prerequisites Pin
Ryan Minor18-Feb-10 2:17
Ryan Minor18-Feb-10 2:17 
QuestionImage Scroll Pin
VCsamir18-Feb-10 2:10
VCsamir18-Feb-10 2:10 
Questionprint orders from different places Pin
jogisarge18-Feb-10 1:51
jogisarge18-Feb-10 1:51 
Hello,

i am very new to C# so please be patient.

i am printing orders in my app.
so i have a button which creates the printjob.
the paper will be written in the Printpage-Event.

now i want to have a function that gets th order-object as a parm
and print it on the paper.

the reason is, that an order must be printed on severall programm modules.

private void btnDruck_Click(object sender, EventArgs e)
{
	PrintDocument Druckjob = new PrintDocument();
	PrintDialog Druckermenue = new PrintDialog();
	PrintPreviewDialog Druckpreview = new PrintPreviewDialog();
	Druckjob.DocumentName = "Rechnung";

	Druckjob.PrintPage += new PrintPageEventHandler(Druckjob_PrintPage);
	Druckpreview.Document = Druckjob;
	Druckermenue.Document = Druckjob;
	if (Druckermenue.ShowDialog() == DialogResult.OK)
	{
		Druckjob.Print();
	}
	Druckjob.PrintPage -= new PrintPageEventHandler(Druckjob_PrintPage);
	 
}
void Druckjob_PrintPage(object sender, PrintPageEventArgs e)
{
	Graphics g = e.Graphics;
	StringFormat lineFmtRight = new StringFormat();
	lineFmtRight.Alignment = StringAlignment.Far;
	g.PageUnit = GraphicsUnit.Millimeter;

	// Druckausgabe ...
	// Drucken ..

	g.Dispose();
}


bye jo
QuestionLoose coupling Pin
Mogamboo_Khush_Hua18-Feb-10 1:51
Mogamboo_Khush_Hua18-Feb-10 1:51 
AnswerRe: Loose coupling Pin
Keith Barrow18-Feb-10 2:15
professionalKeith Barrow18-Feb-10 2:15 
AnswerRe: Loose coupling Pin
Padmanabh Ganorkar18-Feb-10 2:16
Padmanabh Ganorkar18-Feb-10 2:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.