請教小編,issessionFirstBar是否可以這樣寫?
if issessionFirstBar then value1=highD(0);value2 = 0;
或是應該要分成兩行
if issessionFirstBar then value1=highD(0);
if issessionFirstBar then value2 = 0;
thanks
請教小編,issessionFirstBar是否可以這樣寫?
if issessionFirstBar then value1=highD(0);value2 = 0;
或是應該要分成兩行
if issessionFirstBar then value1=highD(0);
if issessionFirstBar then value2 = 0;
thanks
https://xshelp.xq.com.tw/XSHelp/article?a=Begin_End
可以用begin end包起來
if issessionFirstBar then begin value1=highD(0); value2 = 0; end;
了解,謝謝你
3 評論