Search results

  1. M

    Field Returns No Data-Need to then Show as 0

    Check out the NZ() function
  2. M

    Form data not recorded into table

    Typically, if you can calculate a value there is no need to store it in the table. Just recalc when necessary
  3. M

    Prioritise and move values

    I believe that the sample I've posted in the SAmple Databases area might be of some help. http://www.access-programmers.co.uk/forums/showthread.php?t=103456
  4. M

    Every Other Page Blank!!

    I get that every so often.. Check the margins and set them smaller
  5. M

    Access problem encountered

    Have you tried to compile and see what errors you pickup? Try going into a form module since you get into a regular module
  6. M

    Transferring same data to a field in all records?

    The update query certainly does fix your problem. Please find attached a solution.
  7. M

    MS Access large text file

    With this many records you may well exceed the MaxLocksPerFile. You may want to reset this value from the default value of 20,000 ... maybe you should set it to around 200,000.
  8. M

    Transferring same data to a field in all records?

    just use an Update Query
  9. M

    Time Check

    You can try using the following Sleep function Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Sleep 4000 ' this will sleep for 4 seconds
  10. M

    List not updating form

    try FindFirst instead of FindLast
  11. M

    VBA Developer Banking Zurich - job offer

    This is not an appropriate posting for this site. Maurice
  12. M

    Calendar Control attached to parameter value

    Hi Sheila - the example that I have posted in this forum may be of some help to you. http://www.access-programmers.co.uk/forums/showthread.php?t=103387 Best regards Maurice
  13. M

    Drag and Drop works great but how do I open a reports based on what I selected?

    Too bad you can't download anything because I've posted a sample database that meets your requirements. http://www.access-programmers.co.uk/forums/attachment.php?attachmentid=12904&d=1141829591
  14. M

    Forced shutdown/inactivity shutdown

    Thank you for your post, however we have some 10 different posts on this subject
  15. M

    Result of Expression not saved in table, please help.....

    The rule has always been that if you can calculate it, then you don't have to store the result. Just recalculate when needed
  16. M

    Setting user privileges

    You may want to lookup Workgroup files (.MDW)
  17. M

    Making controls on Form update automatically

    In the After Update event, try Me.refresh
  18. M

    Compile of hidden files error

    Open the database ( start it up ) ...go into any module ( view the code ), of either a module, a form, a report, etc... then from the Toolbar ( top of the screen ) select Debug and select the Compile item.
  19. M

    Distribution of Database (without Access)

    Just make sure you can compile to an .EXE before you get too far into it. As far as I know, I don't think you can with the Express Edition... I think it's only a learning edition.
  20. M

    Distribution of Database (without Access)

    The word is that Microsoft will no longer support Data Access Pages after this year. Since the project is obviously done in Access then you should run it in it's native environment.
Back
Top Bottom