Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want to alter a form's ControlBox property setting at run time

Status
Not open for further replies.

jboo

Programmer
Jan 4, 2001
12
GB
Is it possible?
 
I don't see why not... why not try it yourself?

there is a couple build in functions for forms like:

Private Sub UserForm_Initialize()
End Sub

and

Public Sub UserForm_Activate()
End Sub

you could modify the forms property in these methods. They will get run either when the form is first initalized or everytime it gets activated.

gl!!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top