I am developing an application in VS studio, VB, using access 07. I have a datagridview with a view by date datetimepicker. I have this query created in dataset designer which does not work
I load it by this command
I do not what goes wrong as I am using this method to filter my data throughout my program and only here I find problems. Thank you for you time
VB.NET:
SELECT s.ServiceID, c.CustName, c.Surname, s.CustomerID, s.SupplierID, s.ServiceName, s.Company, s.Service, s.Description, s.Solution, s.Parts, s.StartDate,
s.EndDate, s.Technicians, s.Completed, s.TimeTaken, s.Dismiss, s.ToSale, s.TimeScheduled, s.Model, s.Serial, s.Peripherals, s.UserID, s.LastEditBy
FROM (Services s LEFT OUTER JOIN
Customer c ON s.CustomerID = c.CustomerID)
WHERE (s.StartDate = ?)
I load it by this command
VB.NET:
Me.AllServicesTableAdapter.testdate(Me.Database2DataSet.AllServices, (Me.DateTimePicker1.Value))
I do not what goes wrong as I am using this method to filter my data throughout my program and only here I find problems. Thank you for you time