: Does anyone know how to set a form to be a MDIChild ?
: I`ve created a MDI container and want to add child Forms to it
:
: Well, to do so, you have to write [formname].mdichild = true like:
: Dim [formname] as new [formname]
: [formname].mdichild = true
: [formname].show
:
: And of course, ill tell you how to make an list of open forms too
: [menuitem].mdilist = true
:
: To make the form run commands in an other form
: (Like change text or something), you write
: [formname2].[control].[command]()
:
: To make the main form change text after selecting form, you write
: if [formname].selected = true then
: me.text = [programname] + [formname].text
: End if
:
: Yours truly, JIHN