Click here to Skip to main content
15,891,864 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: How to new a PictureBox...?? Pin
Peter Reiter17-Apr-04 22:53
Peter Reiter17-Apr-04 22:53 
GeneralRe: How to new a PictureBox...?? Pin
Fade (Amit BS)18-Apr-04 2:21
Fade (Amit BS)18-Apr-04 2:21 
GeneralVisual Studio. Net Help Please !!! Pin
mattymc17-Apr-04 17:32
mattymc17-Apr-04 17:32 
GeneralRe: Visual Studio. Net Help Please !!! Pin
Fade (Amit BS)18-Apr-04 3:31
Fade (Amit BS)18-Apr-04 3:31 
Question.Net Version Problem..???? Pin
Renjith Ramachandran17-Apr-04 9:05
Renjith Ramachandran17-Apr-04 9:05 
AnswerRe: .Net Version Problem..???? Pin
Sarvesvara (BVKS) Dasa17-Apr-04 18:08
Sarvesvara (BVKS) Dasa17-Apr-04 18:08 
GeneralHANDLE in .net Pin
Paolo Ponzano17-Apr-04 1:49
Paolo Ponzano17-Apr-04 1:49 
GeneralRe: HANDLE in .net Pin
Mike Dimmick18-Apr-04 2:13
Mike Dimmick18-Apr-04 2:13 
Use System.IntPtr. Use IntPtr.Zero where you would pass a NULL.

A common pattern is to wrap the HANDLE with a simple wrapper class that implements the IDisposable interface and has a finalizer (the ~ClassName function in C#, or an override of Finalize in VB.NET) which calls Dispose. Inside your override of Dispose you should suppress the finalizer using GC.SuppressFinalize (this allows the object's memory to be freed earlier if Dispose is called explicitly) then call whatever function frees the HANDLE.

Stability. What an interesting concept. -- Chris Maunder
GeneralChecking for Installed Component Pin
swcrissman16-Apr-04 11:13
swcrissman16-Apr-04 11:13 
GeneralDynamicly creating excel file and sending to client Pin
c++guy16-Apr-04 10:51
c++guy16-Apr-04 10:51 
GeneralRe: Dynamicly creating excel file and sending to client Pin
Steven Campbell16-Apr-04 14:57
Steven Campbell16-Apr-04 14:57 
QuestionIs it possible? Pin
MDem16-Apr-04 8:36
MDem16-Apr-04 8:36 
AnswerRe: Is it possible? Pin
Charlie Williams16-Apr-04 10:54
Charlie Williams16-Apr-04 10:54 
AnswerRe: Is it possible? Pin
Renjith Ramachandran17-Apr-04 16:30
Renjith Ramachandran17-Apr-04 16:30 
GeneralServer GC vs. Workstation GC Pin
jqd200115-Apr-04 9:08
jqd200115-Apr-04 9:08 
GeneralRe: Server GC vs. Workstation GC Pin
Mike Dimmick15-Apr-04 9:24
Mike Dimmick15-Apr-04 9:24 
GeneralRe: Server GC vs. Workstation GC Pin
jqd200115-Apr-04 9:55
jqd200115-Apr-04 9:55 
GeneralSending a custom message to .NET Pin
MarkSPA15-Apr-04 7:41
MarkSPA15-Apr-04 7:41 
Generalsetup project Pin
Dpriya15-Apr-04 3:01
Dpriya15-Apr-04 3:01 
Generalconvert unicode to ascii Pin
eranas14-Apr-04 6:58
eranas14-Apr-04 6:58 
GeneralRe: convert unicode to ascii Pin
Steven Campbell14-Apr-04 14:22
Steven Campbell14-Apr-04 14:22 
Generalascii to unicode Pin
Maverick14-Apr-04 18:43
Maverick14-Apr-04 18:43 
GeneralRe: ascii to unicode Pin
Steven Campbell15-Apr-04 2:44
Steven Campbell15-Apr-04 2:44 
GeneralRe: ascii to unicode Pin
Maverick18-Apr-04 20:25
Maverick18-Apr-04 20:25 
GeneralRe: convert unicode to ascii Pin
eranas14-Apr-04 20:26
eranas14-Apr-04 20:26 

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.