KenR
Members-
Content Count
130 -
Joined
-
Last visited
-
Days Won
1
Everything posted by KenR
-
Hi, I have been using TWSocket very successfully for a few years now in a service. It listens for and processes HL7 messages. At one hospital however it seems to hang while it is seemingly not doing anything. I am using a TICSLogger but am not getting any errors. I am presuming this is a socket error. The NHS typically rum a lot of processes on rather underpowered old hardware. Can anyone please point me in the right area as to how I might trap, report and, preferably, have the socket start listening again. Thanks in advance for any help given. Ken
-
I believe that https://github.com/DelphiWorlds/Kastri has a RichEdit component.
-
How to display one of several web pages at one URL
KenR replied to David Schwartz's topic in Network, Cloud and Web
I use a TWebHTMLDiv for this purpose. -
Try Chr(39)
-
From what I remember when playing around with Miletus the settings do not work at design time. Add the fields you want to the grid, you will get an error but ignore it. In the OnCreate event of the form do something like: MiletusMSSQLDBDriver1.Server:='Server Name'; MiletusMSSQLDBDriver1.DataBase:='Database Name'; MiletusMSSQLDBDriver1.OSAuthent:=True; //If OSAuthent is False, you'll need to set UserName and Password: MiletusMSSQLDBDriver1.UserName:=''; MiletusMSSQLDBDriver1.Password:=''; MiletusClientDataSet1.DBDriver:=MiletusMSSQLDBDriver1; MiletusClientDataSet1.QueryText:='select * from Whatever;'; MiletusClientDataSet1.IndexName:='Index Name'; WebDataSource1.DataSet:=MiletusClientDataSet1; WebDBGrid1.DataSource:=WebDataSource1; Add a TWebButton and in the OnClick Event add: MiletusClientDataSet1.Active:=True;
-
wuppdi Welcome Page for Delphi 11 Alexandria?
KenR replied to PeterPanettone's topic in Delphi IDE and APIs
Thanks. In light mode the selected project is not very obvious. -
wuppdi Welcome Page for Delphi 11 Alexandria?
KenR replied to PeterPanettone's topic in Delphi IDE and APIs
Thanks. You have made a fantastic start! -
wuppdi Welcome Page for Delphi 11 Alexandria?
KenR replied to PeterPanettone's topic in Delphi IDE and APIs
Does also not show the focused project or is this just a light mode issue too? -
wuppdi Welcome Page for Delphi 11 Alexandria?
KenR replied to PeterPanettone's topic in Delphi IDE and APIs
Thanks. Couple of other issuues: When hovering over project the text disappears. When using the original Delphi version, if there are more projects than can fit on the screen they are shown in multiple columns. It would be nice to have that feature in your plugin. -
wuppdi Welcome Page for Delphi 11 Alexandria?
KenR replied to PeterPanettone's topic in Delphi IDE and APIs
Recently Used Projects, within the plugin, doesn't seem to be kept up-to-date. -
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,
-
Thanks. That does go a long way towards what I want. Shame drag and drop is not working!
-
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
-
Sorry about that. I must have been having a senior moment as I was confusing it with the library path (which I have been using all morning). I've been using Delphi since the days of Turbo Pascal so I have no excuse 😀
-
Sorry. DPI is 96 but I can't see that as related as I cannot edit the path of the selected package at all.
-
POP, IMAP and SMPT with OAuth2 (Microsoft Office 365 services)
KenR replied to Milo G's topic in Network, Cloud and Web
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? -
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