Modify text box using VB code?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI,

In the detail section of a report can the size and location of a text box be
changed using VB code. I tried using the .Left properity and get an error.
I would like to modify the left side and the width of the box. Is this
possible?

Thanks,
 
Check the calendar reports at
http://www.invisibleinc.com/divFiles.cfm?divDivID=4. There are a couple
reports that modify the left and top properties to create a week-at-a-glance
type report.

When you get an error, please provide the error message, the code causing
the error message, and anything else that might seem pertinent such as
values of fields and/or memory variables.
 
Hi,

Here is the code, TotalColumn1 is a text box in the detail section:

TotalColumn1.Left = 50

The error is "Run time error 2101, The setting you entered isn't vaild for
this property"

Thanks,
 
Back
Top