Search results

  1. mhartman

    Search within MS Access Queries

    Hello: Be sure to substitute your table name for the tblAscii entry in the code. Mark
  2. mhartman

    Search within MS Access Queries

    Hello: the below code would cycle through all the fields in a table or query and display the title of the column in a message box: On Error GoTo Procedure_Error Dim db As Database Dim rs As DAO.Recordset Dim fld As Field Dim strRowSource As String ' Set db =...
  3. mhartman

    Print Properties

    Here it is...... http://support.microsoft.com/kb/209511/en-us Regards Mark
  4. mhartman

    Total Data In Fields

    Hello: Are you trying to sum the whole column? More information is needed. Regards Mark
  5. mhartman

    BackColor property of Command Button

    Hello: It is not possible. However, you may click here: http://www.utterangel.com/pages/access_downloads.aspx for a work-around solution. Regards Mark
  6. mhartman

    Printing current date

    Hello: Your welcome and good luck with this. Regards Mark
  7. mhartman

    Printing current date

    Hello: In your report footer, place a two text boxes with the following as the ControlSource: =Now() ="Page " & [Page] & " of " & [Pages] The first entry would go in the Left text box The second entry would go in the right text box Regards Mark
  8. mhartman

    Okay - do I need a subform??? (Probably really easy!)

    Hello: I looks as if you need to related all your tables with a "Primary to Foreign" key relationship to pull this off. What you have right now is called a "Look-up" table arrangement. Regards Mark
  9. mhartman

    Information boxes

    Hello: If you right-click on the query, you can select Properties from the menu and fill out a short description. It does not appear with the cursor though. The user by doing this can see what the query does. Regards Mark
  10. mhartman

    Counting "check marks"......

    Hello: Just in case I meet an untimely demise, heres the file. Regards Mark
  11. mhartman

    Counting "check marks"......

    Hello again I forgot to add my explanation: This will count all the records in a table named Employees that have PowerSteering checked in the "PowerSteering" field. Add the TractorID and PowerSteering field to the query only! If you need the file, Let me know. Regards Mark
  12. mhartman

    Counting "check marks"......

    Hello: SELECT Count(tblEmployees.TractorID) AS CountOfTractorID, tblEmployees.PowerSteering FROM tblEmployees GROUP BY tblEmployees.PowerSteering HAVING (((tblEmployees.PowerSteering)=True)); Regards Mark
  13. mhartman

    How does the Quick Search feature work?

    Hello: The above link is for an Access project. Below would be for an Access database http://support.microsoft.com/kb/210242/en-us Regards Mark
  14. mhartman

    How does the Quick Search feature work?

    Hello: Here's another link that tells how to build your own. http://support.microsoft.com/kb/235359/en-us Regards Mark
  15. mhartman

    How does the Quick Search feature work?

    Hello: http://www.utterangel.com/pages/access_downloads.aspx Candace's "Flexible Query" might be what your after. Regards Mark
  16. mhartman

    Text box formating

    Hello: Access does not have a specific "Vertical Spacing" property for combo or text boxes. If your box is the right height for your font, the text should be somewhat centered in the box. Regards Mark
  17. mhartman

    For Each Label in a form - any way to select by object type?

    Hello: Your welcome. That came directly from the help file. What you condensed it to is what I use also. Good luck with this. Regards Mark
  18. mhartman

    Invoice# field definition based on date and time

    Hello: In your table design, just make your own custom format and put this in the "Format" property space of the table design. Something like this does it the trick...... dd-mm-yyyy: hh:nnampm Regards Mark
  19. mhartman

    Locking record

    Hello: What you want to do is cycle through the controls collection on your form and at each control set its locked property to "True" (Locked). You want to repeat this procedure when you want to unlock the controls. Regards Mark
  20. mhartman

    For Each Label in a form - any way to select by object type?

    Hello: Here it is: Example The following example examines the ControlType property for all controls on a form. For each label and text box control, the procedure toggles the SpecialEffect property for those controls. When the label controls' SpecialEffect property is set to Shadowed and the...
Back
Top Bottom