Default Avatar

Servitux

Servitux

About

Username
Servitux
Joined
Visits
0
Last Active
Roles
Members

Comments

  • This is not a solution for the problem, but... I recommend you to use the Connector Plugins included in FastReports instead ODBC connections. You can found this plugins in C:\Program Files (x86)\FastReports\FastReport.Net\Extras\Connections. Y…
  • Wesley wrote: » Wesley wrote: » Try this instead RegisterData: string DataSourceName = "your_datasource_name"; string SQLQuery = "Your new SQL Query"; TableDataSource table = (TableDataSource)report.GetDataSource(DataSourceName); table.Sele…
  • Try this instead RegisterData: string DataSourceName = "your_datasource_name"; string SQLQuery = "Your new SQL Query"; TableDataSource table = (TableDataSource)report.GetDataSource(DataSourceName); table.SelectCommand = SQLQuery; You can get…
  • Hello again. I found this solution trying this weekend, but I don't think it's the best solution. private string getValue(string DataSource, string SQL) { TableDataSource source = (TableDataSource)Report.GetDataSource(DataSource); DataConne…