Blog

All Blog Posts  |  Next Post  |  Previous Post

Freebie Friday: Next Generation Grid Quick Sample Data

Today

TMS Software Delphi  Components

It's Friday, and it's time for a freebie. If you’re developing in Delphi or C++ and looking for a powerful, flexible, and highly customizable data grid solution, then TMS FNC Data Grid is the perfect choice. In this blog, we'll share quick code snippets to setup the grid with sample data. This enables you to get started quickly without needing to bind to a dataset or invest time connecting to a data layer. Once all properties are configured and functionality is set up, you can easily replace the sample data with your own real-world data.

What is TMS FNC Data Grid?

To have a better understanding on what TMS FNC Data Grid is and has to offer, please read through this blog first. 


Sample Data

To quickly show data in the grid, LoadSampleData is what you are looking for. It also takes the number of columns and rows into account.

Grid.ColumnCount := 10;
Grid.RowCount := 100;
Grid.LoadSampleData;

TMS Software Delphi  Components

Autonumbering Columns

Need for a fixed column indicating the row index?. That's possible with the AutoNumberColumn functionality!

Grid.InsertColumn(0);
Grid.FixedColumnCount := 1;
Grid.AutoNumberColumn(0);

TMS Software Delphi  Components

Global Font

The grid is able to style at column, row and cell level, but did you know that you can easily configure grid wide font settings?

Grid.GlobalFont.Size := 16;
Grid.GlobalFont.Name := 'JetBrains Mono';
Grid.GlobalFont.Color := gcDarkslategray;

TMS Software Delphi  Components

Conclusion

In conclusion, TMS FNC Data Grid offers a versatile and user-friendly solution for developers working with Delphi or C++ to implement powerful data grids in their applications. Whether you are just starting out or looking to fine-tune a complex data display, this component provides a quick setup, easy configuration, and flexible customization options. From displaying sample data to adjusting global fonts and auto-numbering columns, TMS FNC Data Grid ensures that you can create a highly functional and aesthetically pleasing grid without much hassle. With these features, it’s clear that this component is an excellent tool for developers looking to build efficient and dynamic data-driven applications. Want to find out more, please read through this blog and find out more blogs and videos about what TMS FNC Data Grid has to offer.



Pieter Scheldeman


  1. Next Generation Data Grid for Delphi: Getting Started

  2. Next Generation Data Grid for Delphi: Adding, Formatting & Converting Data

  3. Next Generation Data Grid for Delphi: Filtering & Sorting

  4. Next Generation Data Grid for Delphi: Grouping

  5. Next Generation Data Grid for Delphi: Webinar Replay Available!

  6. Next Generation Data Grid for Delphi: Cell Controls

  7. Next Generation Data Grid for Delphi: Master-Detail

  8. Next Generation Data Grid for Delphi: Calculations

  9. Next Generation Data Grid for Delphi: Import & Export

  10. Next Generation Data Grid for Delphi: Template

  11. Next Generation Data Grid for Delphi: Filter Row

  12. Next Generation Data Grid for C++: Getting Started

  13. Freebie Friday: Next Generation Grid Quick Sample Data



This blog post has not received any comments yet.



Add a new comment

You will receive a confirmation mail with a link to validate your comment, please use a valid email address.
All fields are required.



All Blog Posts  |  Next Post  |  Previous Post