redspanna
Well-known Member
- Joined
- Jul 27, 2005
- Messages
- 1,604
- Office Version
- 365
- Platform
- Windows
is it possible to disable or remove the msgbox 'x' close button by adapting my code below?
many thanks
Code:
Else: FinalisePrompt = MsgBox(vbCrLf & _
" This report has not yet been finalised and before" & vbCrLf & _
" continuing it must be done." & vbCrLf & vbCrLf & _
" Please click on the 'OK' button below" & vbCrLf & _
" to carry out the report finalisation. " & vbCrLf & " ", _
Buttons:=vbYes, Title:=" STOP! - Report has not yet been finalised! ")
If FinalisePrompt = vbOK Then
MsgBox ("yippppee")
many thanks