Thanks Christian for reply. Could you please give me a sample of how to use Application.Forms collection for my purpose? Thank you.
al2006
Posts
-
How to manipulate Windows forms? -
How to manipulate Windows forms?Thank you for the inputs. If I would do the newform global, how then i can access and change individual forms properties? Does some one can give me a workable solution Thanks again.
-
How to manipulate Windows forms?I am using Visual Studio 2008 I thought it might help if I mention this info. Thanks
-
How to manipulate Windows forms?Hi , I’m doing a little experiment. I created procedures that can create new forms at run time. ------------------------------------------ Private Sub createForms() Dim i As Integer For i = 1 To 10 newform = New Form newform.Name = "Form_" + i.ToString newform.Show() Next End Sub ------------------------------------------ Now I want to move those forms on the screen, close them one by one, change size etc. I cant find the way to acces the forms that I just created. I tried using newform.Name property but it dosent work. Any suggestions??? Thanks