Click here to Skip to main content
15,887,083 members
Home / Discussions / C#
   

C#

 
AnswerRe: abstract, override and the Visual Studio Designer Pin
Luc Pattyn16-Feb-11 2:04
sitebuilderLuc Pattyn16-Feb-11 2:04 
GeneralRe: abstract, override and the Visual Studio Designer Pin
Dewald16-Feb-11 2:37
Dewald16-Feb-11 2:37 
GeneralRe: abstract, override and the Visual Studio Designer Pin
Luc Pattyn16-Feb-11 2:51
sitebuilderLuc Pattyn16-Feb-11 2:51 
GeneralRe: abstract, override and the Visual Studio Designer Pin
Dewald16-Feb-11 4:05
Dewald16-Feb-11 4:05 
AnswerRe: abstract, override and the Visual Studio Designer Pin
PIEBALDconsult16-Feb-11 1:48
mvePIEBALDconsult16-Feb-11 1:48 
GeneralRe: abstract, override and the Visual Studio Designer Pin
Dewald16-Feb-11 2:02
Dewald16-Feb-11 2:02 
QuestionWrite contents of dataset into email Pin
<<Tash18>>15-Feb-11 18:56
<<Tash18>>15-Feb-11 18:56 
AnswerRe: Write contents of dataset into email Pin
Hum Dum15-Feb-11 20:07
Hum Dum15-Feb-11 20:07 
Plain logic :

Iterate over datset/datatable rows. Get data from each row format/align as your need.
And append this in email body.

Like
StringBuilder sb = new StringBuilder();
     foreach (DataRow item in ds.Tables["TableName"].Rows)
     {
        sb.Append(item["columnName"].ToString());
     }

//format this sb acc. to your need
//put this sb in your email body

GeneralRe: Write contents of dataset into email Pin
<<Tash18>>15-Feb-11 20:13
<<Tash18>>15-Feb-11 20:13 
GeneralRe: Write contents of dataset into email Pin
Hum Dum15-Feb-11 20:15
Hum Dum15-Feb-11 20:15 
GeneralRe: Write contents of dataset into email Pin
<<Tash18>>15-Feb-11 20:27
<<Tash18>>15-Feb-11 20:27 
GeneralRe: Write contents of dataset into email Pin
<<Tash18>>15-Feb-11 21:39
<<Tash18>>15-Feb-11 21:39 
GeneralRe: Write contents of dataset into email Pin
Hum Dum15-Feb-11 21:55
Hum Dum15-Feb-11 21:55 
AnswerRe: Write contents of dataset into email Pin
Luc Pattyn16-Feb-11 0:50
sitebuilderLuc Pattyn16-Feb-11 0:50 
AnswerRe: Write contents of dataset into email Pin
PIEBALDconsult16-Feb-11 1:51
mvePIEBALDconsult16-Feb-11 1:51 
Questionget relative path Pin
igalep13215-Feb-11 12:18
igalep13215-Feb-11 12:18 
AnswerRe: get relative path [modified] Pin
Luc Pattyn15-Feb-11 12:38
sitebuilderLuc Pattyn15-Feb-11 12:38 
GeneralRe: get relative path Pin
igalep13215-Feb-11 12:42
igalep13215-Feb-11 12:42 
GeneralRe: get relative path Pin
Dave Kreskowiak15-Feb-11 15:21
mveDave Kreskowiak15-Feb-11 15:21 
QuestionLINQ to Entities Pin
Tamimi - Code15-Feb-11 4:52
Tamimi - Code15-Feb-11 4:52 
AnswerRe: LINQ to Entities Pin
Pete O'Hanlon15-Feb-11 5:29
mvePete O'Hanlon15-Feb-11 5:29 
GeneralRe: LINQ to Entities Pin
Tamimi - Code15-Feb-11 5:47
Tamimi - Code15-Feb-11 5:47 
GeneralRe: LINQ to Entities Pin
PIEBALDconsult15-Feb-11 6:31
mvePIEBALDconsult15-Feb-11 6:31 
GeneralRe: LINQ to Entities Pin
Pete O'Hanlon15-Feb-11 6:50
mvePete O'Hanlon15-Feb-11 6:50 
AnswerRe: LINQ to Entities Pin
musefan15-Feb-11 5:54
musefan15-Feb-11 5:54 

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.