A single developer license allows 1 developer to use the components for development, obtain free updates & support for a full version cycle of the product. The license is not transferable.
A single developer license allows 1 developer to use the components for development, obtain free updates & support for 1 year. The license is not transferable.
A single developer license allows 1 developer to use the components for development, obtain free updates & support for 2 years. The license is not transferable.
A small team license allows 2 developers within the company to use the components for development, obtain free updates & support for a full version cycle of the product. The license is not transferable.
A small team license allows 2 developers within the company to use the components for development, obtain free updates & support for 1 year. The license is not transferable.
A small team license allows 2 developers within the company to use the components for development, obtain free updates & support for 2 years. The license is not transferable.
A site license allows an unlimited number of developers within the company to use the components for development, obtain free updates & support for a full version cycle of the product. Developers can be added at any time during the full version cycle.
A site license allows an unlimited number of developers within the company to use the components for development, obtain free updates & support for 1 year. Developers can be added at any time during the 1 year period.
A site license allows an unlimited number of developers within the company to use the components for development, obtain free updates & support for 2 years. Developers can be added at any time during the 2 year period.
TAdvStringGrid
Example 47 : using the new capability to load data from MDB files
2 New methods enable loading of
Access tables in the grid : LoadFromMDBSQL and LoadFromMDBTable.
Both methods use ADO. Note that this imposes no requirements at
all for grids that do not use this feature on the availability of
ADO on the target machine.
Description:
LoadFromMDBTable(Filename,
Table:string);
This method loads the selcted
table from the MDB file into TAdvStringGrid. From there, it can
be printed, exported to HTML, CSV etc ..
LoadFromMDBSQL(Filename,
SQL:string);
This method allows using an Access compatible SQL statement to
retrieve the data from an Access file. Suppose the MDB file has a
table CARS and only the cars from this table with 6 or more
cylinders need to be loaded into the grid. In this case you can
write :
AdvStringGrid1.LoadFromMDBSQL('mydb.mdb','SELECT * FROM CARS WHERE CYL >= 6');