Click here to Skip to main content
15,890,609 members
Home / Discussions / C#
   

C#

 
GeneralRe: crystal reports question Pin
blankg26-May-04 21:46
blankg26-May-04 21:46 
GeneralDuplicate menus with checkboxes Pin
goldoche26-May-04 5:16
goldoche26-May-04 5:16 
GeneralRe: Duplicate menus with checkboxes Pin
Heath Stewart26-May-04 5:32
protectorHeath Stewart26-May-04 5:32 
GeneralFun with a datagrid Pin
Adam °Wimsatt26-May-04 5:14
Adam °Wimsatt26-May-04 5:14 
GeneralRe: Fun with a datagrid Pin
DougW4826-May-04 5:23
DougW4826-May-04 5:23 
GeneralRe: Fun with a datagrid Pin
Adam °Wimsatt26-May-04 5:38
Adam °Wimsatt26-May-04 5:38 
GeneralDataadapter Updates Pin
MrJJKoolJ26-May-04 5:03
MrJJKoolJ26-May-04 5:03 
GeneralRe: Dataadapter Updates Pin
Heath Stewart26-May-04 5:13
protectorHeath Stewart26-May-04 5:13 
If you have all the command properties set to a valid command object, then the DataAdapter will only update existing rows, insert new rows, and delete removed rows. Make sure you do not call DataSet.AcceptChanges yourself, or the DataAdapter will not see any changes. You should also combine your INSERT statement with a SELECT statement (separated by a semi-colon) so that auto-filled fields are updated in the DataSet.

If you're marshaling the DataSet across remoting boundaries, you might consider calling DataSet.GetChanges and send only the DataSet containing those changes. You would then, of course, have to call DataSet.Merge to merge the changes. This is really only useful when you need to marshal the DataSet across remoting boundaries.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Dataadapter Updates Pin
MrJJKoolJ26-May-04 5:23
MrJJKoolJ26-May-04 5:23 
GeneralRe: Dataadapter Updates Pin
Heath Stewart26-May-04 5:26
protectorHeath Stewart26-May-04 5:26 
GeneralRe: Dataadapter Updates Pin
MrJJKoolJ26-May-04 5:36
MrJJKoolJ26-May-04 5:36 
GeneralRe: Dataadapter Updates Pin
Heath Stewart26-May-04 5:40
protectorHeath Stewart26-May-04 5:40 
GeneralRe: Dataadapter Updates Pin
MrJJKoolJ26-May-04 5:42
MrJJKoolJ26-May-04 5:42 
QuestionCrystal Report Bug?? Pin
DougW4826-May-04 4:36
DougW4826-May-04 4:36 
GeneralChr() function in c# Pin
RB@Emphasys26-May-04 4:35
RB@Emphasys26-May-04 4:35 
GeneralRe: Chr() function in c# Pin
Dave Kreskowiak26-May-04 4:51
mveDave Kreskowiak26-May-04 4:51 
GeneralRe: Chr() function in c# Pin
Heath Stewart26-May-04 5:08
protectorHeath Stewart26-May-04 5:08 
GeneralRe: Chr() function in c# Pin
Dave Kreskowiak26-May-04 5:23
mveDave Kreskowiak26-May-04 5:23 
GeneralRe: Chr() function in c# Pin
RB@Emphasys26-May-04 7:39
RB@Emphasys26-May-04 7:39 
GeneralRe: Using UCOMIPersistFile interface in C# Pin
Heath Stewart26-May-04 3:27
protectorHeath Stewart26-May-04 3:27 
GeneralEventLogs... Again Pin
Andy *M*26-May-04 0:12
Andy *M*26-May-04 0:12 
GeneralRe: EventLogs... Again Pin
Dave Kreskowiak26-May-04 2:28
mveDave Kreskowiak26-May-04 2:28 
GeneralRe: EventLogs... Again Pin
Andy *M*26-May-04 4:29
Andy *M*26-May-04 4:29 
GeneralRe: EventLogs... Again Pin
Dave Kreskowiak26-May-04 4:39
mveDave Kreskowiak26-May-04 4:39 
GeneralDelete a node in Xml Pin
Appelz25-May-04 23:43
Appelz25-May-04 23:43 

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.