Search Results

1
vote

Windows Forms Layout Engines

You can always check out DevExpress Layout Control. It's not free but it is an eye opener. …
-1
votes

Will you use Delphi Prism

Since Delphi is always catching up on .Net, I don't see any valid reason for using it, besides not being a MS product. There is already a good language for .Net that has everything in it th …
1
vote

VS2008 C# Exceptions with methods invoked by reflection

Are you using a debug version of the assembly? If not, the debugger cannot locate the source of the exception. …
0
votes

Homework: A Logic bug in my C# code, What Should I do …?

Another problem seems to lie in the fact that you don't initialize familybonus when you say familybonus += 300. So everytime you call GetFamilybonus it's added to the previous result. You call it t …
1
vote

C# BackgroundWorker Thread Problem

It's up to the workerthreads code to check the CancellationPending property. The code that is executed in between these checks will always be executed, causing a delay. In your remark you …