PDA

Click to See Complete Forum and Search --> : Control Box Question


Zxurian
Dec 13th, 2000, 03:13 PM
I posted a message awhile back about how to disable the close button on the control box, and the replies were helpfuland they all worked. Thanks again.

Now I may be pushing the bucket here, but I'm wondering if there's a way to have the close button active, but not have the form unload when you press it. ie. just have it's visible property set to false. If its possible, could somebody give me some ideas on how to make this work?

Thanks in advance.

Arcom
Dec 13th, 2000, 05:07 PM
Put this code in the Form_QueryUnload event:

Cancel = True
Me.Visible = False

This will hide the form, but it will not unload it.

Chris
Dec 15th, 2000, 02:36 AM
Megatron, Where can I download the VBFEL library ?