oh..
I think it should work.............
i don't use dbase but it works for SQLServer7..
I noticed that the SQL that you entered didn't have asc/desc on the end...
Data2.RecordSource = "SELECT Domain_Number FROM Domain ORDER BY Domain_
Number"
If that doesn't make the difference, you could create a recordset in code
then append it to the datacontrol..
eg.
set rst=db.openrecordset("SELECT Domain_Number FROM Domain ORDER BY Domain_
Number asc;")
set data2.recordset=rst
You will obviously need to create a workspace and database object first..
Are you using DAO/ODBC??....
Are you running vb6??.....if so ADO is well worth a look as it is much
better at dealing with 'other' databases than DAO..
Best Regards,
Mr. G. Wonfor
Quote:
> Hello once again,
> Please disregard my last message. SQL didn`t work at all, I just looked a
> little fast. I guess it can't be used with dBase 3 files...
> Still looking for help
> Vince