

KenR
Members-
Content Count
139 -
Joined
-
Last visited
-
Days Won
1
Everything posted by KenR
-
POP, IMAP and SMPT with OAuth2 (Microsoft Office 365 services)
KenR replied to Milo G's topic in Network, Cloud and Web
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 -
POP, IMAP and SMPT with OAuth2 (Microsoft Office 365 services)
KenR replied to Milo G's topic in Network, Cloud and Web
Is TIcsRestEmail documented anywhere as I can't get the demo to work. -
I have not tried uploading to the AppStore yet.
-
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.
-
Hiring-related question: Delphi + javascript ?
KenR replied to David Schwartz's topic in Cross-platform
Please be aware that the FNC components do not have the ElementID property. -
Hiring-related question: Delphi + javascript ?
KenR replied to David Schwartz's topic in Cross-platform
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. -
Execute external program/command and capture output
KenR replied to softtouch's topic in Cross-platform
Or this https://stackoverflow.com/questions/43020737/delphi-capture-osx-console-output -
Execute external program/command and capture output
KenR replied to softtouch's topic in Cross-platform
Dues this work? https://stackoverflow.com/questions/25654425/run-a-terminal-command-with-delphi-xe7-fmx -
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.
-
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;
-
fgxnative FGX Native - crossplatform mobile native development
KenR replied to Yaroslav Brovin's topic in Delphi Third-Party
I'm retired! -
fgxnative FGX Native - crossplatform mobile native development
KenR replied to Yaroslav Brovin's topic in Delphi Third-Party
An unlimited amout as I don't charge myself! -
fgxnative FGX Native - crossplatform mobile native development
KenR replied to Yaroslav Brovin's topic in Delphi Third-Party
Seems rather expensive! -
Good to hear as I use indy a lot and it works perfectly for me. Thanks Remy for your continued involvement.
-
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?
-
Several F2084 Internal Error on Delphi 10.4.2
KenR replied to Davide Angeli's topic in Delphi IDE and APIs
I will try it on one of them. 11.0 had huge problems. -
Several F2084 Internal Error on Delphi 10.4.2
KenR replied to Davide Angeli's topic in Delphi IDE and APIs
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 -
How to save send SMTP mail to .eml file
KenR replied to Helge Larsen's topic in ICS - Internet Component Suite
I can connect fine using Indy and TLS 1.2 so please show your code. -
REST request failed: Error sending data: (12152) The server returned an invalid or unrecognized response
KenR replied to annie_cyy@yahoo.ca's topic in Network, Cloud and Web
Make sure you override the default registry settings e.g. something like RestClient.SecureProtocols:=[THTTPSecureProtocol.TLS12,THTTPSecureProtocol.TLS13]; -
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.
-
Now available on GetIt without the need to run my installation program.
-
Not sure how you are using this but using time rather than now will give you problems if starttime/endtime spans midnight.
-
Unable to create sqlite database at runtime with firedac
KenR replied to William23668's topic in Databases
Great. Pleased I could help. -
Unable to create sqlite database at runtime with firedac
KenR replied to William23668's topic in Databases
Do you have the CreateDatabase param set. e.g. FDConnection1.Params.Values['CreateDatabase']:=BoolToStr(not FileExists(FDConnection1.Params.Database),True); -
Does anyone know if TNetHTTPRequest automatically generates a request_id and if so can it be modified in 10.4.2?