Recent content by ulieq

  1. U

    #Div/0! error

    You may have null values in there. Set a default value to a number or 0 for a simple solution.
  2. U

    Multiple users on database at same time

    1. split database 2. give each a front end 3. make your most child tables have complex auto IDs or GUID
  3. U

    FileDialog Not Working in Access 2010

    This method only enters data into an unbound textbox. How do I save that textbox to the correct field?
  4. U

    FileDialog Not Working in Access 2010

    Nice. Next: How to use relative file paths FROM the datbase backend? ^_^ thanks!
  5. U

    FileDialog Not Working in Access 2010

    Thanks. I got that to work. Now how do I get that file path to be inserted into the text box?
  6. U

    FileDialog Not Working in Access 2010

    Actually, I got an error "Invalid Outside procedure"
  7. U

    FileDialog Not Working in Access 2010

    i still cannot get this to work. I use 32bit office 2010 and windows xp. I put the code under the onclick event of a button. Does the name of the button have to be changed to something?
  8. U

    FileDialog Not Working in Access 2010

    I would love detailed instructions in how to make this work. Copy and paste to module means nothing to me. Thanks.
  9. U

    File Attachments: Possible to limit attachment size?

    Does anyone know if it is possible to limit file attachment size or number?
  10. U

    Months between two dates

    To create an amortization table, I am trying to calculate the months between two dates, without the user having to enter any information. Mo2Exp: Round(((DateDiff("d",Date(),[a].[expire_date]))/30.5),0) This is the formula I've been using, but there is an issue with it: Because I am using...
  11. U

    Calculations with Access

    No, just make the default value $0.00.
  12. U

    Macro to delete database

    lol this is a great way to protect your files just in case you think your company will be firing you!
  13. U

    Validation rule with date and child table

    Date Parent LICENSE: L_ID, Duration (# of months), other stuff Child LICENSE_PERIOD, LP_ID, L_ID, Cost, Expire_Date Issue: I already have a double field index on LP_ID and Expire_date in the child so that a duplicate will not be posted but... How to: How to add an additional validation so that...
  14. U

    Table relationships question

    lookup in table vs. lookup in form, someone detail the difference if any.
  15. U

    Question Access 2010 Date() Problems

    Date() works. There is probably another issue going on.
Top Bottom