infinitx,
Your form has a data source (probably a table), and that should not be changed.
Your combo box also has a data source. If you view your form in design view and right click on the combo box in question, then choose "properties", you will see several tabs. Click on the data tab, and at the very top, there is a property called source. That should be set to the name of the field you want displayed in the combo box.
A little lower on this properties page, you will see something like "Row Source Type". There are options on this row like "Table/Query", "List"; etc. Choose Table/Query.
Below that, there is an item called "Row Source". This is where your select statement goes. It will need to say something like: Select distinct <fieldname> from <tablename>; The <fieldname> value will be the same value on the source line above. Do not forget to put square brackets around the fieldname and tablename values if you have space characters in the names.
Before you changed anything, the row source would have contained the name of the table where you were getting the values for the combo box. If you can get back to that point, just replace the table name with the select statement, and everything should work fine.
If you continue to have problems, just reply to this. I will stick with you until you get it nailed.
Tranman