Reference this thread from yesterday.

I'm trying to write my first parametized INSERT query. I have an ADODB.Command oject defined as cn. However, I'm getting no intellisense listings for ComandText or Parameters, etc. A snippet of the code from the referenced thread is
VB Code:
  1. sSQL = "INSERT INTO movieInfo (title, actor, producer, comment) VALUES (?,?,?,?)
  2.  
  3. objCommand.CommandText = sSQL
  4. objCommand.CommandType = adCommandText
  5. objCommand.Parameters.Add objCommand.CreateParameter("title",advarchar,50, txtTitle.Text)
  6. objCommand.Parameters.Add objCommand.CreateParameter("actor",advarchar,50, txtactor.Text)
  7. objCommand.Parameters.Add objCommand.CreateParameter("producer",advarchar,50, txtproducer.Text)
  8. objCommand.Parameters.Add objCommand.CreateParameter("comment",advarchar,50, txtComment.Text)
  9.  
  10. objCommand.Execute
Although I can't find where objCommand is declared in that thread, I assumed it was as ADODB.Connection. If not, then what is it? What do I need for the .Parameters.Add and .CommandType, etc?