argument to a stored procedure
My understanding of your problem is that you want to run a stored procedure with a stringargument, isn't it?
If yes, U have 2 ways:
-> easy
cn.execute "exec Storedprocedurename '"& vbvar & "'"
that will execute e.g. the following SQL statement:
exec storedprocedurename 'blablabla'
(don't forget the single quotes!
-> annoy me
create a command object, an parameters collection in that command object, populate your argument and execute the command.
franckly, the easy is the best on my mind.
Hope that help.