Bracket Highlighting in Delphi 12.0 Using SynEdit Delphi 12.0 users have a new tool to improve code readability: a procedure for enabling bracket highlighting in SynEdit. This feature helps developers quickly identify matching parentheses, braces, and other types of brackets within their code, which is essential for navigating complex code structures efficiently. To implement this…
Read more
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 {$IFDEF ANDROID} var Locale: JLocale; Locale := TJLocale.JavaClass.getDefault; var Language: String := JStringToString(Locale.getLanguage); showmessage(‘Lingua: ‘ + Language); {$ENDIF}