Search results

  1. P

    Emailing part recordsets to email addresses in one of the fields

    Hello I have a table - tblBarSessions - with similar data to the following which is just an example Subject ShiftDate StartTime eA Shed Lunch I: Bill 1/03/2023 11:00 AM bgates@iinet.com.au Bowls: Bill 8/03/2023 3:45 PM bgates@iinet.com.au Shed Lunch: Satya 1/03/2023 11:00 AM...
  2. P

    emailing residents from a recordset

    I have a recordset (titled ASBSelectedMonth) which is executed from a button on a form with the following fields emailAddress, ResidentName, EventName,SessionDate,Message1,Message2 I want to email each person in the recordset, they may be in the recordset once or multiple times, the contents of...
  3. P

    Emailing a recordset

    How do I email a recordset to an email address contained in the recordset - as a report or query - using Outlook as the application? Example of the recordset email FirstName SportName SportDate ActivityName ActivityDate volunteer1001@gmail.com Peter Lawn Bowls 15/10/2021 Oct Dinner 23/10/2021
  4. P

    Showing a summary calculation in a form

    In a subform I have participants who are either left or right (sporting type database) and as I add participants alternatively left or right I want to add up the total weight of participants on the left and right in the form I can add up the total weight of all participants (in the race)...
  5. P

    file path in footer

    Hello In Access 2010 how to add a file path in the report footer? thx
  6. P

    Seating plan

    I'm looking to make a report that prints out a class/tutorial list as a seating plan. So whilst variable let's say 28 students in 4 rows and 7 columns as an example. I know how to store the data - but my question is how to print out the student names 7 across by the 4 rows? Easy as a list with...
  7. P

    Opening a form based on the transaction table

    I wish to open a form based on the transaction table populate one of the foreign key fields with a selected value from a combo box from the switchboard (with going to a mainform&subform). I know how to get the value of the combo box on the switchboard. I just know how to then store this value...
  8. P

    Blank Form

    How does one remove the layout guide that is automatically included in a blank form in 2010?
  9. P

    primary keys

    I would be most grateful to receive any feedback/thoughts on this concept - which was asked in an exam question I have seen - where the scenario is a store keeping track of sales to customers outline how primary keys can ensure the privacy of its customers
  10. P

    Preventing data deletion

    Hi How do I prevent the value of a field being deleted by the user, which is occurring in a form, but how not sure, somehow they manage to knock out the suburb name from a Postcode and Suburbs table (which is a linked table). Peter
  11. P

    forcing the close of an access file

    Is there any way of closing an access file when another user has it open (without logging on as them)? Peter
  12. P

    applying a criteria in the button that opens a report

    I have the onlick of a button programmed with Dim stDocName As String Dim stCriteria As String stDocName = "Rallies this year" stCriteria = "[Year of Rally] = " & Year(Date) MsgBox (stCriteria) DoCmd.OpenReport stDocName, acViewPreview, "", "", stCriteria the output...
  13. P

    Table design and relationship

    I have a problem of how to structure tables to pay employees the employee recruit people to attend sessions so there are three tables, employees to sessions many to many attendance resolves the many to many, so Employees 1 to M Attendances and Sessions 1 to M Attendances Attendances contains...
  14. P

    upon returning to a form

    Hi I have a form with a combo box that opens another form to the user's selected value and then when the user has finished with the second form and closes the user is then back at the first form - but the value in the combo box is still shown. I know how to program to clear that - as I can add a...
  15. P

    emailing a Report

    How do I go about emailing a report to a Client selected from a combo box on a form thank you ion anticipation
  16. P

    command button wizard doesn't start

    When adding a button to a form the wizard for the command button doesn't start in any database I have including creating a new database. Can anyone suggest a fix please? I am getting better at programming the buttons myself - and certainly eager to do so, but the wizard is helpful to show you...
  17. P

    Opening a report

    I wish to be able to run the one report from either of two combo boxes on a form and the query/report runs with the value from one or the other combo box. Is this possible and if so how?
  18. P

    filtering for different field names

    I have a user who wishes to be able to choose the field to search by and then enter/select a value for the criteria for exaplanation basically a customers table (but will also show information from orders in the output) where the user can choose/specfiy suburb and then choose/enter a value eg...
  19. P

    Opening a form according to a criteria

    I wish to open a form by using a button (from a switchboard if you like) where the records displayed match a criteria eg. Clients.Status = true and I also want to the able to open the same form - using a dikfferent button where all the records are displayed, eg. All client records so I wish...
  20. P

    Opening a second form based on a value in the first

    I am struggling with opening a form Opening a second form based on a value in the first The first form has a text box called ClientNumber and I want to open Form2 based on the value in the textbox on Form1 and Form2 has a text box called ClientNumber I have tried DoCmd.OpenForm "Form2", ...
Top Bottom