I tried that with still the same message.

Quote Originally Posted by thetimmer View Post
@WDate does not equal @Wdate

you need to match what the proc wants.
Also, please remember to use code tags when posting code
Code:
Using my Cmd As New SqlCommand("usp_MoveData"), SqlConn)
myCmd.Parameters.AddWithValue("@WDate", dtWorshipDate.Value)
SqlConn.Open()
Try
myCmd.ExecuteNonQuery()
Catch ex As Exception
MsgBox(ex.ToString)
EndTry
EndUsing