Hi There,
I have a really simple form whereby you chose an option from a combobox and it populates the 3 textboxes below with the matching data in the table. Now every time I select an option from the combobox it renames the field of data in the table with a number. By the looks if it, it is using the primary key of the last selected item.
This is the code I am using for the combobox to fill the textboxes which are bound to the table.
Any ideas on what might be causing this and how to fix it please?
Many thanks,
Dom
I have a really simple form whereby you chose an option from a combobox and it populates the 3 textboxes below with the matching data in the table. Now every time I select an option from the combobox it renames the field of data in the table with a number. By the looks if it, it is using the primary key of the last selected item.
This is the code I am using for the combobox to fill the textboxes which are bound to the table.
Code:
DoCmd.ApplyFilter "", "[WebsitePasswordID] Like ""*"" & [Forms]![frmWebsite]![cboWebsiteName] & ""*""", ""
Any ideas on what might be causing this and how to fix it please?
Many thanks,
Dom