|
▼こぼ さん:
こんばんは。
久々のワード質問箱です。
>ワード文章のバッテンボタンがクリックされた時にその処理を無効にする場合
>どのように記述すればよいのでしょうか?
>
>Private Sub Document_Close()
> ????
>End Sub
Thisdocumentのモジュールに
'========================================
Dim WithEvents app As Application
'========================================
Sub stt_kanshi()
Set app = Application
End Sub
'==================================================================
Private Sub app_DocumentBeforeClose(ByVal Doc As Document, Cancel As Boolean)
If Doc Is ThisDocument Then
msgbox "閉じないよ"
Cancel = True
End If
End Sub
として、stt_kanshiを一度、実行した後、試してみて下さい。
|
|