如何设置DataGridViewCell.选项严格为On的值
本文关键字:On 的值 选项 DataGridViewCell 何设置 设置 | 更新日期: 2023-09-27 18:12:04
如何测试DataGridViewCell。选项严格开启的值?
If DataGridViewCell.Value = "some value" then
给出错误:
Option Strict On disallows operands of type Object for operator '='. Use the 'Is' operator to test for object identity.
编辑:解决方案是:
If DataGridViewCell.Value.ToString = "some value" then
错误信息与您的代码片段不匹配,该错误不能由赋值生成。如果必须猜测,请使用ToString()方法:
If DataGridViewCell.Value.ToString() = "some value" Then
或者使用CStr()操作符,这更像vb。