1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
-
|
|
!
-
|
-
|
!
-
|
|
!
-
|
|
|
|
|
|
|
|
!
| #ifndef __EX_DIALOG__
#undef dialog
#define global __EX_DIALOG__
#module ex_dialog
#define global IDOK 1 #define global IDCANCEL 2 #define global IDABORT 3 #define global IDRETRY 4 #define global IDIGNORE 5 #define global IDYES 6 #define global IDNO 7 #define ICON_NOICON 0 #define ICON_CRITICAL 16 #define ICON_QUESTION 32 #define ICON_EXCLAMATION 48 #define ICON_INFORMATION 64 #define TYPE_OKONLY 0
#define TYPE_OK_CANCEL 1
#define TYPE_ABORT_RETRY_IGNORE 2
#define TYPE_YES_NO_CANCEL 3
#define TYPE_YES_NO 4
#define TYPE_RETRY_CANCEL 5
#define DEFAULTBUTTON_1 0
#define DEFAULTBUTTON_2 256
#define DEFAULTBUTTON_3 512
#deffunc _dialog@ex_dialog str message, int type, str caption, int default_number, local com_res, local option
if ( type < 0 ) | ( 16 <= type ) {
dialog@hsp message, type, caption
return stat
}
if ( type \ 2 ) {
option = ICON_EXCLAMATION
} else {
option = ICON_INFORMATION
}
switch ( type / 2 )
case 1 : option |= TYPE_YES_NO : swbreak
case 2 : option |= TYPE_OK_CANCEL : swbreak
case 3 : option |= TYPE_YES_NO_CANCEL : swbreak
case 4 : option |= TYPE_ABORT_RETRY_IGNORE : swbreak
case 5 : option |= TYPE_RETRY_CANCEL : swbreak
default : option |= TYPE_OKONLY : swbreak
swend
switch default_number
case 2 : option |= DEFAULTBUTTON_3 : swbreak
case 1 : option |= DEFAULTBUTTON_2 : swbreak
default : option |= DEFAULTBUTTON_1 : swbreak
swend
newcom wsh_shell, "WScript.Shell"
comres com_res
mcall wsh_shell, "Popup", message, 0, caption, option
if stat {
dialog@hsp "COM呼び出しエラーが発生しました。アプリケーションを終了します。", 1 : end
}
delcom wsh_shell
return com_res
#define global dialog(%1,%2=0,%3="",%4=0) _dialog@ex_dialog %1,%2,%3,%4
#global
#endif
#if 0
mes {"各種ダイアログを表示します。戻り値statの値は、
1 :「OK」ボタンが押された
2 :「キャンセル」ボタンが押された
3 :「中止」ボタンが押された
4 :「再試行」ボタンが押された
5 :「無視」ボタンが押された
6 :「はい」ボタンが押された
7 :「いいえ」ボタンが押された
のようになります。
"}
dialog "「OK」のみを表示するダイアログです。", 0, "test"
mes "OK → " + stat
dialog "「はい」「いいえ」から選択するダイアログです。\n「いいえ」をデフォルトで選択しています。", 2, "test", 1
mes "はい・いいえ → " + stat
dialog "「OK」「キャンセル」から選択するダイアログです。", 4, "test"
mes "OK・キャンセル → " + stat
dialog "「はい」「いいえ」「キャンセル」から選択するダイアログです。\n「キャンセル」をデフォルトで選択しています。", 6, "test", 2
mes "はい・いいえ・キャンセル → " + stat
dialog "「中止」「再試行」「無視」から選択するダイアログです。", 8, "test"
mes "中止・再試行・無視 → " + stat
dialog "「再試行」「キャンセル」から選択するダイアログです。", 10, "test"
mes "再試行・キャンセル → " + stat
stop
#endif
|