Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
C++

Adding headers to TListView programmatically

During today’s Delphi, C++Builder and RAD Studio 10 Seattle launch webinar, I got a question on how to add headers to TListView programmatically instead of using LiveBindings with a data source. Here is a quick code snippet showing how to programmatically add TListView headers. procedure TListViewHeaders.FormCreate(Sender: TObject); var Group, Item: Integer; begin for Group in [1..4]…
Read more
News

Adding a [FixedLength] Attribute in Code-First Entity Framework

Author: Craig Stuntz In Code First Entity Framework models, you can define the length of a string field with StringLengthAttribute, but you have to write code in OnModelCreating to indicate a CHAR/NCHAR fixed length field: public class MyEntity { [Key] public int Id { get; set; } [StringLength(2)] public string FixedLengthColumn { get; set; } } public partial class MyContext…
Read more
News

10 Quick Tips & Tricks for SQL Server Developers

Author: Embarcadero USA Here are 10 quick SQL Server tips and tricks for database developers compiled by SQL Server expert Pinal Dave. For inefficient query plans: Check for issues with bad cardinality estimates. The maximum degree of parallelism can be limited server-wide by using the max degree of parallelism option. DMV – sys.dm_os_nodes provides information about CPU node…
Read more
C++

Mitov Software - Delphi Arduino control and communication

Embarcadero Technology Partner Spotlight Mitov Software – Delphi Arduino control and communication Boian Mitov – Mitov Software Thursday, June 25, 2015 http://www.mitov.com/ http://www.visuino.com/ YouTube video –https://www.youtube.com/watch?v=OZhWi_lA-_c Mitov Software is specialized in development of high performance software and Data Flow solutions for Delphi and…
Read more
DatabaseInterBaseNews

Aviation Giant Renews Long-Term InterBase Contract

After extensive testing, a top global commercial aircraft manufacturer has just renewed its InterBase deployment license with Embarcadero. The project involved updating InterBase to the latest version…

IN THE ARTICLES