Click here to Skip to main content
15,893,161 members
Home / Discussions / C#
   

C#

 
GeneralRe: Using mshtml to parse a html document in C# works very slow - Why ? Pin
Judah Gabriel Himango30-Dec-05 4:33
sponsorJudah Gabriel Himango30-Dec-05 4:33 
GeneralRe: Using mshtml to parse a html document in C# works very slow - Why ? Pin
DimaC30-Dec-05 6:15
DimaC30-Dec-05 6:15 
GeneralRe: Using mshtml to parse a html document in C# works very slow - Why ? Pin
Judah Gabriel Himango30-Dec-05 6:36
sponsorJudah Gabriel Himango30-Dec-05 6:36 
GeneralRe: Using mshtml to parse a html document in C# works very slow - Why ? Pin
DimaC30-Dec-05 7:16
DimaC30-Dec-05 7:16 
GeneralRe: Using mshtml to parse a html document in C# works very slow - Why ? Pin
DimaC29-Dec-05 11:55
DimaC29-Dec-05 11:55 
QuestionMS Outllok Database Connection Pin
ArjoGupta29-Dec-05 2:08
ArjoGupta29-Dec-05 2:08 
AnswerRe: MS Outllok Database Connection Pin
Judah Gabriel Himango29-Dec-05 4:45
sponsorJudah Gabriel Himango29-Dec-05 4:45 
Questionhelp in creating a xml Pin
dhol29-Dec-05 1:53
dhol29-Dec-05 1:53 
I have did a program such that , i will have two text box name and age in my form..and a button..so that when the values entered r in the text box..a xml file is created with those data...
and my coding is as follows.

Inside the burtton click, th e coding is as follows

//create a dataset
DataSet dataSet = new DataSet();
//read the schema
dataSet.ReadXmlSchema("d:\\Menu.xsd");
//create a new row
DataRow newrow;
newrow = dataSet.Tables[0].NewRow();
//enter the values
newrow[0] = Convert.ToInt32(txtName.Text);
newrow[1] = Convert.ToInt32(txtAge.Text);
//add the row to the dataset
dataSet.Tables[0].Rows.Add(newrow);
//write the data to a xml file
dataSet.WriteXml("D:\\myData.xml", XmlWriteMode.WriteSchema);
MessageBox.Show("saved");


Now i have one doubt..
ie, the program which i did ..now ..in the form...when i am giving data as
for
name: john
age:22...
now myData.xml wil be saved with those data ... Now if i am clearing those vaues in th textbox and adding some other data... that should be added without deleting the previous data... and also if i am entering again john..it should show that already it exists....
please say how to do this...

AnswerRe: help in creating a xml Pin
Judah Gabriel Himango29-Dec-05 4:42
sponsorJudah Gabriel Himango29-Dec-05 4:42 
GeneralRe: help in creating a xml Pin
dhol3-Jan-06 0:46
dhol3-Jan-06 0:46 
QuestionAborting a thead in ThreadPool Pin
munshisoft29-Dec-05 0:49
munshisoft29-Dec-05 0:49 
AnswerRe: Aborting a thead in ThreadPool Pin
S. Senthil Kumar29-Dec-05 2:42
S. Senthil Kumar29-Dec-05 2:42 
QuestionTo implement password rememberance in Windows application? Pin
MudkiSekhon28-Dec-05 23:40
MudkiSekhon28-Dec-05 23:40 
AnswerRe: To implement password rememberance in Windows application? Pin
Judah Gabriel Himango29-Dec-05 4:25
sponsorJudah Gabriel Himango29-Dec-05 4:25 
GeneralRe: To implement password rememberance in Windows application? Pin
MudkiSekhon29-Dec-05 20:57
MudkiSekhon29-Dec-05 20:57 
GeneralRe: To implement password rememberance in Windows application? Pin
Judah Gabriel Himango30-Dec-05 4:36
sponsorJudah Gabriel Himango30-Dec-05 4:36 
QuestionProblem in selected row after sorting in datagridview Pin
Mertli Ozgur Nevres28-Dec-05 23:01
Mertli Ozgur Nevres28-Dec-05 23:01 
AnswerRe: Problem in selected row after sorting in datagridview Pin
Judah Gabriel Himango29-Dec-05 4:27
sponsorJudah Gabriel Himango29-Dec-05 4:27 
GeneralRe: Problem in selected row after sorting in datagridview Pin
Mertli Ozgur Nevres30-Dec-05 4:02
Mertli Ozgur Nevres30-Dec-05 4:02 
GeneralRe: Problem in selected row after sorting in datagridview Pin
Judah Gabriel Himango30-Dec-05 4:31
sponsorJudah Gabriel Himango30-Dec-05 4:31 
QuestionFlickering during customized resizing of the form Pin
Saanya28-Dec-05 21:00
Saanya28-Dec-05 21:00 
AnswerRe: Flickering during customized resizing of the form Pin
Judah Gabriel Himango29-Dec-05 4:55
sponsorJudah Gabriel Himango29-Dec-05 4:55 
QuestionActive Directory Connection Pin
HolyGrandFather28-Dec-05 20:33
HolyGrandFather28-Dec-05 20:33 
AnswerRe: Active Directory Connection Pin
Judah Gabriel Himango29-Dec-05 4:29
sponsorJudah Gabriel Himango29-Dec-05 4:29 
QuestionCould someone please explain currencyManager to me Pin
kourvoisier28-Dec-05 20:22
kourvoisier28-Dec-05 20:22 

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.