Search results

  1. L

    Access 2007 - Current Event

    I have similar problem under thread "On Format Event Not executed" May be there is some settings we have not done?
  2. L

    On Format Event not executed

    I have the Debug on "Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)" statement But when I run the report, the debug is not triggered?
  3. L

    On Format Event not executed

    Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If Me.PrintFlag Then Me.Chqamt.Visible = True Else Me.Chqamt.Visible = False End If MsgBox " Printing" End Sub There is no respond from msgbox statement
  4. L

    On Format Event not executed

    Hi I use the On Format event code if condition to hide fields from printing But the code is not executed? The report prints all the fields?
Back
Top Bottom