B
BobF
I have a several check boxes in a form, if any of the
boxes are checked a hard coded value is put into an
associated text box:
If MONITOR.VALUE = TRUE THEN
MONITORCHARGE = 175.00
END IF
What I would like to be able to do is access a table
named "LU_CHARGES":
If MONITOR.VALUE = TRUE THEN
MONITORCHARGE = LU_CHARGES.MONITORCHARGE
END IF
Is there a way I can set these values into a Lookup Table
and automatically replace the values when these values are
updated?
boxes are checked a hard coded value is put into an
associated text box:
If MONITOR.VALUE = TRUE THEN
MONITORCHARGE = 175.00
END IF
What I would like to be able to do is access a table
named "LU_CHARGES":
If MONITOR.VALUE = TRUE THEN
MONITORCHARGE = LU_CHARGES.MONITORCHARGE
END IF
Is there a way I can set these values into a Lookup Table
and automatically replace the values when these values are
updated?