Search results

  1. A

    Automatic tab

    Greetings all. I'm revising a database I made last year, but want to simplify a couple of things! Without boring you with too many details - it's a registration database and the form I'm fixing is the "daily sign-in" form (it's for registering children at a conference over number of days)...
  2. A

    GoToControl on record load

    Hello, I'm using a barcode scanner to enter ID numbers into a combo box on a form.. I've got it to do this much - scan the barcode, and then the form loads the relevant record. Great - now I want, that when a barcode is scanned, it makes the next field the 'live' field (the one with the cursor...
  3. A

    Check box depending on day

    Hello, I'm currently making a signup form for a 6day event. Certain details are taken (Name, Age, Contact no etc). I also have a registration form; so when someone comes back for the second day of the event I tick the 'saturday' checkbox, or 'monday', or whatever the day is... When someone...
  4. A

    A strange one!

    I haven't been able to google this because I'm not sure how I'd word it!! I have a form, which registers attendance at an event, with three fields - ID (a combo box), Name, and Present. When an attendee comes in, they give their number which is entered into the first field. Pressing carriage...
  5. A

    Barcode Font

    Greetings, I am using a barcode font in order to generate a number as a barcode on my report records. In order for my barcode scanner to read the barcode it needs an asterisk at the beginning and at the end. So, if my record ID is 62 - in order for the barcode to be displayed correctly, it...
  6. A

    Printing one record

    Hi guys, I'm trying to get a form to print just one record on a report - and using this code: Private Sub Command24_Click() Dim strReportName As String Dim strCriteria As String strReportName = "Badge" strCriteria = "[ID]='" & Me![ID] & "'" DoCmd.OpenReport strReportName...
  7. A

    Colouring a form field based on another field's content

    Hello, I need a little help doing something on access which to me seems very complicated! I am making a very simple 'registration' database for a children's event in a couple of weeks. I the table/form there is a checkbox field called 'consent' which, if checked, indicates that a child can...
  8. A

    Macro to check a box depending on day

    Hello, I'm making a very simple flat file database for an event I'll be involved with in a few weeks. It's a registration form (Name, Contact number, Age) but it also has check boxes to record the attendance of each member (Saturday, Sunday, Monday, Tuesday). Each day a person attends - the...
Back
Top Bottom