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

C#

 
GeneralRe: Launch an .exe from aspx page Pin
mikelb10-Jun-03 6:11
mikelb10-Jun-03 6:11 
GeneralRe: Launch an .exe from aspx page Pin
Paresh Gheewala9-Jun-03 13:24
Paresh Gheewala9-Jun-03 13:24 
GeneralRe: Launch an .exe from aspx page Pin
puzzlehacker9-Jun-03 15:38
puzzlehacker9-Jun-03 15:38 
GeneralRe: Launch an .exe from aspx page Pin
eggie510-Jun-03 4:50
eggie510-Jun-03 4:50 
GeneralGet Contant of a field in DataGrid with JavaScript. Pin
avsarm9-Jun-03 10:13
avsarm9-Jun-03 10:13 
GeneralAcceptChanges for DataRow Pin
DionChen9-Jun-03 8:34
DionChen9-Jun-03 8:34 
GeneralRe: AcceptChanges for DataRow Pin
Rocky Moore9-Jun-03 9:05
Rocky Moore9-Jun-03 9:05 
GeneralRe: AcceptChanges for DataRow Pin
krisp9-Jun-03 12:28
krisp9-Jun-03 12:28 
Here is what I have done in the past i think...

dsMain1.Tables["LMCables"].GetChanges( DataRowState.Deleted ).AcceptChangs();

or

foreach( DataRow row in dsMain1.Tables["LMCables"].GetChanges( DataRowState.Deleted ).Rows )
{
row.AcceptChanges();
}

I think those should work as well... I have no idea if that will cause your change collection problem, but the first way should not atleast. This is just off the top of my head.
GeneralRe: AcceptChanges for DataRow Pin
DionChen9-Jun-03 15:44
DionChen9-Jun-03 15:44 
GeneralRe: AcceptChanges for DataRow Pin
krisp9-Jun-03 16:15
krisp9-Jun-03 16:15 
QuestionExtracting subitems from a listview? Pin
Manster9-Jun-03 8:21
Manster9-Jun-03 8:21 
AnswerRe: Extracting subitems from a listview? Pin
shaunAustin9-Jun-03 9:04
shaunAustin9-Jun-03 9:04 
GeneralRe: Extracting subitems from a listview? Pin
Manster9-Jun-03 10:12
Manster9-Jun-03 10:12 
GeneralRe: Extracting subitems from a listview? Pin
shaunAustin9-Jun-03 12:54
shaunAustin9-Jun-03 12:54 
GeneralColorDialog Location Pin
patnsnaudy9-Jun-03 7:24
patnsnaudy9-Jun-03 7:24 
GeneralRe: ColorDialog Location Pin
Rocky Moore9-Jun-03 9:36
Rocky Moore9-Jun-03 9:36 
GeneralRe: ColorDialog Location Pin
patnsnaudy9-Jun-03 11:12
patnsnaudy9-Jun-03 11:12 
GeneralRe: ColorDialog Location Pin
Rocky Moore9-Jun-03 17:13
Rocky Moore9-Jun-03 17:13 
GeneralRe: ColorDialog Location Pin
patnsnaudy10-Jun-03 2:41
patnsnaudy10-Jun-03 2:41 
GeneralDeriving from System.Drawing.Image troubles... Pin
Mike Zinni9-Jun-03 7:22
Mike Zinni9-Jun-03 7:22 
GeneralRe: Deriving from System.Drawing.Image troubles... Pin
krisp9-Jun-03 12:22
krisp9-Jun-03 12:22 
Generalusing unmanaged c in c# Pin
Courtney Layne9-Jun-03 6:22
sussCourtney Layne9-Jun-03 6:22 
GeneralRe: using unmanaged c in c# Pin
Ranjan Banerji9-Jun-03 6:32
Ranjan Banerji9-Jun-03 6:32 
GeneralRe: using unmanaged c in c# Pin
Nathan Blomquist9-Jun-03 7:25
Nathan Blomquist9-Jun-03 7:25 
GeneralRe: using unmanaged c in c# Pin
clayne10-Jun-03 6:23
clayne10-Jun-03 6:23 

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.