sigsegv error on lazarus/fpc debug on ubuntu mate 16.04, the solution for me is: apt-get install libc6-dbg
To find a file in the Android Shell “ADB” you can use this command:
1 |
# busybox find "filetosearch" |
you can do the same with
1 |
# ls -R | grep "filetosearch" |
but you can’t see the directory where is the file
DKLang è un package per Delphi relativo alla gestione dell’internazionalizzazione delle applicazioni. E’ composto da un insieme di componenti, classi e tools veramente ridotto ma efficace, il tool è open source e compatibile con tutte le piattaforme di sviluppo di Delphi (Windows,MacOSX,iOS,Android e Linux) sia per Firemonkey che VCL. Le versioni del tool sono scaricabile…
Leggi tutto
Changing the text property of a tree item in Firemonkey is really simple, you only need to do this:
1 2 3 4 5 6 7 |
tiC := TTreeViewItem.Create(<your TreeView Object>); tiC.Text := 'BLA BLA'; tiC.StyledSettings := []; tiC.TextSettings.FontColor := TAlphaColorRec.Blue; tiC.Parent := ParentItem; tiC.TagString := <some data if you need>; tiC.Tag := <some id if you need>; |
La famosa piattaforma di sviluppo “Rad Studio” di Embarcadero arriva alla versione 10.2 con la reintroduzione di Linux come piattaforma supportata. Al momento l’unico target di compilazione per linux è x86 64bit, cosa che a me sta molto stretta, visto che trattandosi di un ambiente nativo il target che mi sarebbe piaciuto tanto è ARM…
Leggi tutto