ConHist.SPJOBClosedDataAsync(dtJobsClosed.Text) ' you need to do something like this: Dim d as DateTime = DateTime.Parse(dtJobsClosed.Text) ConHist.SPJOBClosedDataAsync(d)By the way, usually DatePicker controls expose the property named Date (or sometimes it is called Value), so you can also try
ConHist.SPJOBClosedDataAsync(dtJobsClosed.Date) ' or .Value, whichever applies to your control ConHist.SPJOBClosedDataAsync(dtJobsClosed.Value)
No one has followed this question yet.