Jump to content

KenR

Members
  • Content Count

    126
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by KenR

  1. 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;
  2. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

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

    wuppdi Welcome Page for Delphi 11 Alexandria?

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

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Does also not show the focused project or is this just a light mode issue too?
  5. 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.
  6. KenR

    wuppdi Welcome Page for Delphi 11 Alexandria?

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

    Delphi 11.2 Welcome Screen

    Thanks. That does go a long way towards what I want. Shame drag and drop is not working!
  9. 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
  10. 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 😀
  11. 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.
  12. 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?
  13. 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
  14. Is TIcsRestEmail documented anywhere as I can't get the demo to work.
  15. KenR

    Delphi 11 for iOS 16 ?

    I have not tried uploading to the AppStore yet.
  16. 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.
  17. KenR

    Hiring-related question: Delphi + javascript ?

    Please be aware that the FNC components do not have the ElementID property.
  18. 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.
  19. Or this https://stackoverflow.com/questions/43020737/delphi-capture-osx-console-output
  20. Dues this work? https://stackoverflow.com/questions/25654425/run-a-terminal-command-with-delphi-xe7-fmx
  21. 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.
  22. 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;
  23. An unlimited amout as I don't charge myself!
×