Jump to content

CarloM

Members
  • Content Count

    53
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by CarloM

  1. 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;
  2. CarloM

    TImageList changes images backgroud

    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
  3. 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 ?
  4. Hi, Has anyone tried to do this? Regards
  5. 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
  6. 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
  7. 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 ?
  8. 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 ?
  9. 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
  10. Hello, I would like make a massive insert into same partition key, On C# I see code but not in delphi. Any workaround ?
  11. 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
  12. CarloM

    How to get GPS coords in android - Delphi Sydney

    Thank Dave. works like a charm with Delphi Sydney
  13. CarloM

    Sending email and compose via Outlook

    thank you
  14. CarloM

    Sending email and compose via Outlook

    Thank you, Used this class for years ago ? is it compatible with most outlook (2010.... 365 ) ?
  15. 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
  16. CarloM

    Where to put SQLite/MDB database in UWP app

    As I understand... I need to copy manually files to another folder ? I'm surprised...
  17. CarloM

    Where to put SQLite/MDB database in UWP app

    I can't believe the installer can't copy the files directly to the user folder with read and write permissions
  18. CarloM

    Where to put SQLite/MDB database in UWP app

    But, copy manually files on first run ?
  19. CarloM

    Where to put SQLite/MDB database in UWP app

    C:\Program Files\WindowsApps\MYAPPNAME_1.0.0.0_x86__ay3z6v4jhrvfp
  20. CarloM

    Where to put SQLite/MDB database in UWP app

    at first time, for current user
  21. CarloM

    Where to put SQLite/MDB database in UWP app

    Yes, Create a folder named %APPDATA%. Not resolve
  22. CarloM

    Where to put SQLite/MDB database in UWP app

    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 ?
  23. CarloM

    Where to put SQLite/MDB database in UWP app

    Hi Lars, the question is where I specify data folders under deployment window see image for clarification
  24. CarloM

    SSL certificate for VCL Application Exe

    Thank you!
  25. CarloM

    SSL certificate for VCL Application Exe

    Hello, Digicert says that Microsoft has discontinued their SysDev program. Any cheap alternative for EV SSL code signing ? Thank you
×