I add a Crystal Report in my vb project. I'd like to get the records number from it. But it shows nothing in the MsgBox. I don't know what I should do? Below is my code:
VB Code:
  1. Option Explicit
  2.  
  3. Dim report1 As New CrystalReport1
  4.  
  5. Private Sub Form_Load()
  6.    
  7.     MsgBox report1.Field9.Value
  8.  
  9. End Sub
Please help me if you have any idea? Thanks in advance!