Click here to Skip to main content
15,879,326 members
Home / Discussions / C#
   

C#

 
AnswerRe: keydown event on minimized form ! Pin
Rajesh R Subramanian25-Jun-09 9:29
professionalRajesh R Subramanian25-Jun-09 9:29 
GeneralRe: keydown event on minimized form ! Pin
kubibay25-Jun-09 9:56
kubibay25-Jun-09 9:56 
GeneralRe: keydown event on minimized form ! Pin
Rajesh R Subramanian25-Jun-09 10:15
professionalRajesh R Subramanian25-Jun-09 10:15 
GeneralRe: keydown event on minimized form ! Pin
kubibay25-Jun-09 10:20
kubibay25-Jun-09 10:20 
GeneralRe: keydown event on minimized form ! Pin
EliottA25-Jun-09 10:25
EliottA25-Jun-09 10:25 
GeneralRe: keydown event on minimized form ! Pin
kubibay25-Jun-09 10:29
kubibay25-Jun-09 10:29 
Questionusing versus out of scope Pin
jackgeek25-Jun-09 8:03
jackgeek25-Jun-09 8:03 
AnswerRe: using versus out of scope Pin
harold aptroot25-Jun-09 8:14
harold aptroot25-Jun-09 8:14 
using can only be used on IDisposable implementing objects, and will call Dispose at the end. The other just quietly lets the object die. using can release the objects memory faster if the object would otherwise need to be finalized before collection (correct implementations of Dispose should call GC.SuppressFinalize)
It's usually best to use using whenever possible, especially on things like Streams and Bitmaps.



AnswerRe: using versus out of scope Pin
OriginalGriff25-Jun-09 8:20
mveOriginalGriff25-Jun-09 8:20 
GeneralRe: using versus out of scope Pin
Mirko198025-Jun-09 21:44
Mirko198025-Jun-09 21:44 
QuestionSerial Port synchronous read Pin
12425625-Jun-09 7:56
12425625-Jun-09 7:56 
Questiongui Pin
Alessio Granzotto25-Jun-09 7:34
Alessio Granzotto25-Jun-09 7:34 
AnswerRe: gui Pin
dan!sh 25-Jun-09 7:41
professional dan!sh 25-Jun-09 7:41 
AnswerRe: gui Pin
Arindam Sinha25-Jun-09 22:19
Arindam Sinha25-Jun-09 22:19 
GeneralRe: gui Pin
Alessio Granzotto25-Jun-09 22:27
Alessio Granzotto25-Jun-09 22:27 
QuestionHow to change dynamically Action property of SoapRpcMethodAttribute Attribute ? Pin
redius25-Jun-09 7:27
redius25-Jun-09 7:27 
QuestionWebbrowser Messagebox Dialogresult? Pin
f1ref1re25-Jun-09 6:05
f1ref1re25-Jun-09 6:05 
AnswerRe: Webbrowser Messagebox Dialogresult? Pin
Arindam Sinha25-Jun-09 21:57
Arindam Sinha25-Jun-09 21:57 
QuestionPrint a form Pin
Samb198525-Jun-09 5:59
Samb198525-Jun-09 5:59 
AnswerRe: Print a form Pin
musefan25-Jun-09 6:29
musefan25-Jun-09 6:29 
GeneralRe: Print a form Pin
Samb198525-Jun-09 6:42
Samb198525-Jun-09 6:42 
QuestionConverter converter = new Converter(delegate(int value) Pin
Angel Romero25-Jun-09 4:39
Angel Romero25-Jun-09 4:39 
QuestionRe: Converter converter = new Converter(delegate(int value) Pin
led mike25-Jun-09 4:41
led mike25-Jun-09 4:41 
AnswerRe: Converter converter = new Converter(delegate(int value) Pin
Angel Romero25-Jun-09 4:45
Angel Romero25-Jun-09 4:45 
GeneralRe: Converter converter = new Converter(delegate(int value) Pin
led mike25-Jun-09 4:51
led mike25-Jun-09 4:51 

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.