Click here to Skip to main content
15,891,253 members

Comments by FZelle (Top 7 by date)

FZelle 12-Nov-12 9:33am View    
Reason for my vote of 2
Good start, bad end.
Against SqlInjections you don't download whole databases and do the select in code, but you use SqlParameters.
FZelle 18-Apr-12 7:31am View    
Reason for my vote of 2
While it might be neccessary to do such a thing, but unsafe is not needed here.
Use a StringBuilder
FZelle 15-Jan-12 17:23pm View    
Deleted
Why don't you use the widely accepted Dispose Pattern instead of creating your own names?
http://www.codeproject.com/KB/cs/idisposable.aspx
FZelle 27-Sep-11 5:41am View    
Deleted
Yes you are missing alot.
UI Elements normally function by sending windows messages and this only works in the main UI Thread.
And because of that MS has implemented a crossthreadexception whenever you do what you are doing.
But this topic is discussed in so many articles here that it is virtually impossible not to read about it.
FZelle 21-Sep-11 6:07am View    
Deleted
Reason for my vote of 1
This exactly how you shouldn't implement this.
ShowDialog and every UI Related task has to be done in the UI Thread.
It is the action that belongs in the seperate thread