S
Salza
I use the macro below to open a dialogue box for this instruction.
"The file will be saved with the new data
Click OK to continue. To stop, click CANCEL".
But the box is too wide. Can someone provide me a macro to correct
this.
Thank you.
Regards,
Salza
-------------------------------------------------
Option Explicit
Sub HU_simpan()
If MsgBox("The file will be saved with the new data. " _
&
"
Click OK to continue. To stop, click CANCEL. ", _
vbOKCancel) = vbCancel Then End
Application.Dialogs(xlDialogSaveAs).Show
End Sub
"The file will be saved with the new data
Click OK to continue. To stop, click CANCEL".
But the box is too wide. Can someone provide me a macro to correct
this.
Thank you.
Regards,
Salza
-------------------------------------------------
Option Explicit
Sub HU_simpan()
If MsgBox("The file will be saved with the new data. " _
&
"
Click OK to continue. To stop, click CANCEL. ", _
vbOKCancel) = vbCancel Then End
Application.Dialogs(xlDialogSaveAs).Show
End Sub