J
JimS
I have a subform with a caption. I have an ON Load procedure that executes
the following code:
Private Sub Form_Load()
Me.Filter = "[sessionid] = '" & strSessionID & "'"
Me.FilterOn = True
Me.Caption = "Transactions for " & strSessionID
Me.Refresh
End Sub
Immediate window says the caption changed. Form does not show the revised
caption when it returns from this code. It never changes. At least what I
think is the caption doesn't change. It appeared by default at the top left
of the form when I designed it.
What's up?
the following code:
Private Sub Form_Load()
Me.Filter = "[sessionid] = '" & strSessionID & "'"
Me.FilterOn = True
Me.Caption = "Transactions for " & strSessionID
Me.Refresh
End Sub
Immediate window says the caption changed. Form does not show the revised
caption when it returns from this code. It never changes. At least what I
think is the caption doesn't change. It appeared by default at the top left
of the form when I designed it.
What's up?