View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Jim Rech Jim Rech is offline
external usenet poster
 
Posts: 2,718
Default Userform close button

If you want to prevent a user from closing the userform via the "x" just use
sub UserForm_QueryClose:
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
If CloseMode = 0 Then Cancel = True
End Sub

CloseMode is 0 when a userform is manually closed and 1 when closed through
code like this:


Private Sub CommandButton1_Click()
Unload UserForm1
End Sub



--
Jim
"Les Stout" wrote in message
...
| hi all, is it possible to hide thew close button on a form ? If so how
| does one do it ?
|
| Les Stout
|
| *** Sent via Developersdex http://www.developersdex.com ***