在visual c++.net2005写入程序遇到的问题
设置SqlDataAdptor类的对像名为UserName.属性SelectCommand->CommandText设为SELECT 用户编号, 部门, 姓名, 性别, 密码 FROM 用户清单 WHERE (用户编号 = @UserID) AND (姓名 = @UserName) AND (密码 = @Password) TextBox类的对象名为TBoxUserID.然后在写入语句
UserName->SelectCommand->Parameters->Item[0]->Value = TBoxUserID->Text;
编译时总是提示:"error C3293: “Item”: 使用“default”访问“System::Data::SqlClient::SqlParameterCollection”类的默认属性(索引器)"
这个总是苦恼了三天,请大家教教我.谢谢!!