Click here to Skip to main content
15,912,932 members
Home / Discussions / C#
   

C#

 
QuestionSplitter Panel Resize Pin
Jeffrey Walton20-Nov-07 20:30
Jeffrey Walton20-Nov-07 20:30 
Questionhow to retrieve value from port Pin
sivaramireddy p20-Nov-07 20:01
sivaramireddy p20-Nov-07 20:01 
AnswerRe: how to retrieve value from port Pin
Michael Sync20-Nov-07 20:14
Michael Sync20-Nov-07 20:14 
Questionfolder and files Pin
RajeevKumarSharma20-Nov-07 19:54
RajeevKumarSharma20-Nov-07 19:54 
AnswerRe: folder and files Pin
Michael Sync20-Nov-07 20:17
Michael Sync20-Nov-07 20:17 
GeneralRe: folder and files Pin
Michael Sync21-Nov-07 18:52
Michael Sync21-Nov-07 18:52 
QuestionHelp with export Pin
MumbleB20-Nov-07 19:42
MumbleB20-Nov-07 19:42 
AnswerRe: Help with export Pin
Prateek G20-Nov-07 21:30
Prateek G20-Nov-07 21:30 
Try this..

 //Write all records in the DB <br />
foreach (DataRow dr in dt.Rows)<br />
{ <br />
   if(dr["EXPORTED"]==0)<br />
{    <br />
   for (int i = 0; i < iColCount; i++) <br />
   { <br />
       if (!Convert.IsDBNull(dr[i]))<br />
       {           <br />
           sw.Write(dr[i].ToString()); <br />
       }<br />
       if (i < iColCount - 1) <br />
       {       <br />
            sw.Write(",");  <br />
       }      <br />
    }              <br />
    sw.Write(sw.NewLine); <br />
}   <br />
}        <br />
sw.Close();

GeneralRe: Help with export Pin
MumbleB20-Nov-07 22:55
MumbleB20-Nov-07 22:55 
Questionhow to retrieve value from port Pin
sivaramireddy p20-Nov-07 19:39
sivaramireddy p20-Nov-07 19:39 
QuestionConvert doc. to rtf Pin
arslanjatt20-Nov-07 19:27
arslanjatt20-Nov-07 19:27 
QuestionClearing TextBox Text Pin
sindhutiwari20-Nov-07 18:50
sindhutiwari20-Nov-07 18:50 
AnswerRe: Clearing TextBox Text Pin
Sun Rays20-Nov-07 19:21
Sun Rays20-Nov-07 19:21 
GeneralRe: Clearing TextBox Text Pin
sindhutiwari20-Nov-07 19:24
sindhutiwari20-Nov-07 19:24 
QuestionGraphing Control Pin
gongchengshi20-Nov-07 18:37
gongchengshi20-Nov-07 18:37 
AnswerRe: Graphing Control Pin
Paul Conrad20-Nov-07 18:46
professionalPaul Conrad20-Nov-07 18:46 
AnswerRe: Graphing Control Pin
gongchengshi20-Nov-07 19:15
gongchengshi20-Nov-07 19:15 
QuestionAbout dropdownlist.... Pin
Rajeshwar Code- Developer20-Nov-07 18:04
Rajeshwar Code- Developer20-Nov-07 18:04 
AnswerRe: About dropdownlist.... Pin
Christian Graus20-Nov-07 18:11
protectorChristian Graus20-Nov-07 18:11 
GeneralRe: About dropdownlist.... Pin
Rajeshwar Code- Developer20-Nov-07 18:37
Rajeshwar Code- Developer20-Nov-07 18:37 
GeneralRe: About dropdownlist.... Pin
Christian Graus20-Nov-07 18:46
protectorChristian Graus20-Nov-07 18:46 
AnswerRe: About dropdownlist.... Pin
arslanjatt20-Nov-07 19:50
arslanjatt20-Nov-07 19:50 
QuestionHow to click a button in a program Pin
sduhd20-Nov-07 17:11
sduhd20-Nov-07 17:11 
AnswerRe: How to click a button in a program Pin
MohammadAmiry20-Nov-07 17:47
MohammadAmiry20-Nov-07 17:47 
GeneralRe: How to click a button in a program Pin
sduhd20-Nov-07 19:45
sduhd20-Nov-07 19:45 

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.