Click here to Skip to main content
15,881,424 members
Home / Discussions / C#
   

C#

 
QuestionHow to compare on DPFP.Template to another DPFP.Template Pin
Member 144684061-Oct-20 3:07
Member 144684061-Oct-20 3:07 
AnswerRe: How to compare on DPFP.Template to another DPFP.Template Pin
Gerry Schmitz1-Oct-20 4:49
mveGerry Schmitz1-Oct-20 4:49 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Member 144684061-Oct-20 8:39
Member 144684061-Oct-20 8:39 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Gerry Schmitz2-Oct-20 4:31
mveGerry Schmitz2-Oct-20 4:31 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Member 144684062-Oct-20 20:35
Member 144684062-Oct-20 20:35 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Gerry Schmitz3-Oct-20 3:11
mveGerry Schmitz3-Oct-20 3:11 
QuestionCopy DataTable into a Ms Access table Pin
Member 1464251030-Sep-20 21:31
Member 1464251030-Sep-20 21:31 
AnswerRe: Copy DataTable into a Ms Access table Pin
OriginalGriff30-Sep-20 21:59
mveOriginalGriff30-Sep-20 21:59 
There are no rows to update is probably why.
When you fill a DataTable the rows are not "changed", so updating the destination will not find any rows that have changed, so nothing gets added, changed, or deleted.

You would need to set the row "change" indicators with DataRow.SetAdded Method (System.Data) | Microsoft Docs[^] or DataRow.SetModified Method (System.Data) | Microsoft Docs[^] as appropriate before updating the destination.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!

GeneralRe: Copy DataTable into a Ms Access table Pin
Member 1464251030-Sep-20 22:15
Member 1464251030-Sep-20 22:15 
GeneralRe: Copy DataTable into a Ms Access table Pin
OriginalGriff30-Sep-20 23:06
mveOriginalGriff30-Sep-20 23:06 
AnswerRe: Copy DataTable into a Ms Access table Pin
Gerry Schmitz1-Oct-20 5:14
mveGerry Schmitz1-Oct-20 5:14 
Questionwant to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
shwetaliv23-Sep-20 2:12
shwetaliv23-Sep-20 2:12 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
OriginalGriff23-Sep-20 2:30
mveOriginalGriff23-Sep-20 2:30 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Dave Kreskowiak23-Sep-20 4:07
mveDave Kreskowiak23-Sep-20 4:07 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Victor Nijegorodov23-Sep-20 8:45
Victor Nijegorodov23-Sep-20 8:45 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Mycroft Holmes23-Sep-20 12:12
professionalMycroft Holmes23-Sep-20 12:12 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
GenJerDan24-Sep-20 21:37
GenJerDan24-Sep-20 21:37 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Mycroft Holmes25-Sep-20 12:21
professionalMycroft Holmes25-Sep-20 12:21 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Richard Andrew x6423-Sep-20 13:48
professionalRichard Andrew x6423-Sep-20 13:48 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
shwetaliv23-Sep-20 20:41
shwetaliv23-Sep-20 20:41 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Richard MacCutchan23-Sep-20 21:32
mveRichard MacCutchan23-Sep-20 21:32 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
OriginalGriff23-Sep-20 22:00
mveOriginalGriff23-Sep-20 22:00 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
shwetaliv23-Sep-20 23:50
shwetaliv23-Sep-20 23:50 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
OriginalGriff23-Sep-20 23:54
mveOriginalGriff23-Sep-20 23:54 
QuestionMessage Removed Pin
22-Sep-20 9:56
protectorNelek22-Sep-20 9:56 

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.