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

C#

 
QuestionHow to implement a syntax checker using C# ? Pin
I.explore.code25-Jun-07 20:37
I.explore.code25-Jun-07 20:37 
AnswerRe: How to implement a syntax checker using C# ? Pin
Christian Graus25-Jun-07 23:40
protectorChristian Graus25-Jun-07 23:40 
AnswerRe: How to implement a syntax checker using C# ? Pin
Rudolf Jan26-Jun-07 0:11
Rudolf Jan26-Jun-07 0:11 
AnswerRe: How to implement a syntax checker using C# ? Pin
Vasudevan Deepak Kumar26-Jun-07 1:30
Vasudevan Deepak Kumar26-Jun-07 1:30 
AnswerRe: How to implement a syntax checker using C# ? Pin
Pete O'Hanlon26-Jun-07 1:58
mvePete O'Hanlon26-Jun-07 1:58 
AnswerRe: How to implement a syntax checker using C# ? Pin
leppie26-Jun-07 2:12
leppie26-Jun-07 2:12 
AnswerRe: How to define DATATABLE in VC# Pin
Manas Bhardwaj25-Jun-07 20:46
professionalManas Bhardwaj25-Jun-07 20:46 
GeneralRe: How to define DATATABLE in VC# Pin
I.explore.code25-Jun-07 21:19
I.explore.code25-Jun-07 21:19 
Hi,
If you are looking to create a new data table schema in VC# then below is the code:

DataTable dt = new DataTable("tblName");
            dt.Columns.Add("Id", typeof(int));
            dt.Columns.Add("Name", typeof(string));
            dt.Columns.Add("Age", typeof(int));

            dt.AcceptChanges();


If u need any thing specific, let me know.
GeneralRe: How to define DATATABLE in VC# Pin
Brady Kelly25-Jun-07 21:03
Brady Kelly25-Jun-07 21:03 
Questionmy data is not converted into string Pin
srinivassam25-Jun-07 20:06
srinivassam25-Jun-07 20:06 
AnswerRe: my data is not converted into string Pin
Vikram A Punathambekar25-Jun-07 20:17
Vikram A Punathambekar25-Jun-07 20:17 
AnswerRe: my data is not converted into string Pin
inamgul25-Jun-07 20:34
inamgul25-Jun-07 20:34 
AnswerRe: my data is not converted into string Pin
I.explore.code25-Jun-07 21:02
I.explore.code25-Jun-07 21:02 
QuestionCan't open project file after SSL enable Pin
lygine ng lee chuang25-Jun-07 20:06
lygine ng lee chuang25-Jun-07 20:06 
Questionlatch "0" and save next values to array in serialport?? Pin
Mir_As25-Jun-07 20:05
Mir_As25-Jun-07 20:05 
AnswerRe: latch "0" and save next values to array in serialport?? Pin
Vikram A Punathambekar25-Jun-07 20:19
Vikram A Punathambekar25-Jun-07 20:19 
GeneralRe: latch "0" and save next values to array in serialport?? Pin
Mir_As25-Jun-07 20:45
Mir_As25-Jun-07 20:45 
GeneralRe: latch "0" and save next values to array in serialport?? Pin
Vikram A Punathambekar26-Jun-07 1:30
Vikram A Punathambekar26-Jun-07 1:30 
GeneralRe: latch "0" and save next values to array in serialport?? Pin
Mir_As26-Jun-07 2:07
Mir_As26-Jun-07 2:07 
GeneralRe: latch "0" and save next values to array in serialport?? Pin
Vikram A Punathambekar26-Jun-07 4:31
Vikram A Punathambekar26-Jun-07 4:31 
GeneralRe: latch "0" and save next values to array in serialport?? Pin
Mir_As26-Jun-07 5:26
Mir_As26-Jun-07 5:26 
QuestionPick up a file Pin
Hum Dum25-Jun-07 19:26
Hum Dum25-Jun-07 19:26 
AnswerRe: Pick up a file Pin
Manas Bhardwaj25-Jun-07 20:05
professionalManas Bhardwaj25-Jun-07 20:05 
AnswerRe: Pick up a file Pin
I.explore.code25-Jun-07 20:30
I.explore.code25-Jun-07 20:30 
QuestionAdding property to a control Pin
anujose25-Jun-07 18:53
anujose25-Jun-07 18:53 

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.