dynamic creation of text boxes

F

Frank Mainzer

Hi list,

is it possible to dynamicly create text boxes in an access report?

thx

frank
 
M

Marshall Barton

Frank said:
is it possible to dynamicly create text boxes in an access report?


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

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"
 
Top