In Delphi.NET, VCL.NET has two quite unfortunate: 1. Cannot use ADO (DBGO), but according to Li Wei, this component will be used. 2. You cannot use ADO.NET and BDP, which will be the theme of my article. In the Delphi communication area of Borland, Danny said, "Vcll.net in delphi.net can call the WinForm component, and WinForm can also call VCL.NET components." In order to verify the first sentence, I tried it, in the Vcl.NET, you can use the .NET component, such as you can directly use it system.data.sqlclient, and use the SQLConnection class directly. That is, although the .NET component cannot be seen in the component panel of Vcl.NET, all .NET components, the class, Vcl.net can be used! However, the Dataset of ADO.NET is not compatible with the VCL.NET's DataSet component, so the data perception component cannot be directly called. However, I read Li Wei's Inside VCL knows that there is an ADONETCONNECTOR component, using this component, allowing ADO.NET to support the use of data perception components. First, the DLL of the VCL.NET component has a borland.vcl.design.donet.dll under BDS / 2.0 / bIN, click the Install .Net Component menu, and then this DLL AddD in the form .NET VCL Components page Let's see the AdonEtConnector component. Then add a DBGRID, DB ...., Datasoure ...., as long as Datasource.DataSet: = AdonEtConnector1. Others are the same as the original Delphi. Also change the method is also effective for BDP.