Click here to Skip to main content
15,886,362 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to get installed products on a system Pin
Luc Pattyn31-Jul-07 1:00
sitebuilderLuc Pattyn31-Jul-07 1:00 
GeneralRe: How to get installed products on a system Pin
Yosh_1-Aug-07 3:41
professionalYosh_1-Aug-07 3:41 
GeneralRe: How to get installed products on a system Pin
Luc Pattyn1-Aug-07 3:53
sitebuilderLuc Pattyn1-Aug-07 3:53 
QuestionProblem in mdi form Pin
deepaksringr31-Jul-07 0:21
deepaksringr31-Jul-07 0:21 
AnswerRe: Problem in mdi form Pin
Martin#31-Jul-07 0:44
Martin#31-Jul-07 0:44 
GeneralRe: Problem in mdi form Pin
deepaksringr31-Jul-07 0:58
deepaksringr31-Jul-07 0:58 
AnswerRe: Problem in mdi form Pin
Yosh_31-Jul-07 0:55
professionalYosh_31-Jul-07 0:55 
QuestionUpdate the dataset into database table Pin
chandragupta.k30-Jul-07 23:37
chandragupta.k30-Jul-07 23:37 
Hi all ,
I need to update the changes made on the dataset to database ,i wrote the following code but its getting updated to database ,please help me somebody

The code like this
Da=new SqlDataAdapter("SELECT * FROM MailsInQueueTest",sqlcon);
SqlCommandBuilder builder = new SqlCommandBuilder(Da);
sqlcon.Open();
Da.Fill(MailDataset);

foreach(DataRow dr in MailDataset.Tables[0].Rows)
{
if((Convert.ToInt16(dr[0]))==1)
{
dr.Delete();
}
}
MailDataset.AcceptChanges();
builder.GetUpdateCommand ();//.GetDeleteCommand();
Da.Update(MailDataset);

Thanks In Advance
Chandra Gupta
QuestionWPF Treeview with Checkboxes Pin
Johan Lombaard30-Jul-07 23:37
Johan Lombaard30-Jul-07 23:37 
QuestionStart a Windows Forms application from a Windows Service Pin
usermans30-Jul-07 23:30
usermans30-Jul-07 23:30 
AnswerRe: Start a Windows Forms application from a Windows Service Pin
Luc Pattyn30-Jul-07 23:45
sitebuilderLuc Pattyn30-Jul-07 23:45 
AnswerRe: Start a Windows Forms application from a Windows Service Pin
justintimberlake30-Jul-07 23:58
justintimberlake30-Jul-07 23:58 
GeneralRe: Start a Windows Forms application from a Windows Service Pin
usermans31-Jul-07 22:55
usermans31-Jul-07 22:55 
QuestionVideo to FLV with c#? Pin
jafingi30-Jul-07 22:56
jafingi30-Jul-07 22:56 
AnswerRe: Video to FLV with c#? Pin
ekynox30-Jul-07 23:09
ekynox30-Jul-07 23:09 
QuestionPOST method Pin
suck12330-Jul-07 22:39
suck12330-Jul-07 22:39 
AnswerRe: POST method Pin
Guffa31-Jul-07 0:23
Guffa31-Jul-07 0:23 
GeneralRe: POST method Pin
suck12331-Jul-07 12:17
suck12331-Jul-07 12:17 
AnswerRe: POST method Pin
Guffa31-Jul-07 22:40
Guffa31-Jul-07 22:40 
GeneralRe: POST method Pin
suck12331-Jul-07 23:22
suck12331-Jul-07 23:22 
AnswerRe: POST method Pin
Guffa1-Aug-07 0:31
Guffa1-Aug-07 0:31 
GeneralRe: POST method Pin
suck1231-Aug-07 1:00
suck1231-Aug-07 1:00 
AnswerRe: POST method Pin
Guffa1-Aug-07 4:36
Guffa1-Aug-07 4:36 
GeneralRe: POST method Pin
suck1231-Aug-07 9:08
suck1231-Aug-07 9:08 
AnswerRe: POST method Pin
Guffa1-Aug-07 11:54
Guffa1-Aug-07 11: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.