Filtering

sslssl
edited 7:24PM in FastReport .NET
I am using a bindingsource filter to filter data in my Windows.Forms Application (Which works fine), I cant seem to carry the filtering across to the report.
Private Sub btnWeeklyOutline_Click(sender As Object, e As EventArgs) Handles btnWeeklyOutline.Click

        Me.TimesheetReportsTableAdapter.FillByDate(Me.myDBDataSet.timesheetReports, cmbStartYear.Text, cmbEndYear.Text, cmbStartWeek.Text, cmbEndWeek.Text, False, CSng(cmbStartYear.Text), CSng(cmbEndYear.Text), CShort(cmbStartWeek.Text), CShort(cmbEndWeek.Text))

        TimesheetReportsBindingSource.Filter = fnApplyFilter()

        rptWeeklyOutline.Load(fnGetDocumentsPath() & "\Reports\Timesheet\WeeklyOutline.frx")

        rptWeeklyOutline.Show()
    End Sub

Any thoughts

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.