|
秀まるお様、こんばんは。
β版での改変内容
>2009/03/04 V5.16β3
>バグ修正
>ShowNotifyWndで通知ウィンドウが出ている最中にtkinfo.dll
>を呼び出すと「ダイアログボックス表示中なので」のエラー
>になってしまうバグ修正。
試してみたのですが、まだエラーがでるようです。
エラーがでてそうな前後に"message文"をいれてみたら、エラーが
出ませんでした。
私の環境に何か不具合があって発生しているのでしょうか?。
//トライアルマクロ 1--------------
##i = 0 ;
loaddll "TKInfo.dll";
message "step" + str(##i) ; ##i = ##i + 1;
#n = dllfunc("ShowNotifyWnd","新着の通知", "トライアル1");
message "step" + str(##i) ; ##i = ##i + 1;
$$root_account = dllfuncstr("ExecAtMain", "CurrentAccount") ;
message "step" + str(##i) ; ##i = ##i + 1;
#n = dllfunc( "SelectFolder", "", "受信" );
message "step" + str(##i) ; ##i = ##i + 1;
freedll;
endmacro;
//トライアルマクロ 1終り--------------
・Error未発生
//トライアルマクロ 2--------------
##i = 0 ;
loaddll "TKInfo.dll";
#n = dllfunc("ShowNotifyWnd","新着の通知", "トライアル2");
message "\"ExecAtMain\", \"CurrentAccount\" pre" ;
$$root_account = dllfuncstr("ExecAtMain", "CurrentAccount") ;
message "\"ExecAtMain\", \"CurrentAccount\" post" ;
#n = dllfunc( "SelectFolder", "", "受信" );
freedll;
endmacro;
//トライアルマクロ 2終り--------------
・Error未発生
//トライアルマクロ 3--------------
##i = 0 ;
loaddll "TKInfo.dll";
#n = dllfunc("ShowNotifyWnd","新着の通知", "トライアル3");
$$root_account = dllfuncstr("ExecAtMain", "CurrentAccount") ;
#n = dllfunc("ExecAtMain", "SelectFolder", "", "受信" );
freedll;
endmacro;
//トライアルマクロ 3終り--------------
・Error発生
TKINFO.DL:ダイアログボックス表示中なので処理できません。
関数コード = 8
//トライアルマクロ 4--------------
##i = 0 ;
loaddll "TKInfo.dll";
#n = dllfunc("ShowNotifyWnd","新着の通知", "トライアル4");
$$root_account = dllfuncstr("CurrentAccount") ;
#n = dllfunc("SelectFolder", "", "受信" );
freedll;
endmacro;
//トライアルマクロ 4終り--------------
・Error発生
TKINFO.DL:ダイアログボックス表示中なので処理できません。
関数コード = 8
動作環境
OS:Windows XP Home
秀丸メール:Ver5.16Beta3
|
|