Hi group,

For the last couple of hours(!!!) I am trying to show the contents of a table in a combo box.

I have table with 2 fields:
* FunctieID
* FunctieDescription

I tried a couple of SQL statements:

SELECT tblFunctie.FunctieID, tblFunctie.Description

And

SELECT tblFunctie.FunctieID, tblFunctie.Description FROM tblFunctie

I put them in the combobox property: datafield and/or datasource.

Result => nothing.

Why doesnt this work. By the way I am using the ADO method.

Sander