compiling crystal reports files into app?

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

is it possible to compile a crystal reports report into an app then use it
as an embedded resource or something to run the report?
 
Yeah, it does this by default when you add a report document to a designer,
it creates a programmatic view of it.

Then again, you can store just about anything you want into a resource
stream.
 
well here'd be my question then, how do you pass values into report
parameters then in crystal reports that are embedded? right now i have a
parameter in the report named @journalentryid how would i set that from
inside vb?
 
Look into the Parameters collection of your report.

It's a lot like an IDataAdapter interface.
 
Back
Top