Recent content by AShaw

  1. A

    Problem referring to form and subform combo box

    Thank you so much for looking into it. There were so many poorly designed features in it that I really struggled to fix some of these things for them. I'll try to fix up the form names and control names and then hand it back to them. They've hired a data entry person to start work on it but...
  2. A

    Problem referring to form and subform combo box

    Thanks, will look forward to any ideas. I know SQL because its used in SAS, but I don't understand the form and subform references that Access uses.
  3. A

    Problem referring to form and subform combo box

    Thanks - I've attached the database as a compressed file (hope it works ok). It has no data except for a few test records. The team paid a guy to build this db for them but it was full of errors and spelling mistakes etc, so they asked me to go through and fix it all for them. I use SAS not...
  4. A

    Problem referring to form and subform combo box

    Yes, that is the link that I have been referring to and as I've already said from the beginning, I can't get it right after trying several combinations. Is there anyone who can help me with this please? Anyone? ANYONE?!!! I thought this was a fairly simple beginners question and that someone...
  5. A

    Problem referring to form and subform combo box

    When I open it from the main form (frmMain) it has the same path: [Forms]![frmDeceased]![cbo_ROHE] I thought that I should somehow refer to the frmMain in the path, so I tried: [Forms]![frmMain]![frmDeceased]![cbo_ROHE] But that didn't work. Am I missing some combination of exclamation marks...
  6. A

    Problem referring to form and subform combo box

    The first combo box (Rohe) is just populated by a simple table named tbl_ROHE_IWI_lookup. The query is: SELECT tbl_ROHE_IWI_lookup.ROHE, tbl_ROHE_IWI_lookup.Order FROM tbl_ROHE_IWI_lookup GROUP BY tbl_ROHE_IWI_lookup.ROHE, tbl_ROHE_IWI_lookup.Order ORDER BY tbl_ROHE_IWI_lookup.Order; And I...
  7. A

    Problem referring to form and subform combo box

    Hi Gina - I'm using Access 2010. The code in frmMain that opens up frmDeceased is: Private Sub cmdOpenDeceasedform_Click() Me.Main_SubForm.SourceObject = "frmDeceased" Me.Refresh End Sub Once I am in frmDeceased, the code that I have for populating the Iwi combo with the selection from...
  8. A

    Problem referring to form and subform combo box

    Hello, I have a form named frmMain that contains five buttons that lead to subforms, one of which is named frmDeceased. In frmDeceased, I needed to create a combo box that relied on selections from the combo box before it. With the help of someone on this forum named vbaINet, I was able to do...
  9. A

    Code for populating one combo box based on the selection in another

    Ah, yes - it was the Requery I was missing in my Event Procedure. Thank you - that's what I needed.
  10. A

    Code for populating one combo box based on the selection in another

    Thanks, I was following a very similar example but I still can't get this right. I played around with it a bit more and have gotten it to a stage where the Iwi (tribe) does populate based on the Rohe (location) chosen, but if I then go back to Rohe and choose a different location then the Iwi...
  11. A

    Code for populating one combo box based on the selection in another

    Hello, I can't quite get my code right for populating one combo box based on the selection in another, and I was hoping someone could please take a look. I didn't create this Access database but I've been asked to add in a second combo box that is based on the selection of the first combo box...
  12. A

    Ugly large checkboxes on Access table

    Great! Thanks for that.
  13. A

    Ugly large checkboxes on Access table

    Thanks Galaxiom. I had written my second comment before your response had appeared. Yes, its bizarre that the checkboxes look so large but I can only assume that the database designer wanted it that way for some reason. The team wants to be able to analyse their results in the future so they're...
  14. A

    Ugly large checkboxes on Access table

    Never mind. I tried a few things and changed the Lookup to a Text Box which seems to have produced a better result. Thanks anyway.
  15. A

    Ugly large checkboxes on Access table

    Hello! I am not usually an Access user but I have been asked to amend a database. On the form, six checkboxes have been added and when I go to the table these checkboxes appear as large ugly checkboxes that are so enormous that only five records can be viewed on screen at once. I have attached...
Back
Top Bottom