Option Strict OnでDataGridViewCell.Valueをテストする方法は?
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