B
Blacky
Hi
I'm trying to make a form that works like the form when you goto Tools ->
Options in VS.NET.
I have a ListView on the left hand side of form A with different items.
When double clicking on an Item, a different form, form B, will be displayed
next to the ListView. Excactly like the talked above form.
I'm creating a new form, form B, with all the controls needed. Then when
double clicking on an item, i do this...
clNewForm frmMaster = new clNewForm();
frmMaster.Owner = this;
frmMaster.Show();
This creates a new form, form B, that is not displayed with in the form,
form A, with the ListView.
But if I use frmMaster.ShowDialog()
It work perfectly, but I cannot use the ListView before closing frmMaster.
Can somebody plz help me?
Kind Regards
I'm trying to make a form that works like the form when you goto Tools ->
Options in VS.NET.
I have a ListView on the left hand side of form A with different items.
When double clicking on an Item, a different form, form B, will be displayed
next to the ListView. Excactly like the talked above form.
I'm creating a new form, form B, with all the controls needed. Then when
double clicking on an item, i do this...
clNewForm frmMaster = new clNewForm();
frmMaster.Owner = this;
frmMaster.Show();
This creates a new form, form B, that is not displayed with in the form,
form A, with the ListView.
But if I use frmMaster.ShowDialog()
It work perfectly, but I cannot use the ListView before closing frmMaster.
Can somebody plz help me?
Kind Regards