Search results

  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
  16. ___

    htmlhelp tags to email

    The simplest way is to use "mailto:" <a href="mailto:someone@somesite.com?subject=Mail from your Site">Email Us</a> but I personally would obfuscate the email address to stop harvesters.
  17. ___

    Selecting First 10 Records

    SELECT TOP 10 [YourTable].* FROM [YourTable];
  18. ___

    How to print running numbers from 1 to 10,000 on labels?

    Maybe I'm wrong, but I thought this forum was called 'sample databases', where people post examples and don't ask questions unless it's related to an example. :rolleyes:
  19. ___

    Is a backup system necessary when server is backed up daily?

    I believe compact on close would be sufficient
  20. ___

    Is a backup system necessary when server is backed up daily?

    Sorry, I've had no experience with accessworkbench Do they have access to build their own queries/reports? :eek: As you are linking to the backend tables, the database will only compact when the last person closes their db, and you'll probably end up with a large ammount of temp db's on each...
Top Bottom