VB Code:
  1. if data.Tables("ResolutionTable").Rows(iter).Item(1).ToString.CompareTo("0") Or _
  2. data.Tables("ResolutionTable").Rows(iter).item(1).ToString.CompareTo("") Or _
  3. [u]IsNothing(data.Tables("ResolutionTable").Rows(iter).Item(1).ToString)[/u] Then
The portion that I've underlined is where the error is occuring (as it is what is underlined in VS .NET.) The error message is:
Code:
Option Strict On disallows implicit conversions from 'Boolean' to 'Integer'.
Why is this happening?

I'd like to stick to using option strict, since it enforces good programming practices.