|
-
Aug 15th, 2000, 11:02 AM
#1
Thread Starter
New Member
I wanna to send parameters to cristal report from VB. THere is method of [parameterfields] of cristal repoprt but how it will be used because the syntax which is told us in help of cristal report is not accepted by VB.
-
Aug 16th, 2000, 09:19 PM
#2
Junior Member
To pass parameters from vb to crystal you will need to create 2 empty formulas in the report eg startcode and endcode then use this code in the VB.
CrystalReport1.Formulas(0) = "startcode= " & txtStartCode.text
CrystalReport1.Formulas(1) = "endcode= " & txtEndCode.text
Also remove the parameters in the report.
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
|