Recent content by DarkProdigy

  1. D

    Runtime error '2448'

    I really need some input on this guys If you could suggest anything, my deadline for this is coming up pretty quick and I'm lost on this
  2. D

    Runtime error '2448'

    Ok, so I have a Report that is filtered by several combo boxes on my main Form. What I want is to change the value of a text box on a sub report on the main Report. The sub report that this combo box is on is either visible or not visible depending on the selection in the combo box. I have this...
  3. D

    Optional Sub Reports

    I'm still having difficulty with part of the report. I tried putting that code in the "Filter" box of my subreport. It does affect my overall total text box which has the sub total box incorporated in it's sum but the change in the overall total is not the same as the sub total itself from this...
  4. D

    Optional Sub Reports

    Thanks for your reply JoeComputer, but I figured it out FINALLY!! What I had was the code on the On Open event of the sub report. So was I did was move this coding onto the On Open event of the main report and now it works wonderfully
  5. D

    Optional Sub Reports

    ok update I think I got the code right Private Sub Report_Open(Cancel As Integer) If Forms!frmInvoice!cboTankType = "Sour" Then rptCoating.Visible = True Else rptCoating.Visible = False End If End Sub but I get a "Run Time Error: 424" when it runs any suggestions?
  6. D

    Optional Sub Reports

    /bump anyone, anyone at all
  7. D

    Optional Sub Reports

    If anyone can help me with the syntax of this if statement that would be great. It's kind of a priority
  8. D

    Optional Sub Reports

    is the syntax for this correct? it seems to be having trouble compiling it :(
  9. D

    Optional Sub Reports

    I really need an answer to this guys or even if it's possible if anyone can help me
  10. D

    Optional Sub Reports

    I don't think this will work for me see, there are some subtotal text boxes on these subforms that contribute to a final total box on the main form if they are simply invisible, their totals would still appear in the final total would it not?
  11. D

    Optional Sub Reports

    Hey guys, I have a main report with several subreports on it that are filtered by a form with several combo boxes on it What I would like to do is have some of the sub reports only open on the main report depending on the input in the combo box ie.if the user chooses "Yes" from the 'Heated'...
  12. D

    Parameter Query

    it gives me "Compile error: Variable not defined" and highlights "viewtype"
  13. D

    Parameter Query

    hmmmm, it seems be having trouble with the "viewtype" variable
  14. D

    Parameter Query

    excellent thank you d00ku, I will see if I can work this out with what you've given me
  15. D

    Parameter Query

    ok so if I wanted it to go off something other than "yes" or "no" but to choose from 2 selections but I want it to run in a similar manner. how would I go about doing that?
Back
Top Bottom