Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
AnswerRe: Why am I getting this compiler error? Pin
Anthony Mushrow12-Nov-07 14:10
professionalAnthony Mushrow12-Nov-07 14:10 
GeneralRe: Why am I getting this compiler error? Pin
JoeRip12-Nov-07 15:27
JoeRip12-Nov-07 15:27 
GeneralRe: Why am I getting this compiler error? Pin
JoeRip12-Nov-07 15:37
JoeRip12-Nov-07 15:37 
QuestionConvert to string with a [+] or a [-] sign symbol Pin
student_rhr12-Nov-07 13:18
student_rhr12-Nov-07 13:18 
AnswerRe: Convert to string with a [+] or a [-] sign symbol Pin
Anthony Mushrow12-Nov-07 14:16
professionalAnthony Mushrow12-Nov-07 14:16 
AnswerRe: Convert to string with a [+] or a [-] sign symbol Pin
PIEBALDconsult12-Nov-07 14:39
mvePIEBALDconsult12-Nov-07 14:39 
GeneralRe: Convert to string with a [+] or a [-] sign symbol Pin
student_rhr13-Nov-07 4:04
student_rhr13-Nov-07 4:04 
QuestionSet Column Width in Dynamic Table Pin
tantja12-Nov-07 13:12
tantja12-Nov-07 13:12 
I create a dynamic table using the code below (c#), but I couldn't figure out how to set the column width (in column3 comments).

DataTable tbl;
DataColumn col;
tbl = new DataTable();

col = new DataColumn("column1");
tbl.Columns.Add(col);
col = new DataColumn("column2");
tbl.Columns.Add(col);
col = new DataColumn("column3 comments");

tbl.Columns.Add(col);

tbl.AcceptChanges();

DataRow r;

r = tbl.NewRow();
r["column1"] = "This is 1";
r["column2"] = "This is 2";
r["column3 comments"] = "Comments is really long & I need to set the width for this";

tbl.Rows.Add(r);
AnswerRe: Set Column Width in Dynamic Table Pin
PIEBALDconsult12-Nov-07 15:20
mvePIEBALDconsult12-Nov-07 15:20 
GeneralRe: Set Column Width in Dynamic Table Pin
tantja13-Nov-07 4:43
tantja13-Nov-07 4:43 
QuestionIncorporating applications to another project! Pin
kingletas12-Nov-07 11:35
kingletas12-Nov-07 11:35 
AnswerRe: Incorporating applications to another project! Pin
Michael Sync12-Nov-07 14:53
Michael Sync12-Nov-07 14:53 
GeneralRe: Incorporating applications to another project! Pin
kingletas12-Nov-07 16:47
kingletas12-Nov-07 16:47 
GeneralRe: Incorporating applications to another project! Pin
Michael Sync12-Nov-07 17:01
Michael Sync12-Nov-07 17:01 
GeneralRe: Incorporating applications to another project! Pin
kingletas12-Nov-07 17:16
kingletas12-Nov-07 17:16 
GeneralRe: Incorporating applications to another project! Pin
Michael Sync12-Nov-07 18:08
Michael Sync12-Nov-07 18:08 
QuestionSendTo Shortcut Pin
smarttom9912-Nov-07 11:09
smarttom9912-Nov-07 11:09 
AnswerRe: SendTo Shortcut Pin
Michael Sync12-Nov-07 14:49
Michael Sync12-Nov-07 14:49 
QuestionSsl Stream and certificates Pin
kingletas12-Nov-07 9:38
kingletas12-Nov-07 9:38 
QuestionMake zedGraph legend scrollable Pin
gizmokaka12-Nov-07 9:13
gizmokaka12-Nov-07 9:13 
AnswerRe: Make zedGraph legend scrollable Pin
Judah Gabriel Himango12-Nov-07 11:09
sponsorJudah Gabriel Himango12-Nov-07 11:09 
QuestionExpand possibilties with zedGraph color and symbols Pin
gizmokaka12-Nov-07 9:10
gizmokaka12-Nov-07 9:10 
QuestionEmbed font and DirectX.Direct3D.Font Pin
eterno.darknight12-Nov-07 8:29
eterno.darknight12-Nov-07 8:29 
AnswerRe: Embed font and DirectX.Direct3D.Font Pin
Judah Gabriel Himango12-Nov-07 11:13
sponsorJudah Gabriel Himango12-Nov-07 11:13 
GeneralRe: Embed font and DirectX.Direct3D.Font Pin
eterno.darknight12-Nov-07 13:04
eterno.darknight12-Nov-07 13:04 

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.