在打开某个已有工程时,系统出现“Class TSimpleDataSet not found. Ignore the error and continue? NOTE: Ignoring the error may cause components to be deleted or property values to be lost.”信息,各位大虾,怎么处理呀?

解决方案 »

  1.   

    是个第三方件,你的Delphi中没安装,安装后再打开就不会出这个错了
      

  2.   

    TSimpleDataSet uses dbExpress to fetch data and cache it internally in memory.UnitSimpleDSDescriptionTSimpleDataSet is a client dataset that uses an internal TSQLDataSet and TDataSetProvider for fetching data and applying updates. It combines the fast access and easy deployment of a unidirectional dataset with a client dataset抯 ability to edit and navigate data.TSimpleDataSet uses dbExpress for fast access to database information. As a client dataset, TSimpleDataSet caches that information in memory and saves any updates the application makes. With its internal dataset provider, TSimpleDataSet can apply those updates back to the database server. Thus, TSimpleDataSet works like TClientDataSet when it is connected to a local TSQLDataSet via a provider, except that the source dataset and provider are internal.TSimpleDataSet surfaces some of the properties and events of TSQLDataSet so that you can specify the database server from which to fetch data, indicate what data to fetch from that server, influence what information is included in data packets, and provide input on the updating process.In addition to using the source TSQLDataSet, TSimpleDataSet can read from and write to a dedicated file on disk. The internal provider and source dataset are not needed for working with file-based data, making TClientDataSet a more suitable choice if you are writing a purely file-based application. However, the ability to work with a file on disk makes TSimpleDataSet well-suited to briefcase model applications.
      

  3.   

    你用的D6吧,好象没DBEXPRESS这页