int MessageBox(string text=NULL, string caption=NULL, int flags=EMPTY)
The MessageBox function creates, displays, and operates message box. The message box contains an application-defined message and header, as well as a random combination of predefined icons and push buttons. If the function succeeds, the returned value is one of the MessageBox return codevalues.
MessageBox 関数は、メッセージ ボックスの作成、表示、処理をします。メッセージ ボックスには、定義済みのアイコンとプッシュ ボタンのランダムな組み合わせと、アプリケーションによって定義されたメッセージとヘッダーを含みます。もし、関数が正常終了した場合は、返される値はいずれかの MessageBox リターン コード値です。
The function cannot be called from custom indicators since they are executed within interface thread and may not decelerate it.
この関数は、インターフェース スレッド内で実行され、減速してはならないので、カスタム インディケータから呼び出すことはできません。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 4 5 6 | if(ObjectCreate("text_object", OBJ_TEXT, 0, D'2004.02.20 12:30', 1.0045)==false) { int ret=MessageBox(" ObjectCreate() function returned the "+GetLastError()+" error\nContinue?", "Question", MB_YESNO|MB_ICONQUESTION); if(ret==IDNO) return(false); } // continue |