use a variable to hold your query value from the DTPicker:

Code:
strDate = CStr(DTPicker1.Day) & "/" & CStr(DTPicker1.Month) & "/" & CStr(DTPicker1.Year)
Then just use the strDate in your query string that you pass to SQL Server:

Code:
strSQL = "Select * From table Where datefield='" & strDate & "'"