Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Blog

Digital Innovation Partner

Cartello orari per i cancelli dei parchi di Milano

Esempio PDF realizzato con la libreria TCPDF https://tcpdf.org/

Dell EMC Conference 15 Febbraio 2018

Tematiche conferenza: -Approfondimento sulla strategia di canale Dell EMC  e soluzioni in ambito Enterprise -Portafoglio server Dell PowerEdge ™14ma generazione -Dell Networking – Approfondimento gamma prodotti -Introduzione normativa GDPR – Microsoft Windows Server 2016 e SQL Server 2017      

Delphi FMX – Run APK Installation programmatically

Presentations from Firebird Tour 2017: Firebird Performance and Tuning Linux and Windows

“Firebird Performance”, by Vlad Khorsun, Firebird Project “Tuning Linux, Windows, and Firebird for heavy workload” by Alex Kovyazin, IBSurgeon. Presentations from Firebird Tour 2017: Firebird Performance and Tuning Linux and Windows

Configure RaspAP over Ubuntu 16.04 Server and Apache2

Configure RaspAP over Ubuntu 16.04 Server and Apache2

Android App Version with Delphi

Using the JPackageInfo class is simple to retrive the version of your Android application. This class is already wrapped by Embarcadero in the following unit: Androidapi.JNI.GraphicsContentViewText {code} {$IFDEF ANDROID} var PackageManager: JPackageManager; PackageInfo: JPackageInfo; begin PackageManager := SharedActivityContext.getPackageManager; PackageInfo := PackageManager.getPackageInfo (SharedActivityContext.getPackageName, 0); result := JStringToString(PackageInfo.versionName); End; {$ENDIF}