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

C#

 
QuestionPolish Characters In Email in .Net Pin
ali khan msc11-Oct-06 19:44
ali khan msc11-Oct-06 19:44 
QuestionSend Polish Characters In Email Pin
ali khan msc11-Oct-06 19:42
ali khan msc11-Oct-06 19:42 
AnswerRe: Send Polish Characters In Email Pin
Mandaar Kulkarni11-Oct-06 22:25
Mandaar Kulkarni11-Oct-06 22:25 
QuestionCan you inline IL code in C# similiar to the C++ asm keyword? Pin
Tim Almdal11-Oct-06 19:25
Tim Almdal11-Oct-06 19:25 
QuestionString Problem Pin
Dotnetjunkie1511-Oct-06 19:22
Dotnetjunkie1511-Oct-06 19:22 
AnswerRe: String Problem Pin
drabiger11-Oct-06 20:33
drabiger11-Oct-06 20:33 
QuestionAssigning values ot Dataset in C# Pin
extremexpert11-Oct-06 19:15
extremexpert11-Oct-06 19:15 
AnswerRe: Assigning values ot Dataset in C# Pin
Thamilselvan J11-Oct-06 20:19
Thamilselvan J11-Oct-06 20:19 
Hi Dude,
Use this type code...


DataSet ds = new DataSet();
DataTable myTable = new DataTable();
myTable.Columns.Add("id", Type.GetType("System.String"));
myTable.Columns.Add("username", Type.GetType("System.String"));
myTable.Columns.Add("firstname", Type.GetType("System.String"));
myTable.Columns.Add("lastname", Type.GetType("System.String"));
DataRow row;
row = myTable.NewRow();
row["id"] = "test1";
row["username"] = "TestName";
row["firstname"] = "TestFirstName";
row["lastname"] = "Testlastname";
myTable.Rows.Add(row);

ds.Tables.Add(myTable);

Ok..

Regards
Thamilselvan J


Thamilselvan J is a Micrsosft MCP,MCAD,.Net Consultant,author of several .Net programming articles.He has been working with .Net technology since last three years.Thamilselvan J Background inclueds Master's in Computer Technology and B,Sc Computer Science.Currently he is working with ASP.NET and other cutting-edge technologies.

QuestionHow to capture the Image of Current form Pin
kumar.bs11-Oct-06 18:10
kumar.bs11-Oct-06 18:10 
AnswerRe: How to capture the Image of Current form Pin
Ashish Derhgawen11-Oct-06 18:47
Ashish Derhgawen11-Oct-06 18:47 
QuestionClosing a thread, from another thread Pin
Anthony Mushrow11-Oct-06 14:36
professionalAnthony Mushrow11-Oct-06 14:36 
AnswerRe: Closing a thread, from another thread Pin
User 665811-Oct-06 14:49
User 665811-Oct-06 14:49 
AnswerRe: Closing a thread, from another thread Pin
Judah Gabriel Himango11-Oct-06 17:51
sponsorJudah Gabriel Himango11-Oct-06 17:51 
QuestionFont Available Script Pin
Yehia A.Salam11-Oct-06 13:49
Yehia A.Salam11-Oct-06 13:49 
QuestionHow to Encode/Decode Streams on the fly ? Pin
hdv21211-Oct-06 13:16
hdv21211-Oct-06 13:16 
Questioncontrol in another form Pin
m.m._200711-Oct-06 12:31
m.m._200711-Oct-06 12:31 
AnswerRe: control in another form Pin
e-laj11-Oct-06 12:58
e-laj11-Oct-06 12:58 
GeneralRe: control in another form Pin
m.m._200711-Oct-06 13:08
m.m._200711-Oct-06 13:08 
GeneralRe: control in another form Pin
Anthony Mushrow11-Oct-06 14:40
professionalAnthony Mushrow11-Oct-06 14:40 
AnswerRe: control in another form Pin
mnvkng7611-Oct-06 19:04
mnvkng7611-Oct-06 19:04 
AnswerRe: control in another form Pin
quiteSmart11-Oct-06 19:56
quiteSmart11-Oct-06 19:56 
QuestionHooking into old DLL Pin
rahvyn611-Oct-06 11:21
rahvyn611-Oct-06 11:21 
AnswerRe: Hooking into old DLL Pin
Judah Gabriel Himango11-Oct-06 13:16
sponsorJudah Gabriel Himango11-Oct-06 13:16 
GeneralRe: Hooking into old DLL Pin
rahvyn612-Oct-06 2:32
rahvyn612-Oct-06 2:32 
GeneralRe: Hooking into old DLL Pin
Judah Gabriel Himango12-Oct-06 6:16
sponsorJudah Gabriel Himango12-Oct-06 6:16 

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.