Hi All
WinXPPro (SP2)
Access 2002 (SP3) and Access 2007
I have a mainform with a number of tabs on it. On the 1st tab there is a subform.
The main and sub forms both have a recordsource of :-
SELECT * FROM Tracks;
I syncronise bookmarks in the current events of main and subforms to ensure they both are 'looking' at the same record in the 'Tracks' table.
I have a custom Edit button on the mainform which, when clicked, modifies the rowsources of several comboboxes on my subform in order to populate them with choices. I do this with SQL.. (eg. SELECT * FROM Supplier_names) and a requery.
However, this appears to make the subform 'Dirty' and it gets locked preventing me from clicking into any of the comboboxes.
To lose this issue and because no 'real' updates have been done yet, I have tried to use 'Dirty=False' on the Subform and a 'Cancel=VBTrue' in the Subform's Beforeupdate. This works happily but when control is returned to the Main form module it immediately crashes with
3270 Property Not Found.
Infuriatingly, it does not tell me which property! How do I fnd out which property it thinks it's looking for please?
Thanks
WinXPPro (SP2)
Access 2002 (SP3) and Access 2007
I have a mainform with a number of tabs on it. On the 1st tab there is a subform.
The main and sub forms both have a recordsource of :-
SELECT * FROM Tracks;
I syncronise bookmarks in the current events of main and subforms to ensure they both are 'looking' at the same record in the 'Tracks' table.
I have a custom Edit button on the mainform which, when clicked, modifies the rowsources of several comboboxes on my subform in order to populate them with choices. I do this with SQL.. (eg. SELECT * FROM Supplier_names) and a requery.
However, this appears to make the subform 'Dirty' and it gets locked preventing me from clicking into any of the comboboxes.
To lose this issue and because no 'real' updates have been done yet, I have tried to use 'Dirty=False' on the Subform and a 'Cancel=VBTrue' in the Subform's Beforeupdate. This works happily but when control is returned to the Main form module it immediately crashes with
3270 Property Not Found.
Infuriatingly, it does not tell me which property! How do I fnd out which property it thinks it's looking for please?
Thanks