Hi,
There is an error on DataGrid1.DataSource = Adodc1.RecordSource method or data member not found. When i do below setting manuel in properties, there is no problem.

Thanks

Adodc1.ConnectionString = "Provider=MSDAORA.1;Password=psw;User ID=iuu;Data Source=video;Persist Security Info=True"
Adodc1.RecordSource = "Select * From movie"
DataGrid1.DataSource = Adodc1.RecordSource

Recommended Answers

All 2 Replies

you need to use

set DataGrid1.DataSource = Adodc1.RecordSource

Thanks! This helped me out a lot!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.