Search results

  1. T

    Need help creating multi-filtered reports.

    Report Probably the best way is to group the facilities in the report and put the count result in the group footer. In Design View, go to File/Sorting and Grouping, select the Facility field, group on Each Value and set Group Footer to yes.
  2. T

    Form Not Showing

    form The problem may be that you have no record in the main table yet, if you have a main table and a sub table, linked one-to-many, you need record in the main table first before you can put one in the sub table.
  3. T

    Form Not Showing

    Form In Design View, go to Properties, on the Data Tab set Allow Additions to YES. One more advice, use a query for your form instead of binding it directly to the table.
  4. T

    Is there anyway to Auto Maximize a form on load?

    Maximize In the On Open Event put: DoCmd.Maximize
  5. T

    Checkbox help!

    Check In the After Update Event of CheckboxA put something like this: If Me. Checkbox A = True Then Me.CheckboxB = True Else Me.CheckboxB = False End If
  6. T

    Any good Web sites for basic RDBMS concepts?

    Web sites Try this one: http://www.microsoft-accesssolutions.co.uk/index.htm
  7. T

    Text book Instructions do not work

    Print Check this link: http://www.access-programmers.co.uk/forums/showthread.php?t=49415&highlight=print+current+record Or search this forum: print current records, lots of posts on this subject
  8. T

    Title at top of form?

    Title In design view, go to properties/format tab, you can set the caption there
  9. T

    Combining first letters of two text fields

    Combine Try this: =Left([Field1],1) & Left([Field2],1)
  10. T

    Macro for Visable

    Macro No need for a macro to do this. In fact, try to stay away from macros all together since you cannot do error trapping using them. In the On Click Event of the button put something like this: Me.textboxname.Visible = True
  11. T

    How to block mouse scrolling?

    Trap Check this link: http://www.access-programmers.co.uk/forums/showthread.php?t=38364&highlight=mouse
  12. T

    Text direction

    Direction You're welcome.
  13. T

    Text direction

    Direction May be you can use columns. Go to File/PageSetup/Columns. You can specify the data go across and then down.
  14. T

    Problems with Hide/Show DbWindow

    Hide How about trying this code To show the database window: Docmd.SelectObject acTable, , True To Hide the database window: Docmd.SelectObject acTable, , True Docmd.RunCommand acCmdWindowHide
  15. T

    Save copy report - Data only

    Copy Instead of saving a 'fixed' copy you can use a parameter query for the report. That way you will be able to generate the report based on start- and end date at any given time. You can view the results per month, per week, quarter, year or between any dates you wish. It also means you don't...
  16. T

    Date time span

    Dob In the After Update of the Field DOB put this: Dim Age As Double Age = Year(Now()) - Year([DOB]) If Age < 16 Then Me.Junior = True Me.Senior = False Else Me.Senior = True Me.Junior = False End If
  17. T

    Unassociated label blinks on mouse over!?

    Flash Check this link: http://members.iinet.net.au/~allenbrowne/ser-46.html
  18. T

    New Page (Help !!!)

    Report Try this. Open the report in design view, go to view/sorting and grouping. Select the group, and in Properties on the last line, set Keep Together to Whole Group.
  19. T

    Input Masks (Last names!!)

    Input Mask Instead of using a mask, which is not very user friendly, you can do this. Put the following code in the After Update Event of the field: Dim t_Lastname As String t_Lastname = UCase(Left([Lastname], 1)) & Mid([Lastname], 2, 40) Me.Lastname = t_Lastname After the field is updated...
  20. T

    passwording a command button

    Password Check out this link, there is a sample db there that demonstrates what you want. http://www.candace-tripp.com/_pages/access_downloads.asp
Back
Top Bottom