0
As I should add the 'user' string, declared outside Crystal Report in c#, to filter the report in Crystal Report as per the image below. Or what’s the right way to do this in Crystal Report? Visual Studio Community 2017 ODBC Mysql.
0
As I should add the 'user' string, declared outside Crystal Report in c#, to filter the report in Crystal Report as per the image below. Or what’s the right way to do this in Crystal Report? Visual Studio Community 2017 ODBC Mysql.
Browser other questions tagged crystal-reports
You are not signed in. Login or sign up in order to post.
User would be a parameter ?
– Motta
would be a "string" declared in c# I needed to make a filter with this string inside Crystal Report
– Malyster Snur
Pass by parameter and apply in selecting record.
– Motta
Could you tell me how to step a string, declared in c#, to parameter to be used inside the Crystal Report and filter.
– Malyster Snur
I’ve never worked with C# but in any language that integrates with CR you always have the option to pass parameter. On the record filter (report/form sel/record) call the meter
– Motta
pass by parameter ...select name from user Where code_user = 1 <= (parameter) Where code_user = %Jose% <= (parameter)
– Doan Casotti