Click here to Skip to main content
15,891,033 members
Home / Discussions / C#
   

C#

 
GeneralRe: send Attachment Pin
Abdul Rahman Hamidy29-Dec-08 6:18
Abdul Rahman Hamidy29-Dec-08 6:18 
AnswerRe: send Attachment Pin
Scott Dorman29-Dec-08 6:01
professionalScott Dorman29-Dec-08 6:01 
GeneralRe: send Attachment Pin
Abdul Rahman Hamidy29-Dec-08 6:31
Abdul Rahman Hamidy29-Dec-08 6:31 
GeneralRe: send Attachment Pin
Scott Dorman29-Dec-08 6:36
professionalScott Dorman29-Dec-08 6:36 
GeneralRe: send Attachment Pin
Abdul Rahman Hamidy29-Dec-08 6:55
Abdul Rahman Hamidy29-Dec-08 6:55 
QuestionDelete a row from dataset using delete method??? Pin
SureshRocks29-Dec-08 2:10
SureshRocks29-Dec-08 2:10 
AnswerRe: Delete a row from dataset using delete method??? Pin
Giorgi Dalakishvili29-Dec-08 2:40
mentorGiorgi Dalakishvili29-Dec-08 2:40 
AnswerRe: Delete a row from dataset using delete method??? Pin
PC Player29-Dec-08 3:15
PC Player29-Dec-08 3:15 
Hi,

It seems to be you are trying to delete First Row (Rows[0]), Which you don't want. You have to get specific object of that row and then use Delete command. After that you can update by useing DataAdapter to make permenent delete underling Database. Here is a code which might Help.

foreach (Datarow dr in ds.tables[Customer].rows)
  {
    // Match condition for specific record
Dr.delete();
break;

}

da.update(ds);


Hope it will help
Thanks

Ali Zishan
London

GeneralRe: Delete a row from dataset using delete method??? Pin
SureshRocks29-Dec-08 19:41
SureshRocks29-Dec-08 19:41 
QuestionHow can I connect PC and WindowsMobile Phone use bluetooth? Pin
Liselsia29-Dec-08 2:04
Liselsia29-Dec-08 2:04 
AnswerRe: How can I connect PC and WindowsMobile Phone use bluetooth? Pin
Giorgi Dalakishvili29-Dec-08 2:39
mentorGiorgi Dalakishvili29-Dec-08 2:39 
QuestionIE7 restrict the browser to a single tab Pin
Sundar_R29-Dec-08 0:36
Sundar_R29-Dec-08 0:36 
AnswerRe: IE7 restrict the browser to a single tab Pin
Dave Kreskowiak29-Dec-08 2:02
mveDave Kreskowiak29-Dec-08 2:02 
GeneralRe: IE7 restrict the browser to a single tab Pin
Sundar_R29-Dec-08 18:36
Sundar_R29-Dec-08 18:36 
GeneralRe: IE7 restrict the browser to a single tab Pin
Dave Kreskowiak30-Dec-08 3:22
mveDave Kreskowiak30-Dec-08 3:22 
QuestionDatatable problem with updating value in C#.net Pin
sejal12329-Dec-08 0:26
sejal12329-Dec-08 0:26 
AnswerRe: Datatable problem with updating value in C#.net Pin
That's Aragon29-Dec-08 0:39
That's Aragon29-Dec-08 0:39 
GeneralRe: Datatable problem with updating value in C#.net Pin
sejal1231-Jan-09 23:37
sejal1231-Jan-09 23:37 
Questionstruct and array? Pin
dec8228-Dec-08 23:23
dec8228-Dec-08 23:23 
AnswerRe: struct and array? Pin
rah_sin28-Dec-08 23:27
professionalrah_sin28-Dec-08 23:27 
GeneralRe: struct and array? Pin
Guffa28-Dec-08 23:55
Guffa28-Dec-08 23:55 
AnswerRe: struct and array? Pin
Guffa28-Dec-08 23:53
Guffa28-Dec-08 23:53 
AnswerRe: struct and array? Pin
Brij29-Dec-08 0:27
mentorBrij29-Dec-08 0:27 
AnswerRe: struct and array? [modified] Pin
Lev Danielyan29-Dec-08 4:35
Lev Danielyan29-Dec-08 4:35 
GeneralRe: struct and array? Pin
Guffa29-Dec-08 10:28
Guffa29-Dec-08 10:28 

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.