I'm using Access 2000.
I open a form in design mode and place a combo (or list) box on the form, the wizard appears and I go through the necessary steps to display what I want.
I then view the form and it's perfect.
I then close the form saving my changes thinking what a wonderful job I have done.
Howeever, when I return to my form the rowsource of the combo has completely changed.
Is this a reported problem ?
I have put in a bodge to get around the problem by setting the rowsource using code on the Load event of the form, but I would obviously rather the thing worked properly.
For your information.
Rowsource before :-
SELECT tbl.id, tbl.name FROM tbl
Rowsource after :-
SELECT tbl.id, tbl.id FROM tbl
Thanks to anyone would reads through all of this, let alone replies.
I open a form in design mode and place a combo (or list) box on the form, the wizard appears and I go through the necessary steps to display what I want.
I then view the form and it's perfect.
I then close the form saving my changes thinking what a wonderful job I have done.
Howeever, when I return to my form the rowsource of the combo has completely changed.
Is this a reported problem ?
I have put in a bodge to get around the problem by setting the rowsource using code on the Load event of the form, but I would obviously rather the thing worked properly.
For your information.
Rowsource before :-
SELECT tbl.id, tbl.name FROM tbl
Rowsource after :-
SELECT tbl.id, tbl.id FROM tbl
Thanks to anyone would reads through all of this, let alone replies.