Ðề: Truyền tham số từ form vào query trong access project
Nếu text1 là số:
CurrentProject.Connection.Excecute "stored_procedure_name " & text1
Nếu text1 là chuỗi:
CurrentProject.Connection.Excecute "stored_procedure_name N'" & text1 & "'"
Nếu text1 là ngày:
CurrentProject.Connection.Excecute "stored_procedure_name CONVERT(datetime, " & text1 & ", 112)"