symntax help

chrisleonard

Junior member
Messages
13
Likes
0
hi guys Why does this

cti = 1;
Plot4(low,"test",green);
ID = Text_New(D,T,L-range, "S:");
end else begin
noplot(4);
Value1 = Text_Delete(ID);
end;

Remove the text all together when the noplot command works perfectly, hope u can help
 
Hi Chris

One point of is that your code is a Conditional Branching statement . Such statements must always begin with "If" or "Once" otherwise the true/false condition will not be evaluated.

BPV
 
Top