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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...