i have on SQL defined the terminos store procedure that has one parameter tipos.
on my VB 6 form i have 2 objects, a textbox ( Text1 ) and a Adodc (adodc1) i have the following command:
Adodc1.ConnectionString = "Provider=SQEDB.1;Integrated Security=SSPI;" & _
"Persist Security Info=False;Initial Catalog=data;Data Source=SERVIDOR4"
Adodc1.CommandType = adCmdStoredProc
Adodc1.RecordSource = "terminos;1"
Set Text1.DataSource = Adodc1
i get the message that the terminos sp does not has the value for the @tipos parameter, How can i specify the value of the parameter?
on my VB 6 form i have 2 objects, a textbox ( Text1 ) and a Adodc (adodc1) i have the following command:
Adodc1.ConnectionString = "Provider=SQEDB.1;Integrated Security=SSPI;" & _
"Persist Security Info=False;Initial Catalog=data;Data Source=SERVIDOR4"
Adodc1.CommandType = adCmdStoredProc
Adodc1.RecordSource = "terminos;1"
Set Text1.DataSource = Adodc1
i get the message that the terminos sp does not has the value for the @tipos parameter, How can i specify the value of the parameter?