Bring Window to Front not working .. also window won't close... need solution quick
Here is my code
plotobj = Bivariate( Y( :Name( "current" ) ), X( :Name( "time" ) ) );
plotobj << Bring Window to Front;
New Window( "Enter Number",
<<Modal,
<<Bring Window to Front,
Text Box("Number"),
variablebox = Number Edit Box( ttf, 10,
<<Set Function(
Function({this},
btn_ok << Click
)
)
),
btn_ok = Button Box( "OK",
entrie=variablebox << get;),
Button Box( "Cancel")
);
Close(plotobj);