How do I specify size (Decimal(18,9)) in the following code:
Code:
Dim cmd As ADODB.Command
Set cmd = New ADODB.Command
cmd.ActiveConnection = CurrentProject.Connection
cmd.CommandText = "strGetQuantity"
cmd.CommandType = adCmdStoredProc
cmd.parameters.append cmd.createparameter("@Quantity",adDecimal,adParamOutput, [red][b]???[/b][/red])
. . .