Error message

  • Thread starter Thread starter Frank Situmorang
  • Start date Start date
F

Frank Situmorang

Hello, i hvae checked and nothing more worng with my VBA, but therror message
number 2455 said that I make en error reference to the property caption, this
is my VBA:
Private Sub Report_Open(Cancel As Integer)
On Error GoTo Err_Report_Open

Call FillReportLabels(Me.Name)

Exit_Report_Open:
Exit Sub

Err_Report_Open:
Select Case Err.Number
Case Else
Call ShowError(Err.Number, Err.Description, "Report_Daftar
Anggota menurut Golongan Umur." _
& "Report_Open")
Resume Exit_Report_Open
End Select
End Sub

Pls. help
 
please post the code of the FillReportLabels procedure which is called in
your posted code. it's likely that's where the error is.

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top