Watch "TMS FNC TreeView component (part 4): Icons - Columns" on YouTube
https://youtu.be/14_Jyb_4Rp8
https://youtu.be/14_Jyb_4Rp8
YouTube
TMS FNC TreeView component (part 4): Icons - Columns
Watch "092 - Delphi 10.3.2 com REST Dataware" on YouTube
https://youtu.be/FW23EutbGPY
https://youtu.be/FW23EutbGPY
YouTube
092 - Delphi 10.3.2 com REST Dataware
#ObjectPascalNotes
Static arrays immediately take up a lot of memory (in the case above on the stack), which should be avoided. The AllYear variable requires 8,928 Integers, taking up 4 bytes each, this is almost 35KB. Allocating such a large block in the global memory of on the stack is really a mistake. A dynamic array, instead, uses the heap memory, and offers much more flexibility in terms of memory allocation and management.
type
TAllYearTemps = array [1..24, 1..31, 1..12] of Integer;
var
AllYear: TAllYearTemps;
Static arrays immediately take up a lot of memory (in the case above on the stack), which should be avoided. The AllYear variable requires 8,928 Integers, taking up 4 bytes each, this is almost 35KB. Allocating such a large block in the global memory of on the stack is really a mistake. A dynamic array, instead, uses the heap memory, and offers much more flexibility in terms of memory allocation and management.
#ObjectPascalFeatures
These features to dynamic arrays were added in Delphi XE7
var
di: array of Integer;
i: Integer;
begin
di := [1, 2, 3]; // initialization
di := di + di; // concatenation
di := di + [4, 5]; // mixed concatenation
for i in di do
begin
Show(i.ToString);
end;
end.
These features to dynamic arrays were added in Delphi XE7
Windows 10 and New Key UX Principles (for RAD Studio Developers) : https://register.gotowebinar.com/register/7678039631060589570
Watch "Delphi Ideias - Como colorir os dias no TCalendarView" on YouTube
https://youtu.be/VW4Kc9XEnMc
https://youtu.be/VW4Kc9XEnMc
YouTube
Delphi Ideias - Como colorir os dias no TCalendarView
Calendários coloridos, esse assunto sempre rende. Então dessa vez vamos aprender como aplicar cores no TCalendarView componente nativo Delphi presente na pal...
Watch "Curso de Desenvolvimento Mobile e Desktop com Delphi e Realtime(Firebase)" on YouTube
https://youtu.be/Ltyl3z8Tgto
https://youtu.be/Ltyl3z8Tgto
YouTube
Curso de Desenvolvimento Mobile e Desktop com Delphi e Realtime(Firebase)
Se você ainda não utiliza o FIREBASE ou qualquer outro serviço de Baas(Backend-as-a-service) talvez vai precisar entrar nessa comigo para alavancar seus proj...