Search results

  1. S

    Suppressing printing of controls when control value is null

    Attemped. Unfortunately no luck.
  2. S

    Suppressing printing of controls when control value is null

    I am using the On Print Event Also attempted the IsNull (). The statement is below. No error, but doesn't supress either. Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) If IsNull(Me!PaymentID) Then Me!PaymentID.Visible = False Else...
  3. S

    Suppressing printing of controls when control value is null

    I am tryiing to solve the same issue; modify a report to supress printing when a specific control value is null. The statement below produces a Run-Time Error 424 Object Required messages. Any suggestions? Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) If Me!PaymentID...
Back
Top Bottom