M
mscertified
The query that feeds my report passes a character string of 2-byte numbers;
these must be moved into report heading controls. E.g.
String 010203040506 must become
01 02 03 04 05 06
The heading controls are named H1 thru H30
To do this, I attempted to use EVAL("H" & i) = xx
in a loop, varying i, but this does not seem to work.
Is there another way other than hardcoding each 30 moves in an IF ..ELSE.
The other catch is I need to make the controls invisible if they are not
filled, i.e. if only 20 numbers are passed, I need to make the last 10
controls invisible.
Any help appreciated.
these must be moved into report heading controls. E.g.
String 010203040506 must become
01 02 03 04 05 06
The heading controls are named H1 thru H30
To do this, I attempted to use EVAL("H" & i) = xx
in a loop, varying i, but this does not seem to work.
Is there another way other than hardcoding each 30 moves in an IF ..ELSE.
The other catch is I need to make the controls invisible if they are not
filled, i.e. if only 20 numbers are passed, I need to make the last 10
controls invisible.
Any help appreciated.