Click here to Skip to main content
15,915,770 members
Home / Discussions / C#
   

C#

 
GeneralRe: Serial Port communication in C# Pin
OriginalGriff3-Oct-13 8:54
mveOriginalGriff3-Oct-13 8:54 
AnswerRe: Serial Port communication in C# Pin
David Knechtges3-Oct-13 9:38
David Knechtges3-Oct-13 9:38 
GeneralRe: Serial Port communication in C# Pin
OriginalGriff4-Oct-13 0:03
mveOriginalGriff4-Oct-13 0:03 
QuestionRead/write directly to a specific sector in a hard disk Pin
ptvce3-Oct-13 3:13
ptvce3-Oct-13 3:13 
AnswerRe: Read/write directly to a specific sector in a hard disk Pin
Richard MacCutchan3-Oct-13 3:27
mveRichard MacCutchan3-Oct-13 3:27 
GeneralRe: Read/write directly to a specific sector in a hard disk Pin
ptvce3-Oct-13 3:34
ptvce3-Oct-13 3:34 
GeneralRe: Read/write directly to a specific sector in a hard disk Pin
Richard MacCutchan3-Oct-13 3:37
mveRichard MacCutchan3-Oct-13 3:37 
Questionpleaase can any one help me how to resolve this Auto generated code... for first Record It Takes 1 But for second record it takes 13,14 number Pin
Likhith.S3-Oct-13 2:38
professionalLikhith.S3-Oct-13 2:38 
AnswerRe: pleaase can any one help me how to resolve this Auto generated code... for first Record It Takes 1 But for second record it takes 13,14 number Pin
Eddy Vluggen3-Oct-13 7:46
professionalEddy Vluggen3-Oct-13 7:46 
AnswerRe: pleaase can any one help me how to resolve this Auto generated code... for first Record It Takes 1 But for second record it takes 13,14 number Pin
Abhinav S3-Oct-13 17:19
Abhinav S3-Oct-13 17:19 
QuestionHow to build up a teamviewer like windows application Pin
Arun kumar Gautam3-Oct-13 0:02
Arun kumar Gautam3-Oct-13 0:02 
AnswerRe: How to build up a teamviewer like windows application Pin
Pete O'Hanlon3-Oct-13 0:14
mvePete O'Hanlon3-Oct-13 0:14 
QuestionSQL UDF or C# function Pin
eddieangel2-Oct-13 8:10
eddieangel2-Oct-13 8:10 
AnswerRe: SQL UDF or C# function Pin
jschell2-Oct-13 8:38
jschell2-Oct-13 8:38 
GeneralRe: SQL UDF or C# function Pin
eddieangel2-Oct-13 8:58
eddieangel2-Oct-13 8:58 
AnswerRe: SQL UDF or C# function Pin
Mycroft Holmes2-Oct-13 13:03
professionalMycroft Holmes2-Oct-13 13:03 
GeneralRe: SQL UDF or C# function Pin
eddieangel3-Oct-13 6:06
eddieangel3-Oct-13 6:06 
AnswerRe: SQL UDF or C# function Pin
Kornfeld Eliyahu Peter2-Oct-13 20:58
professionalKornfeld Eliyahu Peter2-Oct-13 20:58 
Questionclass and object Pin
Member 103106132-Oct-13 0:02
Member 103106132-Oct-13 0:02 
AnswerRe: class and object Pin
Chris Quinn2-Oct-13 0:07
Chris Quinn2-Oct-13 0:07 
AnswerRe: class and object PinPopular
Pete O'Hanlon2-Oct-13 0:09
mvePete O'Hanlon2-Oct-13 0:09 
AnswerRe: class and object Pin
Abhinav S2-Oct-13 0:20
Abhinav S2-Oct-13 0:20 
AnswerRe: class and object Pin
BillWoodruff2-Oct-13 6:16
professionalBillWoodruff2-Oct-13 6:16 
Questiondatatable . help needed Pin
superselector1-Oct-13 18:56
superselector1-Oct-13 18:56 
i have a datatable with 3 columns Class, Student details, School Name

DataTable dt = new DataTable();
dt.Columns.Add("Class", typeof(System.String));
dt.Columns.Add("Student Details", typeof(System.String));
dt.Columns.Add("School Name", typeof(System.String));
dt.Rows.Add("12", "binod 16 Maths","X");
dt.Rows.Add("12", "Alex 17 History", "Y");
dt.Rows.Add("12", "Sam 18 Biology", "Z");

I want to convert this datatable into this below new datatable where i have splitted the "Student Deatils" column into 3 columns and added the values of this column separted by space in new columsn

dtNew.Columns.Add("Class", typeof(System.String));
dtNew.Columns.Add("Name", typeof(System.String));
dtNew.Columns.Add("Age", typeof(System.String));
dtNew.Columns.Add("Subject", typeof(System.String));
dtNew.Columns.Add("School Name", typeof(System.String));


Class Name Age Subject School Name
12 binod 16 maths X
12 Alex 17 History Y
12 Sam 18 Biology Z
AnswerRe: datatable . help needed Pin
Abhinav S1-Oct-13 21:09
Abhinav S1-Oct-13 21:09 

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.