Click here to Skip to main content
15,908,115 members
Home / Discussions / C#
   

C#

 
GeneralTab Control Pin
sreejith ss nair3-Aug-04 6:57
sreejith ss nair3-Aug-04 6:57 
GeneralC# call method from array Pin
[HUN]Slater3-Aug-04 5:55
[HUN]Slater3-Aug-04 5:55 
GeneralRe: C# call method from array Pin
Nick Parker3-Aug-04 8:29
protectorNick Parker3-Aug-04 8:29 
GeneralRe: C# call method from array Pin
[HUN]Slater3-Aug-04 23:18
[HUN]Slater3-Aug-04 23:18 
GeneralPHP Session value Pin
Alex Getman3-Aug-04 5:55
Alex Getman3-Aug-04 5:55 
GeneralRe: PHP Session value Pin
Nick Parker3-Aug-04 8:24
protectorNick Parker3-Aug-04 8:24 
GeneralFast: Implementing Per-pixel alpha image as background Pin
Stanimir_Stoyanov3-Aug-04 5:19
Stanimir_Stoyanov3-Aug-04 5:19 
GeneralRe: Fast: Implementing Per-pixel alpha image as background Pin
leppie3-Aug-04 6:39
leppie3-Aug-04 6:39 
GeneralRe: Fast: Implementing Per-pixel alpha image as background Pin
Nick Parker3-Aug-04 10:12
protectorNick Parker3-Aug-04 10:12 
QuestionSingleton instances survive garbage collection? Pin
mindfuck3-Aug-04 4:32
mindfuck3-Aug-04 4:32 
AnswerRe: Singleton instances survive garbage collection? Pin
leppie3-Aug-04 6:35
leppie3-Aug-04 6:35 
GeneralRe: Singleton instances survive garbage collection? Pin
mindfuck3-Aug-04 7:06
mindfuck3-Aug-04 7:06 
GeneralRe: Singleton instances survive garbage collection? Pin
leppie3-Aug-04 7:58
leppie3-Aug-04 7:58 
GeneralRe: Singleton instances survive garbage collection? Pin
mindfuck3-Aug-04 8:44
mindfuck3-Aug-04 8:44 
GeneralRe: Singleton instances survive garbage collection? Pin
Nick Parker3-Aug-04 8:36
protectorNick Parker3-Aug-04 8:36 
GeneralRe: Singleton instances survive garbage collection? Pin
mindfuck3-Aug-04 22:55
mindfuck3-Aug-04 22:55 
GeneralRe: Singleton instances survive garbage collection? Pin
Nick Parker4-Aug-04 3:18
protectorNick Parker4-Aug-04 3:18 
GeneralRe: Singleton instances survive garbage collection? Pin
Heath Stewart4-Aug-04 4:19
protectorHeath Stewart4-Aug-04 4:19 
GeneralCaching with static functions Pin
Cody Caillet3-Aug-04 4:10
sussCody Caillet3-Aug-04 4:10 
GeneralRe: Caching with static functions Pin
Nick Parker3-Aug-04 8:45
protectorNick Parker3-Aug-04 8:45 
GeneralMdiChildren memory release Pin
gena173-Aug-04 3:51
gena173-Aug-04 3:51 
GeneralRe: MdiChildren memory release Pin
Tom Larsen3-Aug-04 6:08
Tom Larsen3-Aug-04 6:08 
Especially for things like Graphics and Forms you really need to call Dispose on them. It is not sufficient to just "disconnect" them from the managed memory space because there are handles behind the objects.

Try this instead:

<br />
Form child = this.MdiChildren[i];<br />
this.MdiChildren[i] = null; // remove from array<br />
child.Dispose(); // destroy unmanaged resources<br />

GeneralRe: MdiChildren memory release Pin
gena173-Aug-04 20:47
gena173-Aug-04 20:47 
GeneralInsertng Flash MX in C#.net Pin
Mehbub3-Aug-04 3:15
Mehbub3-Aug-04 3:15 
GeneralRe: Insertng Flash MX in C#.net Pin
Nick Parker3-Aug-04 3:54
protectorNick Parker3-Aug-04 3:54 

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.