Hi guys,
i am trying to implement a UIMsgBox in a Backgroundtask which should pop up while a signal condition is given.
If the condition is given the robot is waiting for acknowledge the UIMsgBox. is there a way to erase this?
PROC main()
VAR String DreiCon_Logo:=“/hd0a/3con.png”;
WHILE do_0058_3CS_Rob_in_Main=1 DO
UIMsgBox
\Header:=“3CON”,
" ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - !"
\MsgLine2:=" ! !"
\MsgLine3:=" ! ROBOT IS IN MAIN !"
\MsgLine4:=" ! !"
\MsgLine5:=" ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - !"
\Buttons:=btnNone
\Icon:=iconInfo
\image:=DreiCon_Logo
ENDWHILE
TPErase;
WaitTime 0.2;
ENDPROC