次のスクリプトで Messagebox 関数に関連する定数を使用するには、ファイル LSCONST.LSS をインクルードする必要があります。
%INCLUDE "lsconst.lss"
Sub Queryclose(Source As Notesuidocument, _
Continue As Variant)
Dim answer As Integer
answer = Messagebox _
( "Do you want to exit this document?", _
MB_YESNO, "Document" )
If ( answer = IDNO ) Then
continue = False
End If
End Sub
次のスクリプトで Messagebox 関数に関連する定数を使用するには、ファイル LSCONST.LSS をインクルードする必要があります。
%INCLUDE "lsconst.lss"
Sub Queryclose(Source As Notesuidocument, Continue As Variant)
Dim answer As Integer
If source.EditMode Then
answer = Messagebox _
("Do you want to mail this doc?", MB_YESNO, "Mail" )
If ( answer = IDYES ) Then
Call source.Send
End If
End If
End Sub