Since 2014, it’s been possible to compile applications with Delphi for the iOS world and integrate the Indy library for TCP/IP communication with SSL encryption thanks to OpenSSL, as documented on Embarcadero’s website at the following link https://blogs.embarcadero.com/openssl-and-https-support-for-ios-devices/. This can be done by including the “IdSSLOpenSSLHeaders_Static.pas” library in your project and copying the compiled libraries…
Read more
Application: Xtumble Warehouse Mission: To enable the search and coding of items, inventory creation, and stock management. Development Environment: Embarcadero Delphi 12 Ent. Offline Operation: Yes Local Database: Interbase 2020 ibtogo Version 1.2.2 News: Multilingual support, currently available in Italian and English. Improved QR and Barcode scanning management. Enhanced image management. If you try it,…
Read more
Version Update Version News: Improved barcode search for articles Enhanced management of article search filters Updated compatibility with Android 13 and IOS 17 Simplified onboarding and new account creation Special discount available until March 2024 Visit the dedicated page at the link: https://xtumble.com/punto-cassa for further information, or search for it in the stores. Transform your…
Read more
Snippet to get default language from the destination device: tested on Linguaggio: Delphi 12.0 Android: 6.0 up to 13
1 2 3 4 5 6 |
{$IFDEF ANDROID} var Locale: JLocale; Locale := TJLocale.JavaClass.getDefault; var Language: String := JStringToString(Locale.getLanguage); showmessage('Lingua: ' + Language); {$ENDIF} |
I have a Linux Ubuntu 22.04 system and I want to send messages via the device “SIM800C – SIMCom GSM/GPRS Module”. I connect it to the system via USB – UART, using standard “AT” commands( Hayes AT command set ), specifically on this blog : https://www.emnify.com/developer-blog/at-commands-for-cellular-modules which explains the most modern AT commands relating to…
Read more