Expand the Height of a form if "Not Managed" selected
i need some ideas on expanding the height of a form when a comboBox item is
selected. I have the code to display the Items but cannot get the Height to
increase.
Here is what i have. Thanks
-mark
Private Sub cboSvctxt_Change()
If cboSvctxt.Value = "Not Managed" Then
Label12.Visible = True
Label13.Visible = True
txtHost.Visible = True
txtIP.Visible = True
ExpandForm 289
Else
End If
End Sub
|