H
Howard Glassman
How do I use the SET statement to refer to a programatically selected object.
dim r as report
dim c as control
set r = reports!myreport
mycontrol = "control_1"
set c = r.mycontrol
I get the error that mycontrol is not an object
dim r as report
dim c as control
set r = reports!myreport
mycontrol = "control_1"
set c = r.mycontrol
I get the error that mycontrol is not an object