Option Strict On disallows implicit conversions from '<type1>' to '<type2>'; the Visual Basic 6.0 collection type is not compatible with the .NET Framework collection type
Option Strict On disallows implicit conversions from '<type1>' to '<type2>'; the Visual Basic 6.0 collection type is not compatible with the .NET Framework collection type.
The collection object that is used in Visual Basic 6.0 differs from the collection object that is used in Visual Studio 2008.
Error ID: BC30753
To correct this error
- Explicitly convert collection objects by using one of the type conversion keywords. The CType Function and DirectCast keywords throw a run-time exception if the conversion fails. The TryCast keyword returns Nothing (Visual Basic) if the conversion fails.