Hi list, is it possible to dynamicly create text boxes in an access report? thx frank
F Frank Mainzer Apr 20, 2004 #1 Hi list, is it possible to dynamicly create text boxes in an access report? thx frank
M Marshall Barton Apr 21, 2004 #2 Frank said: is it possible to dynamicly create text boxes in an access report? Click to expand... Control creation is a design time operation and should not be done in a running application. A better approach is to precreate some extra, invisible text boxes and just make them visible as needed when the report is run.
Frank said: is it possible to dynamicly create text boxes in an access report? Click to expand... Control creation is a design time operation and should not be done in a running application. A better approach is to precreate some extra, invisible text boxes and just make them visible as needed when the report is run.
D Duane Hookom Apr 21, 2004 #3 In addition to Marsh's comments, I would use the Print method of the report. Your code might look like Me.CurrentX = 200 Me.CurrentY = 100 Me.Print "I want you to see this text"
In addition to Marsh's comments, I would use the Print method of the report. Your code might look like Me.CurrentX = 200 Me.CurrentY = 100 Me.Print "I want you to see this text"