Esempio PDF realizzato con la libreria TCPDF https://tcpdf.org/
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
var aFile:Jfile; Intent:JIntent; begin aFile:=TJfile.JavaClass.init(stringtojstring(‘/storage/sdcard0/Android/data/com.CloudCon.AtualizacaoAutomatica/files/’),stringtojstring(‘Rota.apk’)); Intent := TJIntent.Create ; Intent.setAction(TJIntent.JavaClass.ACTION_VIEW); Intent.addFlags(TJIntent.JavaClass.FLAG_ACTIVITY_NEW_TASK); Intent.setDataAndType(TJnet_Uri.JavaClass.fromFile(aFile),StringToJString(‘application/vnd.android.package-archive’)); SharedActivityContext.startActivity(Intent); end;
“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 1440 cd /var/www/html 1441 ls 1442 mkdir raspap 1443 sudo git clone https://github.com/billz/raspap-webgui /var/www/html/raspap 1444 cat /etc/network/interfaces 1445 sudo nano /etc/init.d/hostapd 1446 sudo nano /etc/hostapd/hostapd.conf 1447 lsb -release 1448 lsb_release -a 1449 sudo nano /etc/sudoers 1450 cat /etc/passwd 1451 sudo chown -R www-data:www-data /var/www/html/raspap/ 1452 sudo mkdir…
Leggi tutto
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}