Search results

  1. B

    Main Report Sub Report

    If you want to repeat the header which shows on the first page, that is, it is part of the main report, set report header visible no, and transfer / copy the contents to Page Header. You will need to open / expand page header by dragging the bottom edge. Set this visible yes. Chris B
  2. B

    automatic changing date

    The creation date of the record is best done at the table level using Now() as mentioned above as the default value of the column you establish for the purpose. Chris B
  3. B

    Specify path to file with UNC

    Password is optional - just showing where it would go if required. This is not an access password, rather one which might be required to permit the drive to be mapped. You said users would map random drive letters, that's fine, but this would map the location of your check file so Access could...
  4. B

    Specify path to file with UNC

    Map the drive yourself first with your macro using RunApp. Just put the following in the command line - net use F: \\ServerName\SYS\ /user:someone password /persistent:no If it is already mapped, it does nothing. Chris B
  5. B

    Numeric to english text in excel

    There is a space in Brian's formula after the second Spellnumber which upsets it, remove that and it works as you asked. Chris B
  6. B

    Showing Last Updated Date

    I expressed it poorly. Which of the suggestions you might use would depend upon whether you wanted to capture just the creation date or any update. Ensure that no control / field is called Date. Chris B
  7. B

    Showing Last Updated Date

    Nextly (which isn't a word, but I like it) if you want to update the value when a record is changed, just add last_update = Now() to the after update event of the entry fields. Of course, the control needs to be on the form for this to work. Chris B
  8. B

    Showing Last Updated Date

    The way I show update is directly in the table. Create a date/time field called last_update with the default set to Now(). Now every new record added will be timestamped. You can of course view this on your form if required. No code required, simple. Chris B
  9. B

    Malicious Registry Key Value

    I suspect you may have some corruption in the system. The best method to restore XP to health is via a repair install. This will replace most of the registry but retain installed progs and data, however do of course back up anything critical first. Uninstall any virtual drive software first...
  10. B

    Error - "This expression is typed incorrectly, or it is too complex....

    Presumably clicking the switchboard opens the report which is based on the query which has the prompt criteria which is framed like this - Between [Enter start date] And [Enter end date]. If this is not the case, as Jean-Luc would say, make it so. Chris B
  11. B

    capitalize

    Bottom right corner of your taskbar. Hover mouse pointer over the date. Does the month have a capital? If it doesn't, the issue is in your regional settings. Chris B
  12. B

    max figure

    Indeed. So to avoid this and other unexpected results, if working with numbers, don't set the field type to text. Chris B
  13. B

    Paper Size from A4 to A3

    That would be a printer setting (Scale A4->A3). Chris B
  14. B

    capitalize

    =MonthName(Month([Your Date field])) Chris B
  15. B

    max figure

    Max(Column Of figures) will return the highest number. If the column contains 1 to 10, the result will be 10. Chris B
  16. B

    Hyperlink's # charactor disabled

    Try in inverted commas - "k:\data\someFile#ref02.doc" Chris B
  17. B

    Populate a form with text using macros

    OK. Moving right along - to produce a report, you must base it on a query or table. Have a look at this expanded version. I have based the report on the table but you should put a query in between. This will do for the demo though... Chris B
  18. B

    Weird Query Results

    No idea. Create a db which exhibits this behaviour, then zip and post it. Chris B
  19. B

    Populate a form with text using macros

    Is this what you had in mind? (Sample attached). Chris B
  20. B

    Populate a form with text using macros

    Button one - On click event - Event procedure - [Textbox1] = "We regret that we ....." Button two - etc. Chris B
Back
Top Bottom