Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 509375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:00:16+00:00 2026-05-13T07:00:16+00:00

I need your help to clarify whether form work exactly like object? If I

  • 0

I need your help to clarify whether form work exactly like object?

If I create an object,obj2, from another object,obj1. the obj2 will be disposed on obj1 dispose.

However it is not so with forms.
check out the case & pseudo code give below.

I have three forms; form1, form2 & form2.

form1 is the startup form.
form1 will create &s how a form2 and from2 will create & show form3 using a button in each form.

if I close form2, after opening all the 3 forms, I am able to work in form1 and form3.

my question is even though form3 is created from form2, why it is not disposed on form2 close?

Form1


Public Class Form1
Private Sub cmdOpenForm2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdOpenForm2.Click
  Dim frm As New Form2
  With frm
   ''/.MdiParent = frmMain
   .Show()
   .BringToFront()
  End With
End Sub

 Private Sub Form1_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed
  ''//frmMain.tsStatus.Text = "Form1 disposed"
 End Sub
End Class

Form2


Public Class Form2
 Private Sub cmdRandomColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRandomColor.Click
  Randomize()
  Label1.ForeColor = Color.FromArgb(Rnd() * 255, Rnd() * 255, Rnd() * 255, Rnd() * 255)
 End Sub

 Private Sub Form2_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed
  frmMain.tsStatus.Text = "Form2 disposed"
 End Sub

 Private Sub cmdOpenForm3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdOpenForm3.Click
  Dim frm As New Form3
  With frm
   ''//.MdiParent = frmMain
   .Show()
   .BringToFront()
  End With
 End Sub
 End Class

Form3


Public Class Form3
 Private Sub cmdRandomColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRandomColor.Click
  Randomize()
  Label1.ForeColor = Color.FromArgb(Rnd() * 255, Rnd() * 255, Rnd() * 255, Rnd() * 255)
 End Sub

 Private Sub Form3_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed
  frmMain.tsStatus.Text = "Form3 disposed"
 End Sub
End Class

Any Help will be greatly appreciated.

EDIT
thank you all for the solution

Sorry to mention, I am not looking for a solution how to do dispose form3 on form2 close.

my interest is what is happening behind… Is there any possibility that form3 instance created from2 get GC collect and i get a memory error.

since i am getting protect memory access exception in my real application, which is not properly designed, and it too big to refactor now.

my question is where the form3 instance created? Is it in Form2 instance or somewhere else.
since i can able to access form3 instance after form2 disposed. i doubt it is created in somewhere else

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T07:00:16+00:00Added an answer on May 13, 2026 at 7:00 am

    The framework is still holding on to your form object, until it gets closed. You can get a reference to it using My.Application.OpenForms.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 375k
  • Answers 375k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Dug around a little bit longer. This library probably comes… May 14, 2026 at 8:09 pm
  • Editorial Team
    Editorial Team added an answer Running gem environment should give you a fair bit of… May 14, 2026 at 8:09 pm
  • Editorial Team
    Editorial Team added an answer To get around this one, I assembled an html form… May 14, 2026 at 8:09 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.