S
Shadow
I have 2 questions and would be appreciated if somebody put me on the right
path.
I have to change the position of a textbox in a report for different
situations.
1-
The reports opens with a click on a button in a form:
DoCmd.OpenReport "rpt", acViewPreview
Reports!rpt.left=1250
The report opens, but the position of the textbox doesn't change.
2-
I've tried to change the position of the textbox in the report's open event:
Private Sub Report_Open(Cancel As Integer)
if Me.OpenArgs="EM" then UserID.Left = 1250
End Sub
In this case the left position of the textbox changes to 1250. but when I
close the report and check the property of the textbox in design view, the
left property shows as 1650.
any kind of help is much appreciated.
path.
I have to change the position of a textbox in a report for different
situations.
1-
The reports opens with a click on a button in a form:
DoCmd.OpenReport "rpt", acViewPreview
Reports!rpt.left=1250
The report opens, but the position of the textbox doesn't change.
2-
I've tried to change the position of the textbox in the report's open event:
Private Sub Report_Open(Cancel As Integer)
if Me.OpenArgs="EM" then UserID.Left = 1250
End Sub
In this case the left position of the textbox changes to 1250. but when I
close the report and check the property of the textbox in design view, the
left property shows as 1650.
any kind of help is much appreciated.