How to test for DataGridViewCell.Value with Option Strict On?

If DataGridViewCell.Value = "some value" then

Gives the error:

Option Strict On disallows operands of type Object for operator '='. Use the 'Is' operator to test for object identity.

EDIT:

The Solution is:

If DataGridViewCell.Value.ToString = "some value" then
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The error message doesn't match your code snippet, that error can't be generated by an assignment. Being forced to guess, use the ToString() method:

 If DataGridViewCell.Value.ToString() = "some value" Then

Or use the CStr() operator, that's more VB-ish.

link|improve this answer
Apologies - you absolutely correct - Friday Afternoon Brain Fart. I will edit my nonsentical question – Matt Wilko Oct 21 '11 at 15:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.