I'm connecting to Call Accounting database and attempting to create a front end for it. I have a front end in Access, but I'm using this opportunity to attempt some .NET programming.
The current issue I am having is with filtering. I can filter based on one source but when I attempt to use multiple sources in my filter it doesn't do anything.
Me.Callacct2BindingSource.Filter = ("trunk = '" & Me.Field2TextBox.Text & "'") And ("date = '" & Me.DateTimePicker1.Value.ToString("MM/dd") & "'")
*EDIT*
I was playing with some ideas and got it.
Me.Callacct2BindingSource.Filter = "trunk = '" & Me.Field2TextBox.Text & "'" & " and date = '" & Me.DateTimePicker1.Value.ToString("MM/dd") & "'"
The current issue I am having is with filtering. I can filter based on one source but when I attempt to use multiple sources in my filter it doesn't do anything.
Me.Callacct2BindingSource.Filter = ("trunk = '" & Me.Field2TextBox.Text & "'") And ("date = '" & Me.DateTimePicker1.Value.ToString("MM/dd") & "'")
*EDIT*
I was playing with some ideas and got it.
Me.Callacct2BindingSource.Filter = "trunk = '" & Me.Field2TextBox.Text & "'" & " and date = '" & Me.DateTimePicker1.Value.ToString("MM/dd") & "'"
