Hi,
I don't know why i am getting this error.
Please see my coding part, where i am facing this following error
Private pbat As New ADODB.Parameter
'in form load
With pbat
.Direction = adParamInput
.Type = adVarChar
.Size = 4
End With
'saving part
[B] pbat = Trim(Text1.Text) & "%"[/B] -here i faced the following error
How to rectify this error ?