CarloM
Members-
Content Count
53 -
Joined
-
Last visited
-
Days Won
1
CarloM last won the day on January 27 2021
CarloM had the most liked content!
Community Reputation
3 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Javascript Window.Print Doesn't Work in Android or iOS using TWebBrowser (Delphi)
CarloM replied to CarloM's topic in FMX
Hi, Has anyone tried to do this? Regards -
Javascript Window.Print Doesn't Work in Android or iOS using TWebBrowser (Delphi)
CarloM posted a topic in FMX
Hi I have a embeded web app in native FMX app (ios / android) via TWebBrowser. All works ok, except Window.print. I use PDF.js for viewer and printing. if I use web app directly on safari / chrome printing PDF works ok. Any idea ? -
Hi, I see that embarcadero supports (in blog) android 5.1 but I can´t deploy. By default says that Install failed older sdk... Changing AndroidManifest.xml > set minSdkVersion = 22 (by default 23) I can deploy but app closes when start Thank you
-
Javascript Window.Print Doesn't Work in Android or iOS using TWebBrowser
CarloM posted a topic in FMX
Hi, I have a embeded web app in native FMX app (ios / android) via TWebBrowser. All works ok, except Window.print. I use PDF js for viewer and print if I use web app directly on safari / chrome printing PDF works ok. Any idea ? -
Hello, I have notarized app for use on Mac, the problem is that when user download it from web. If you try to execute on Mac download folder raises an exception "permission denied". How can I avoid this problem ? Any ideas ?
-
Hello, I would like to know best practices for creating a efficient and fast DBlookcombo. Example: LookupComboBox from UniGui that allows use remote queries. Any ideas ? Thank you
-
Hello, I would like make a massive insert into same partition key, On C# I see code but not in delphi. Any workaround ?
-
Thank Dave. works like a charm with Delphi Sydney
-
Hi, I need to store into DB.sqlite GPS coords in Android, the problem is that I need get all time even if application is not active. I use delphi sydney, any recomendations ? Thank you in advance
-
Thank you, Used this class for years ago ? is it compatible with most outlook (2010.... 365 ) ?
-
Hello, Last years I used Mapi for compose email and send it via outlook. I found this code that works well on my PC. Anybody can say me what is the best method for compose and send on outlook actually ? const olMailItem = 0; var Outlook, MailItem: OLEVariant; begin try Outlook := GetActiveOleObject('Outlook.Application'); except Outlook := CreateOleObject('Outlook.Application'); end; MailItem := Outlook.CreateItem(olMailItem); MailItem.Recipients.Add('test@gmail.com'); MailItem.Subject := 'your subject'; MailItem.htmlBody := Memo1.Lines.Text; MailItem.Display; Outlook := Unassigned;
-
As I understand... I need to copy manually files to another folder ? I'm surprised...
-
I can't believe the installer can't copy the files directly to the user folder with read and write permissions
-
But, copy manually files on first run ?