先在adodc1控件上按右键...在属性里..连接好数据库,然后在数据源里写sql语句....
也可以什么也不设置..在代码里写..
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OleDb.4.0;Data source=D:\aa.mdb"
Adodc1.CommandType = adCmdText
Adodc1.RecordSource= "select * from 表"
Adodc1.Refresh
Set DataGrid1.DataSource=Adodc1