Dear Experts,
For You it might be a very simple answer on the following question:
In the load of the form I make a cursor file:
wfg,
Filip Merlier
For You it might be a very simple answer on the following question:
In the load of the form I make a cursor file:
Code:
create cursor tmpclient;
( client C(8),;
order N(10,0),;
orderdate D(8),;
............
end C(1))
index on client [b]ascending[/b] tag client additive
This works
Why does the following thing doesn't
index on client [b]ascending[/b] + str(order,10,0) [b]descending[/b] tag client additive
wfg,
Filip Merlier