

KenR
-
Content Count
142 -
Joined
-
Last visited
-
Days Won
1
Posts posted by KenR
-
-
Hi,
Is there any way of customizing the favourite projects in the Welcome screen? Prefarably with user defined groups and the ability to change the order they are displayed in.
Thanks,
-
On 9/14/2022 at 5:33 PM, Remy Lebeau said:There is currently a sasl-oauth branch in Indy's GitHub repo which adds new SASL components for using OAuth tokens with the POP3/IMAP4/SMTP clients.
Yes, because each service provides their OAuth tokens in their own ways. So, outside of POP3/IMAP4/SMTP, you have to first obtain the tokens for the particular services you want to talk to, and then you can give those tokens to Indy for POP3/IMAP4/SMTP authentication.
I have an application which sends mail-merged emails on behalf of multiple users per installation. They configure the email server thereselves via options in the application and I know some are using Outlook 365. This is not the main function of the software but is very important as, besides sending emails in the application, a service also sends reminder emails during the night. I have always used Indy for this but looks like I am going to have problems come 22nd October and am looking for the best way forward. I really do not want to switch away from Indy as it has been very reliable for many years. Can you please give any further information on how I can do this using the sasl-auth branch?
-
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
-
QuoteICS has a TIcsRestEmail component that supports the MS Graph interface, just basic functions to read and send email at the moment, demo in the OverbyteIcsHttpRestTst sample.
Is TIcsRestEmail documented anywhere as I can't get the demo to work.
-
I have not tried uploading to the AppStore yet.
-
1
-
-
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.
-
1
-
-
1 hour ago, David Schwartz said:As it happens, there are a bunch of properties in both the WebCore and FNC UI components that let you insert HTML tags to fiddle with things inside the DOM. I don't have a good understand of that side of things, and I'm not sure how many Delphi devs do either. But folks who work with JS know this stuff cold.
Please be aware that the FNC components do not have the ElementID property.
-
1
-
-
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.
-
-
-
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; -
12 hours ago, Uwe Raabe said:How much of paid work can you put aside to write it yourself?
I'm retired!
-
1 hour ago, mvanrijnen said:How much can you code for $549, and get the bugs fixed the year on for $249 ?
An unlimited amout as I don't charge myself!
-
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?
-
I will try it on one of them. 11.0 had huge problems.
-
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
-
I can connect fine using Indy and TLS 1.2 so please show your code.
-
Make sure you override the default registry settings e.g. something like
RestClient.SecureProtocols:=[THTTPSecureProtocol.TLS12,THTTPSecureProtocol.TLS13];
-
Now available on GetIt without the need to run my installation program.
-
3
-
-
Not sure how you are using this but using time rather than now will give you problems if starttime/endtime spans midnight.
-
1
-
-
14 minutes ago, William23668 said:wow this solved the problem, I never read about this parameter before. many thanks
Great. Pleased I could help.
Delphi 11.2 Can't install packages
in General Help
Posted
I have been installing packages all morning with no problems. The last thing I did was install the experimental version of GExperts. After doing so the filepath cannot be edited and the ... button on the right is missing. I have uninstalled GExperts but still cannot add any packages. I have rebooted but still the same.
Any ideas?
Thanks