, : -
VS2010 // / /
MSBuild Project, ""
I had a similar error that did not appear in the error list, but with this parameter setting I saw: - error BC30452: The operator '=' is not defined for the types "System.Nullable (Of Integer)" and "Integer". from this statement: - If tqGDBChart.UserIsGroupAdmin (Userid, Groupid) = 0 Then "The user is not a group administrator for this group
It is easy to fix it with an intermediate variable.
Dim GroupAdminCount As Integer = tqGDBChart.UserIsGroupAdmin(Userid, Groupid)
If GroupAdminCount = 0 Then 'User is not a group admin for this group
source
share