....rather than closing it? (Like the options in the "Window" menu). Thanks
D Dave Holmes Jun 22, 2004 #1 ....rather than closing it? (Like the options in the "Window" menu). Thanks
F fredg Jun 22, 2004 #2 ...rather than closing it? (Like the options in the "Window" menu). Thanks Click to expand... To hide a form you can make it not visible. From within the form: Me.Visible = False From outside the form: forms!FormName.Visible = False To un-hide it: forms!FormName.Visible = True
...rather than closing it? (Like the options in the "Window" menu). Thanks Click to expand... To hide a form you can make it not visible. From within the form: Me.Visible = False From outside the form: forms!FormName.Visible = False To un-hide it: forms!FormName.Visible = True
D Dirk Goldgar Jun 22, 2004 #3 Dave Holmes said: ...rather than closing it? (Like the options in the "Window" menu). Click to expand... Sure, by setting its Visible property. For example: Forrms!MyForm.Visible = False ' hide MyForm Forrms!MyForm.Visible = True ' show MyForm again
Dave Holmes said: ...rather than closing it? (Like the options in the "Window" menu). Click to expand... Sure, by setting its Visible property. For example: Forrms!MyForm.Visible = False ' hide MyForm Forrms!MyForm.Visible = True ' show MyForm again