|
-
May 19th, 2008, 06:59 AM
#1
Thread Starter
New Member
To Use Datareport Directly
Help me the method to print the contents in the form to DataReport without using DataEnvironment
-
May 19th, 2008, 08:04 AM
#2
Re: To Use Datareport Directly
-
May 19th, 2008, 10:54 AM
#3
Re: To Use Datareport Directly
You could just use the "PrintForm" method but if you want to use a DataReport then assign the values to the text boxes or labels at runtime.
Code:
Datareport1.Sections("ReportHeader").Controls.Item("lblCompany").Caption = frmMain!txtName.Text
Datareport1.Show
-
Nov 10th, 2009, 02:02 PM
#4
Member
Re: To Use Datareport Directly
I think he must use:
Code:
frmMain.txtName.Text
instead of:
Code:
frmMain!txtName.Text
Last edited by alMubarmij; Nov 10th, 2009 at 02:09 PM.
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
|