Recent content by ___

  1. ___

    Boo! :p :D

    Boo! :p :D
  2. ___

    Paint area in a form?

    You could use a scanned image of each users signature and depending on who is logged in to the database, if they agree to sign the form, they could click on a checkbox (or something) and the image of the persons signature appears where needed. All the images should be stored outside the database...
  3. ___

    Paint area in a form?

    Take a look here
  4. ___

    Object Required Error

    Make sure you have a reference set for Microsoft DAO 3.6 Object library (or higher), and call the function from an event on the form.
  5. ___

    Get off my forum! :-D

    Get off my forum! :-D
  6. ___

    Reset PivotItems caption in VBA

    .Caption = "" Maybe? Something like this... For Each ctl In Me.Controls If TypeName(ctl) = "Label" Then ctl.Caption = "" End If Next ctl
  7. ___

    Did we miss a fight?

    Did we miss a fight?
  8. ___

    Not me :-D

    Not me :-D
  9. ___

    Story

    it returned in
  10. ___

    Formula Copying

    =sum($e$1:e1)
  11. ___

    A BIG Thanks

    Just a thought, it may have helped others too if your questions and their answers had been posted on the forum and not via PM´s
  12. ___

    List Box total values

    So it's not a multi-select listbox? Then a command button could be used in the detail line of the subform to open your other form at the selected line ID.
  13. ___

    List Box total values

    Use a subform rather than a listbox and put the Text boxes in the subform footer to calculate the relevant columns. You could format the subform to look just like a listbox if prefer that look.
  14. ___

    Run-time error 2046

    Try moving the DAO 3.6 Object Library higher up the list
  15. ___

    htmlhelp tags to email

    There are many websites that can do it for you :) Click Here
Top Bottom