MDI prob
-
:confused::confused:two things: 1) im making an app in which there is a form which is also a mdicontainer ....now...i need another control box kind of thing inside this form.this control box is basically an outcome of the data wizard..so its connected to oracle. also in the control box there is a button which when clicked opens up several other forms...now the prob is all these forms that get opened after clicking the button should be children of the main MDI form. how should i do that? in the button code..what i did was dim newform as new form2() ....[this is one of the many forms to be opened up after button down] newform.mdiparent = form1() ....[form1 is the main form] newform.show() now the error is that form is supposedly of type ??!?? so the code doesnt compile 2) how do i build this application and make it run on a system which doesnt have .NET installed?
-
:confused::confused:two things: 1) im making an app in which there is a form which is also a mdicontainer ....now...i need another control box kind of thing inside this form.this control box is basically an outcome of the data wizard..so its connected to oracle. also in the control box there is a button which when clicked opens up several other forms...now the prob is all these forms that get opened after clicking the button should be children of the main MDI form. how should i do that? in the button code..what i did was dim newform as new form2() ....[this is one of the many forms to be opened up after button down] newform.mdiparent = form1() ....[form1 is the main form] newform.show() now the error is that form is supposedly of type ??!?? so the code doesnt compile 2) how do i build this application and make it run on a system which doesnt have .NET installed?