Processing Gauges (OpenInsight Specific)
At 27 JAN 1999 04:32:40PM BMC wrote:
How do I get a "gas gauge" to display in a situation like this..
statuscode=Set_Status(0)
Call RLIST(SCmd,"5","","","")
If Get_Status(statuscode) Then
xmsg=statuscodeGosub ErrMsgGoto EndOfJobEnd
*
Loop
Readnext @ID else Eoj=1Until Eoj do
* would like gauge to display **Read ....EndRepeat
*
Any examples or guidance?
Thanks
At 28 JAN 1999 08:44AM akaplan@sprezzatura.com - [url=http://www.sprezzatura.com]Sprezzatura, Inc.[/url] wrote:
From the MSG_EQUATES Insert record:
* to display a gauge (percent bar), use the "G" type; sub-types are C (show
* cancel button) and Y (yield on each cycle):
*
* Def="
* Def=Processing Orders…"
* Def=GC"
* Def=OrderCnt
* MsgUp=Msg(@window, Def)
* for Order=1 to OrderCnt
* gosub ProcessOrder
* * update the gauge and check if cancel was pressed
* while Msg(@window, MsgUp, Order, MSGINSTUPDATE$)
* next Order
* Msg(@window, MsgUp) ;* take down the gauge
akaplan@sprezzatura.com
At 28 JAN 1999 10:29AM BMC wrote:
Thanks Aaron I will give it a whirl or should I say I'll gauge it.