Click here to Skip to main content
15,900,724 members
Home / Discussions / C#
   

C#

 
AnswerRe: Concept of Thread.BeginCriticalRegion() Pin
Jimmanuel3-May-07 5:42
Jimmanuel3-May-07 5:42 
GeneralRe: Concept of Thread.BeginCriticalRegion() Pin
Sandeep Akhare3-May-07 19:55
Sandeep Akhare3-May-07 19:55 
GeneralRe: Concept of Thread.BeginCriticalRegion() Pin
Jimmanuel4-May-07 3:26
Jimmanuel4-May-07 3:26 
AnswerRe: Concept of Thread.BeginCriticalRegion() Pin
pbraun3-May-07 8:34
pbraun3-May-07 8:34 
GeneralRe: Concept of Thread.BeginCriticalRegion() Pin
Sandeep Akhare4-May-07 2:32
Sandeep Akhare4-May-07 2:32 
GeneralRe: Concept of Thread.BeginCriticalRegion() Pin
Stefan Prodan3-May-07 12:13
Stefan Prodan3-May-07 12:13 
AnswerRe: Encrtpy a DataTable/DataSet served by a WebService in VS2005/C# Pin
Andre Vianna4-May-07 4:16
Andre Vianna4-May-07 4:16 
QuestionProperties window - when are the properties used? Pin
microslav3-May-07 4:20
microslav3-May-07 4:20 
AnswerRe: Properties window - when are the properties used? Pin
Jon Hulatt3-May-07 4:38
Jon Hulatt3-May-07 4:38 
AnswerRe: Properties window - when are the properties used? Pin
PIEBALDconsult3-May-07 8:07
mvePIEBALDconsult3-May-07 8:07 
QuestionVista-izing my c# 2 app Pin
Jon Hulatt3-May-07 3:56
Jon Hulatt3-May-07 3:56 
AnswerRe: Vista-izing my c# 2 app Pin
Scott Dorman3-May-07 4:59
professionalScott Dorman3-May-07 4:59 
AnswerRe: Vista-izing my c# 2 app Pin
Daniel Grunwald3-May-07 8:35
Daniel Grunwald3-May-07 8:35 
QuestionCopy bitmap to OpenOffice writer via clipboard Pin
frozenpondlife3-May-07 3:28
frozenpondlife3-May-07 3:28 
QuestionCheck 2 rows in different tables Pin
Herman<T>.Instance3-May-07 3:07
Herman<T>.Instance3-May-07 3:07 
AnswerRe: Check 2 rows in different tables Pin
Arun.Immanuel3-May-07 3:28
Arun.Immanuel3-May-07 3:28 
GeneralRe: Check 2 rows in different tables Pin
Herman<T>.Instance3-May-07 23:22
Herman<T>.Instance3-May-07 23:22 
AnswerRe: Check 2 rows in different tables Pin
AFSEKI7-May-07 4:50
AFSEKI7-May-07 4:50 
Why do you want to check one table on "both" systems row by row? You then do and extra, non-logical row checkup for the rows on their own table Wink | ;) I assume you want to check if the rows of a table in databaseFirst exist in a table in databaseSecond.

1) Execute select * from 1st table and store the result in a DataTable
2) Execute select * from 2nd table and store the result in a DataTable
3) You should compare the values of each row manually or wrap the DataRow object in your own implementation where you override Object.Equals and Object.GetHashCode() methods where you compare specific values ( row[column1], row[column2]...e.t.c.)
4) For value types: != compares values BUT
For reference types like DataRow, it compares the reference (memory address) which is in your case always different because you are already comparing DataRows in different tables.

Hope this helps,

QuestionBad Request! Pin
Sabry19053-May-07 2:47
Sabry19053-May-07 2:47 
AnswerRe: Bad Request! Pin
Guffa3-May-07 3:42
Guffa3-May-07 3:42 
GeneralRe: Bad Request! Pin
Sabry19053-May-07 4:32
Sabry19053-May-07 4:32 
AnswerRe: Bad Request! Pin
Stefan Prodan3-May-07 12:22
Stefan Prodan3-May-07 12:22 
GeneralRe: Bad Request! Pin
Sabry19056-May-07 1:24
Sabry19056-May-07 1:24 
Questionintegrate help V2.0 into winforms app Pin
Giorgi Dalakishvili3-May-07 2:36
mentorGiorgi Dalakishvili3-May-07 2:36 
QuestionWindows Services Pin
Sumanta Rout3-May-07 2:28
Sumanta Rout3-May-07 2: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.