Search results

  1. T

    Due Dates

    Dates Check this link. The sample database you can download has what you need. http://www.access-programmers.co.uk/forums/showthread.php?t=62570
  2. T

    DCount problem

    DCount That works great! Thanks Pono1 :)
  3. T

    DCount problem

    In the After Update Event of the field Lastname I have some code to check if a person with that First- and Last name already exists in the database: If DCount("*", "[tblPeople]", "[LastName]= '" & Me.LastName & "' And [Firstname] = '" & Me.FirstName & "'") Then Beep MsgBox "This name already...
  4. T

    i need to create a search form but i'm lost

    Search Search the Sample Databases in the Forum, there are some excellent examples.
  5. T

    Navigation Buttons

    X of Y Check this link: http://www.access-programmers.co.uk/forums/showthread.php?t=85863
  6. T

    Mutiple Tables into one

    Query Use an Append Query. You can check the Help Files and this Forum about how to use it.
  7. T

    enabling/disabling fields with check boxes

    Disable In the After Update Event of the Check Box put something like this: If Me.CheckBox1 = True Then Me.txtField.Enabled = True Else Me.txtField.Enabled = False End If Replace 'CheckBox1' and 'txtField' with the appropriate names.
  8. T

    Combo Box to add data items based upon table

    Combo Box Check this Link: http://www.fontstuff.com/access/acctut20.htm Or search the forum on 'not in list'
  9. T

    Quick-save database to read-only

    Read only You could put this code somewehere, may be in the On Opening Event of the Start up form: Me.AllowAdditions = False Me.AllowDeletions = False Me.AllowEdits = False
  10. T

    Numbering Records

    Number Don't know how to do it, but if it's for display purposes only I'm sure you don't need to do it. Use a query and sort the records on the Time Field and then use a Running Sum to display the records on a Form or a Report. May save you a lot of work (and trouble)
  11. T

    Is it possible...

    Pdf Check this link: http://www.access-programmers.co.uk/forums/showthread.php?t=55943&highlight=open+pdf
  12. T

    Error when i use my form

    Focus Before you execute the code that generates the error you have to set the focus on the control involved. Me.yourcontrol.SetFocus (replace 'yourcontrol' with the actual control
  13. T

    Combo Box rewrites my data!!

    Combo The column count of a combo box starts at 0. Setting the bound column at that value may do the trick.
  14. T

    Wipe Effects

    Effect Ha, found it on a CD. Must have saved it back then...and forgot about it. And now I know it was on the site of Candace Tripp. Here's what I was looking for.
  15. T

    Wipe Effects

    No, I'm afraid that's not it either. The sample I remember had a module and some code behind a command button that would close a form as described. And there was the option to pre-select the desired wipe effect. But thanks Michael.
  16. T

    Using Customer ID to autofill new form

    Search Check this link: http://www.access-programmers.co.uk/forums/showthread.php?t=65331
  17. T

    Wipe Effects

    No, that is not what I had in mind. However, the link you provied is very useful too. There are some techniques shown that may come in handy. Thanks GHudson :)
  18. T

    Wipe Effects

    Some months ago I visited a site that, among others, had a sample mdb including nice 'wipe' effects for forms. Closing the form from left to right, top to bottom etc. I should have saved the link, but I didn't. Does anyone know which site it might have been, and/or, is anyone familiar with...
  19. T

    Help Me Please

    Combo This link will help: http://www.access-programmers.co.uk/forums/showthread.php?t=68985
  20. T

    Subform records change sort order

    Subform Don't know what causes it. The best thing to do is using a query to base the subform (and any other form) on. In the query you can specify the sort order of any field or combination of fields.
Back
Top Bottom