Rotating dashboard
Rotating dashboard is always getting value of 1 for iCount and so not showing other subreports. Please help how can i increment the value of iCount by 1.
This is the code from Book.
Public Shared iCount As Integer
Public Function IncrementCount() As Integer
iCount = iCount + 1
Return iCount
End Function
|