Jump to content

KenR

Members
  • Content Count

    139
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by KenR

  1. KenR

    Delphi 11.3 is available now!

    In this day and age isn't it about time that an update can be done without having to uninstall itself!
  2. Five stars for the TMS version. This has worked perfectly for me for a number of years!
  3. KenR

    TestFlight problems

    Not quite all roses. Need to leave the changes our of the entitlements for the debug version. What's the best way of doing this?
  4. KenR

    TestFlight problems

    Yes, it did.
  5. KenR

    TestFlight problems

    Thanks Dave but that didn't make any difference. What did is editing the Entitlement.TemplateOSX.xml file and adding: <key>com.apple.application-identifier</key> <string>XXXXXX.YYYYYY</string> <key>com.apple.developer.team-identifier</key> <string>XXXXXX</string> Where XXXXXX is your Team ID and YYYYYY is your Aplication ID. I have left all of the other stuff in but will experiment with removing it. Regards, Ken
  6. KenR

    TestFlight problems

    I followed the instructions above and now Transporter uploads the package with no problems but the TestFlight tab is still showing it as "Not Available for Testing. Is there anything else I need to do? Ken
  7. KenR

    Delphi 11.2 unofficial LSP patch

    Very strange. I take it that you just copied the contents of both zips to the bin folder!
  8. KenR

    Delphi 11.2 unofficial LSP patch

    Debugging works fine for 32-bit but not 64-bit.
  9. KenR

    TWSocket Trap Errors in Service

    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
  10. KenR

    TRichEdit equivalent in FMX?

    I believe that https://github.com/DelphiWorlds/Kastri has a RichEdit component.
  11. I use a TWebHTMLDiv for this purpose.
  12. KenR

    any one work in TMS Web core ?

    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;
  13. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Thanks. In light mode the selected project is not very obvious.
  14. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Thanks. You have made a fantastic start!
  15. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Does also not show the focused project or is this just a light mode issue too?
  16. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

    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.
  17. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Recently Used Projects, within the plugin, doesn't seem to be kept up-to-date.
  18. 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,
  19. KenR

    Delphi 11.2 Welcome Screen

    Thanks. That does go a long way towards what I want. Shame drag and drop is not working!
  20. 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
  21. KenR

    Delphi 11.2 Can't install packages

    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 😀
  22. KenR

    Delphi 11.2 Can't install packages

    Sorry. DPI is 96 but I can't see that as related as I cannot edit the path of the selected package at all.
  23. 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?
×