Carbo
Carbo
About
- Username
- Carbo
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
I'll try to make a test case for you in the near future. Now I get the following error everytime when I switch to page 2 in the report preview and when the table rows AutoSize property is true. When the AutoSize property is false then the error d…
-
No it does not contain autoincrement fields. Anyway now I got it working by just taking the "eventID" field to the query as the first field so that the first field is always unique. (Little bit strange "feature" but I just need my report working …
-
The report works fine whenever the result does not contain these "duplicate rows". If I right click my datatable object in the designer and choose "View Data..." on the first time I get error message: "Failed to enable constraints. One or more r…
-
Another question: I get error "System.Data.ConstraintException: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. at System.Data.DataSet.FailedEnableConstraints()" In my query…
-
Thank you. AlexTZ wrote: » Hello, Try this way: TableDataSource ds = Report.GetDataSource("MyTable") as TableDataSource; if (ds != null) Â Â ds.SelectCommand = (string)Report.GetParameterValue("MyParam"); You can do it insid…