-
I have an application that requires a queue for each program that is running. The main program shells to the other processes. I want to create a form with a ListView for each process to access. How do I create the form and ListView during run time? I also thought I could have one form and multiple ListView controls for each process to access but I get compile errors when I try to make the ListView an array.
Any Suggestion?
-
To create a form at runtime, use:
Dim Newform as new form1
You can set a Listview in the form1 to get multiple forms with listviews.
-
try this:
:)
Code:
Dim frmNewForm As New frmBaseFrm
Load frmNewForm
frmNewForm.Show
frmNewForm.ListView1.Visible = True
ok ...