views:

234

answers:

1

hi

How to pass any text value from form to Crystal Report ?

ex: i need to pass "hellow" from Form1 to my Crystal Report , how to do it ?

(working in C#)

thank's in advance

+4  A: 

Create a parameter field in Crystal. You can set its value via the parameters collection at run-time.

Michael Itzoe
thank's for the help, can i get more detail's ?I dont know how to do it
Gold
You can create the parameter in Crystal from the Field Explorer; right-click on Parameter Fields then select New. The Crystal documentation can give you more info on creating the parameter.This should help you get started with the C# portion: http://msdn.microsoft.com/en-us/library/aa289936(VS.71).aspx
Michael Itzoe