Click here to Skip to main content
15,891,951 members
Home / Discussions / C#
   

C#

 
AnswerRe: move ball in c# form with timer Pin
V.13-Apr-12 3:25
professionalV.13-Apr-12 3:25 
GeneralRe: move ball in c# form with timer Pin
saeedjaafari13-Apr-12 3:29
saeedjaafari13-Apr-12 3:29 
GeneralRe: move ball in c# form with timer Pin
V.13-Apr-12 3:33
professionalV.13-Apr-12 3:33 
GeneralRe: move ball in c# form with timer Pin
saeedjaafari13-Apr-12 3:45
saeedjaafari13-Apr-12 3:45 
GeneralRe: move ball in c# form with timer Pin
V.13-Apr-12 3:47
professionalV.13-Apr-12 3:47 
GeneralRe: move ball in c# form with timer Pin
saeedjaafari13-Apr-12 3:51
saeedjaafari13-Apr-12 3:51 
GeneralRe: move ball in c# form with timer Pin
V.13-Apr-12 3:57
professionalV.13-Apr-12 3:57 
GeneralRe: move ball in c# form with timer Pin
saeedjaafari13-Apr-12 4:04
saeedjaafari13-Apr-12 4:04 
GeneralRe: move ball in c# form with timer Pin
vishal ch surve13-Apr-12 22:31
vishal ch surve13-Apr-12 22:31 
GeneralRe: move ball in c# form with timer Pin
vishal ch surve13-Apr-12 22:34
vishal ch surve13-Apr-12 22:34 
AnswerRe: move ball in c# form with timer Pin
Luc Pattyn13-Apr-12 6:19
sitebuilderLuc Pattyn13-Apr-12 6:19 
GeneralRe: move ball in c# form with timer Pin
saeedjaafari13-Apr-12 6:54
saeedjaafari13-Apr-12 6:54 
QuestionHelp Pin
Amaan2313-Apr-12 2:43
Amaan2313-Apr-12 2:43 
AnswerRe: Help Pin
TenmanS1413-Apr-12 4:02
TenmanS1413-Apr-12 4:02 
GeneralRe: Help Pin
Amaan2313-Apr-12 4:59
Amaan2313-Apr-12 4:59 
Questionnew learner Pin
lawal olanrewaju Daniel13-Apr-12 2:19
lawal olanrewaju Daniel13-Apr-12 2:19 
AnswerRe: new learner Pin
Not Active13-Apr-12 2:28
mentorNot Active13-Apr-12 2:28 
AnswerRe: new learner Pin
V.13-Apr-12 2:32
professionalV.13-Apr-12 2:32 
AnswerRe: new learner Pin
BobJanova13-Apr-12 2:39
BobJanova13-Apr-12 2:39 
QuestionHow can we delegate an array Pin
Fred 3413-Apr-12 2:06
Fred 3413-Apr-12 2:06 
AnswerRe: How can we delegate an array Pin
V.13-Apr-12 2:31
professionalV.13-Apr-12 2:31 
GeneralRe: How can we delegate an array Pin
Fred 3413-Apr-12 3:44
Fred 3413-Apr-12 3:44 
GeneralRe: How can we delegate an array Pin
V.13-Apr-12 3:46
professionalV.13-Apr-12 3:46 
QuestionCorrectly Disposing of MDI Child Forms. Pin
cjb11013-Apr-12 0:29
cjb11013-Apr-12 0:29 
AnswerRe: Correctly Disposing of MDI Child Forms. Pin
BobJanova13-Apr-12 2:37
BobJanova13-Apr-12 2:37 
Dispose won't remove references that you've added (as fields of your form object). And yes, closing a form will generally immediately Dispose it as well, so this is probably not your problem.

My guess is you're storing frm in a collection somewhere, and not removing it when the form is closed. You can either ditch that collection entirely and use MdiChildren, or you need to add a close handler to remove subforms from any collections in your code.

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.