2 questions

Roelant

Registered User.
Local time
Today, 20:01
Joined
Apr 2, 2002
Messages
36
1 :
Can i change de text of a label or txt field in a report by code in de Report_Open? If yes how.

something like this :

Private Sub Report_Open(Cancel As Integer)

Me.TxtBoven = "testing"

End Sub
 
Make your change of the "OnFormat" event of the sectikon of the report conmtaining the label and text box you want

me!LabelName.Caption = "whatever you want"
me!txtbox = whatever
 
What happened to de second question ??
 

Users who are viewing this thread

Back
Top Bottom