|
-
Dec 4th, 2001, 09:38 PM
#1
Thread Starter
New Member
-
Dec 4th, 2001, 10:29 PM
#2
Something like this:
Code:
Me.Sections("Section4").Controls("Label1").Caption = "This is a new caption"
Hope this helps,
-
Dec 4th, 2001, 11:17 PM
#3
Thread Starter
New Member
Thanks Negative0... You're certainly a Positive dude!
Q2: Is it possible to load a report without having to create a DataEnvironment - I mean to create a report with dumb values - with no DB connection or query, just to see a couple of labels and print it?
Thanks again!
Juba
-
Dec 4th, 2001, 11:20 PM
#4
Nope, The data report requires some sort of database link. You do not have to create a dataenviroment for it though. You can set the database through code.
Dim rs as new ADODB.Recordset
rs.open "SELECT * FROM TABLE",objConn,adOpenForwardOnly, adLockReadOnly
set Me.DataSource = RS
Hope this helps,
-
Dec 4th, 2001, 11:38 PM
#5
Thread Starter
New Member
Thanks man, It really helps!!! 
Best regards,
Juba
-
May 16th, 2013, 09:52 AM
#6
Registered User
Re: Dynamically Changing Report's Label Caption
is this also applicable to data report textboxes?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|