Command Text Error Message
Hi,
You are getting this message because you havn't set your command text property for the command object. This property is used to set the SQL query for the command object. Which in turn gives you the result. For setting the command text property use this sample code.
CmdObject.CommandText="SQL Query"
|