gryps2/UI-code/T-054_OrderComment Loss Alert.txt
super.admin ae3f0ebf03 convert
2025-05-30 14:58:21 +02:00

16 lines
No EOL
950 B
Text

// コメントがオープンパラメータの時、初期化で消失チェック、アラート
OnInit()
{
//+------------------------------------------------------------------+
// コメント文字消失チェック
if (StringLen(_Comment) == 0)
{
Alert(WindowExpertName() + " OrderComment disappeared."
+ "\n" + "オーダーコメント消失");
SendNotification(WindowExpertName()
+ "\n" + "OrderComment disappeared."
+ "\n" + "オーダーコメント消失");
}
//+------------------------------------------------------------------+
}