CarloM
Members-
Content Count
53 -
Joined
-
Last visited
-
Days Won
1
Everything posted by CarloM
-
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;
-
Hello, Using TImageList changes color of images, I have a stripped png images with alpha 32. But when I close ImageList editor and re open I see images a bit changed. Any idea ? Thank you
-
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 ? -
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 -
Hello, How can I sign digitally my *.exe with a SSL EV ? RAD allows sign it for Windows Apps ? I would like use a cert like this https://www.digicert.com/code-signing/ It is expensive, any recommendation? thank you
-
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 ?
-
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 Dave. works like a charm with Delphi Sydney
-
Thank you, Used this class for years ago ? is it compatible with most outlook (2010.... 365 ) ?
-
Hi, I am trying to generate an appx with Delphi Sydney, but I dont know where deploy database file, reports files,... for read/write. When I compile for Mac use this remote path "Contents\Resources\StartUp\" for DB files, reports,.... But on Windows I don´t know if exists especial folders. Thank you so much
-
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 ?
-
C:\Program Files\WindowsApps\MYAPPNAME_1.0.0.0_x86__ay3z6v4jhrvfp
-
at first time, for current user
-
Yes, Create a folder named %APPDATA%. Not resolve
-
It does not work, It creates a %Appdata% folder. I don´t understand it, if I need to use a local MS access DB, where is the correct location path for deploy this file ?
-
Hi Lars, the question is where I specify data folders under deployment window see image for clarification
-
Thank you!
-
Hello, Digicert says that Microsoft has discontinued their SysDev program. Any cheap alternative for EV SSL code signing ? Thank you