Click here to Skip to main content
15,891,909 members
Home / Discussions / C#
   

C#

 
GeneralRe: Logic Question on Databinding and others Pin
Heath Stewart23-Jun-04 10:39
protectorHeath Stewart23-Jun-04 10:39 
GeneralRe: Logic Question on Databinding and others Pin
se6en23-Jun-04 11:48
se6en23-Jun-04 11:48 
GeneralRe: Logic Question on Databinding and others Pin
se6en23-Jun-04 12:14
se6en23-Jun-04 12:14 
GeneralGeneric C# operator Pin
FranckyDude23-Jun-04 9:06
FranckyDude23-Jun-04 9:06 
GeneralRe: Generic C# operator Pin
Daniel Turini23-Jun-04 9:12
Daniel Turini23-Jun-04 9:12 
GeneralRe: Generic C# operator Pin
Heath Stewart23-Jun-04 10:34
protectorHeath Stewart23-Jun-04 10:34 
GeneralLoosing focus Pin
Anonymous23-Jun-04 8:17
Anonymous23-Jun-04 8:17 
QuestionWhere is the rest of my Datagrid? Pin
kornstyle23-Jun-04 8:05
kornstyle23-Jun-04 8:05 
I'm trying to print out a datagrid. I was able to print out about half of the datagrid but the second half did not print. How do I print out the entire datagrid? This is the code that I used.


private void printDocument1_PrintPage(System.Object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
PaintEventArgs myPaintArgs = new PaintEventArgs (e.Graphics, new Rectangle(new Point(0, 0), this.Size));
this.InvokePaint(dataGrid1, myPaintArgs);
}

private void printButton_Click(object sender, System.EventArgs e)
{
printDocument1.Print();
}


private void printDocument1_BeginPrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
printDialog1.ShowDialog();
}
AnswerRe: Where is the rest of my Datagrid? Pin
Heath Stewart23-Jun-04 9:02
protectorHeath Stewart23-Jun-04 9:02 
GeneralRe: Where is the rest of my Datagrid? Pin
kornstyle23-Jun-04 9:17
kornstyle23-Jun-04 9:17 
GeneralRe: Where is the rest of my Datagrid? Pin
Heath Stewart23-Jun-04 10:32
protectorHeath Stewart23-Jun-04 10:32 
GeneralCode Critique Requested Pin
mealnumberone23-Jun-04 7:49
mealnumberone23-Jun-04 7:49 
GeneralRe: Code Critique Requested Pin
Daniel Turini23-Jun-04 8:38
Daniel Turini23-Jun-04 8:38 
GeneralRe: Code Critique Requested Pin
Heath Stewart23-Jun-04 8:50
protectorHeath Stewart23-Jun-04 8:50 
GeneralRe: Code Critique Requested Pin
Daniel Turini23-Jun-04 9:00
Daniel Turini23-Jun-04 9:00 
GeneralRe: Code Critique Requested Pin
Heath Stewart23-Jun-04 9:06
protectorHeath Stewart23-Jun-04 9:06 
GeneralRe: Code Critique Requested Pin
mealnumberone23-Jun-04 9:11
mealnumberone23-Jun-04 9:11 
GeneralRe: Code Critique Requested Pin
Daniel Turini23-Jun-04 10:25
Daniel Turini23-Jun-04 10:25 
GeneralRe: Code Critique Requested Pin
Steven Campbell23-Jun-04 9:42
Steven Campbell23-Jun-04 9:42 
GeneralDataGrid and end edit Pin
cje23-Jun-04 6:44
cje23-Jun-04 6:44 
GeneralRe: DataGrid and end edit Pin
Heath Stewart23-Jun-04 8:40
protectorHeath Stewart23-Jun-04 8:40 
GeneralRe: DataGrid and end edit Pin
cje23-Jun-04 8:49
cje23-Jun-04 8:49 
GeneralRe: DataGrid and end edit Pin
Heath Stewart23-Jun-04 9:00
protectorHeath Stewart23-Jun-04 9:00 
GeneralRe: DataGrid and end edit Pin
cje23-Jun-04 9:04
cje23-Jun-04 9:04 
QuestionHow-to? Connect to remote pc over LAN connection ? Pin
Adel83k23-Jun-04 5:57
Adel83k23-Jun-04 5:57 

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.