Jump to content

KenR

Members
  • Content Count

    139
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by KenR

  1. I am using the "Email Settings" tab. The "Test Redirect" button works. The "Login to Email" button pulls up the OAuth screen and allows me to give permission for the application but then displays the following. Any ideas? Failed to Generate App Token App Authorization Code: M.R3_BL2.dd7acb9d-a4ab-a11d-a988-120004ca064b
  2. Is TIcsRestEmail documented anywhere as I can't get the demo to work.
  3. KenR

    Delphi 11 for iOS 16 ?

    I have not tried uploading to the AppStore yet.
  4. KenR

    Delphi 11 for iOS 16 ?

    I can compile and run an app on an iOS16 device. iOS does require XCode 14. I have not been brave enough yet to add iPhoneOS 16.0 in the SDK Manager so it is working with iPhoneOS 15.0.
  5. KenR

    Hiring-related question: Delphi + javascript ?

    Please be aware that the FNC components do not have the ElementID property.
  6. KenR

    Hiring-related question: Delphi + javascript ?

    I never had any javascript experience before using TMS Web Core but from my experience it has been quite easy to integrate 3rd party components such as the DevEx DevExtreme DataGrid and others.
  7. Or this https://stackoverflow.com/questions/43020737/delphi-capture-osx-console-output
  8. Dues this work? https://stackoverflow.com/questions/25654425/run-a-terminal-command-with-delphi-xe7-fmx
  9. KenR

    "Home made" data replicaion with Nexusdb

    I have been doing my own replication using NexusDB for years. Basically in the application there are triggers for each table that needs to be synchronised which inserts a record for every field changed into a simgle table, the data itself is not recorded at this time. There is a flag for the type of opertation e.g. update, delete, etc. There is a service running at each site that every minute, if there are any entries in the table, processes the records into a new table with the data, zips the table and uploads it by FTP to a central site. The same service, running at another site downloads the zip and applies the changes. Obviously there are many safeguards that need to be applied during each stage. This may seem rather Heath Robinson but it has been working flawlessly for a long time.
  10. e.g. {$IF DEFINED(IOS) or DEFINED(ANDROID)} FDConnection.Params.Database:=TPath.Combine(TPath.GetDocumentsPath,'xxx.db'); {$ELSE} FDConnection.Params.Database:=ExtractFilePath(ParamStr(0))+'xxx.db'; {$ENDIF} FDConnection.Connected:=True;
  11. An unlimited amout as I don't charge myself!
  12. Good to hear as I use indy a lot and it works perfectly for me. Thanks Remy for your continued involvement.
  13. I didn't realise Indy was not being updated. I have used it since it first became available. I feel I need to move away, but what to?
  14. I will try it on one of them. 11.0 had huge problems.
  15. 10.4.2 crashes several times a day on large projects for me. I have not yet been brave enough to try them in 11.1
  16. I can connect fine using Indy and TLS 1.2 so please show your code.
  17. Make sure you override the default registry settings e.g. something like RestClient.SecureProtocols:=[THTTPSecureProtocol.TLS12,THTTPSecureProtocol.TLS13];
  18. Does anyone know if there is an application available to generate all iOS, Android, etc. images from a single image and also update the project file. I ask because I have written one and am considering making it freely available.
  19. Now available on GetIt without the need to run my installation program.
  20. KenR

    calculete time in delphi

    Not sure how you are using this but using time rather than now will give you problems if starttime/endtime spans midnight.
  21. Great. Pleased I could help.
  22. Do you have the CreateDatabase param set. e.g. FDConnection1.Params.Values['CreateDatabase']:=BoolToStr(not FileExists(FDConnection1.Params.Database),True);
  23. Does anyone know if TNetHTTPRequest automatically generates a request_id and if so can it be modified in 10.4.2?
×