MCA
KiX Supporter
   
Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
|
Dear,
Very important is that one statement is using on one line. In your situation:
code:
?"- 289-"+@time+"- @error @serror "? :check4availabledevice ?"- 290-"+@time+"- @error @serror "? $potentialdevicenameslist = "Y:","X:","W:","V:","U:", ?"- 291-"+@time+"- @error @serror "? "T:","S:","R:","Q:","P:","O:", ?"- 292-"+@time+"- @error @serror "? "N:","M:","L:","K:","J:","I:", ?"- 293-"+@time+"- @error @serror "? "H:","G:","F:","E:","D:"
is using four lines. Replace it with
code:
?"- 289-"+@time+"- @error @serror "? :check4availabledevice ?"- 290-"+@time+"- @error @serror "? $potentialdevicenameslist = "Y:","X:","W:","V:","U:", "T:","S:","R:","Q:","P:","O:", "N:","M:","L:","K:","J:","I:", "H:","G:","F:","E:","D:"
or
code:
?"- 289-"+@time+"- @error @serror "? :check4availabledevice ?"- 290-"+@time+"- @error @serror "? $potentialdevicenameslist = "Y:","X:","W:","V:","U:","T:","S:","R:","Q:","P:","O:","N:","M:","L:","K:","J:","I:","H:","G:","F:","E:","D:"
greetings.
|