Click here to Skip to main content
16,011,436 members
Home / Discussions / C#
   

C#

 
QuestionConverting a resource object to a serializable object? Pin
LongRange.Shooter3-Nov-06 7:28
LongRange.Shooter3-Nov-06 7:28 
QuestionOdd Behavior from a Radio Button Pin
Yeck3-Nov-06 6:24
Yeck3-Nov-06 6:24 
AnswerRe: Odd Behavior from a Radio Button Pin
LongRange.Shooter3-Nov-06 7:50
LongRange.Shooter3-Nov-06 7:50 
GeneralRe: Odd Behavior from a Radio Button Pin
Yeck3-Nov-06 9:38
Yeck3-Nov-06 9:38 
AnswerRe: Odd Behavior from a Radio Button Pin
Dan Neely3-Nov-06 9:51
Dan Neely3-Nov-06 9:51 
GeneralRe: Odd Behavior from a Radio Button Pin
Yeck3-Nov-06 10:16
Yeck3-Nov-06 10:16 
QuestionBindingSource and BindingNavigator for DataGridView in C# Pin
maylels3-Nov-06 5:28
maylels3-Nov-06 5:28 
AnswerRe: BindingSource and BindingNavigator for DataGridView in C# Pin
sam#3-Nov-06 19:27
sam#3-Nov-06 19:27 
take two DataTable.one table fill with all records and second table fill only those recods which you to show at a time and set secod table as the datasourcr of your grid. e.g. lets first table contains 100 Row and you want to show 10 reocrd at a time so simply select 10 records from the first table (DataRow []dr= firstTable.Select("ID>=1 AND ID<=10");) Now import those rows in second table.
SecondTable.Clear();<br />
for(int i==0;i<dr.Length;i++)<br />
     SecondTable.ImportRow(dr[i]);

QuestionHow to set windows form height to 0 without the designer [modified] Pin
saho3-Nov-06 5:19
saho3-Nov-06 5:19 
AnswerRe: How to set windows form height to 0 without the designer Pin
sam#3-Nov-06 19:13
sam#3-Nov-06 19:13 
GeneralRe: How to set windows form height to 0 without the designer Pin
saho5-Nov-06 22:05
saho5-Nov-06 22:05 
QuestionPop-up / drop down user control Pin
iPodSync3-Nov-06 5:14
iPodSync3-Nov-06 5:14 
AnswerRe: Pop-up / drop down user control Pin
Insincere Dave3-Nov-06 5:23
Insincere Dave3-Nov-06 5:23 
QuestionConstructing Absolute URL Pin
Nadia Monalisa3-Nov-06 4:47
Nadia Monalisa3-Nov-06 4:47 
AnswerRe: Constructing Absolute URL Pin
ednrgc3-Nov-06 4:55
ednrgc3-Nov-06 4:55 
GeneralRe: Constructing Absolute URL Pin
Nadia Monalisa3-Nov-06 5:23
Nadia Monalisa3-Nov-06 5:23 
AnswerRe: Constructing Absolute URL Pin
Scott Dorman3-Nov-06 11:35
professionalScott Dorman3-Nov-06 11:35 
Questionmemory problem with tooltips on picturebox Pin
Fabrice Deshayes aka Xtream3-Nov-06 4:39
Fabrice Deshayes aka Xtream3-Nov-06 4:39 
AnswerRe: memory problem with tooltips on picturebox Pin
ednrgc3-Nov-06 4:58
ednrgc3-Nov-06 4:58 
GeneralRe: memory problem with tooltips on picturebox Pin
Fabrice Deshayes aka Xtream3-Nov-06 6:00
Fabrice Deshayes aka Xtream3-Nov-06 6:00 
GeneralRe: memory problem with tooltips on picturebox Pin
Guffa3-Nov-06 7:45
Guffa3-Nov-06 7:45 
GeneralRe: memory problem with tooltips on picturebox Pin
Fabrice Deshayes aka Xtream4-Nov-06 0:58
Fabrice Deshayes aka Xtream4-Nov-06 0:58 
AnswerRe: memory problem with tooltips on picturebox Pin
Guffa4-Nov-06 4:16
Guffa4-Nov-06 4:16 
GeneralRe: memory problem with tooltips on picturebox Pin
Fabrice Deshayes aka Xtream4-Nov-06 10:50
Fabrice Deshayes aka Xtream4-Nov-06 10:50 
GeneralRe: memory problem with tooltips on picturebox Pin
Guffa4-Nov-06 13:20
Guffa4-Nov-06 13:20 

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.