Click here to Skip to main content
15,881,172 members

Comments by MVSoftVM (Top 12 by date)

MVSoftVM 28-Sep-20 9:06am View    
Exactly... ok... I will try this BackgroundWorker version...
MVSoftVM 28-Sep-20 9:01am View    
Where is called `CountTotalMissingElements` ?
Probably in constructor, after `_missingElementsWorker.RunWorkerCompleted += MissingElementsCounted;` ?
MVSoftVM 25-Sep-20 15:25pm View    
Ok. That "interlock" made my day :D I made some research (I'm not so experimented programmer in C#) and I learned how to use Interlock.Add()!

Thank you Gerry!
MVSoftVM 25-Sep-20 14:02pm View    
Ok. I made this test. The console text I've copied to a csv and imported, sorted and compared in OpenOffice SCalc. Seems data is ok, but the result was different. Practically, `TotalMissingElements += result;` is not doing what it should! Why?
What I have to do in this case?
BTW: What means "interlock shared variables"? :)
MVSoftVM 12-Mar-20 6:22am View    
Maybe I have to make those custom properties of my dgv as public get-set properties with a default value and to be read from a settings file when form loads. I think this is the approach I have to follow.