Jump to content

Sherlock

Moderators
  • Content Count

    1211
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by Sherlock

  1. Hi there. XCode 12 has been looming in the AppStore for roughly a week now. Has anyone gotten over themselves and installed it? If so, what did Delphi have to say?
  2. Sherlock

    a pair of MM test

    Same here. Plus the tons of bots that just randomly like our posts.
  3. Sherlock

    Add test to Stringgrid

    Just trying to figure out what level of expertise to expect, and how deep the explanations should go.
  4. Sherlock

    Add test to Stringgrid

    Do you know how to add any text to a TStringGrid? Do you know how to read the contents of a TEdit?
  5. Binary DFM are devils work and must be burnt at the stake whilst vigorously waving pitchforks and shouting obscenities. Version control systems handle them poorly (not that text DFMs are far better in this regard, but, you can manage, once you move any pictures to a datamodule). Actually they are just binary blobs most of the time and will consume unnecessary storage Everything else, the other guys said
  6. Sherlock

    is the site infected?

    No unusual stuff happening on my end. But I don't have deepest insight into the machine running the server. However it it seems more likely your cookies need some cleaning up.
  7. Sherlock

    Converting simple VCL form to FMX

    @Angus Robertson He has been there...
  8. Sherlock

    10.4.1 Update

    To distinguish between add-ons and components is like distinguishing between records and classes - a good thing to ease discussions with your peers.
  9. Sherlock

    10.4.1 Released today

    Wow! Macapi got a lot of attention in this release. All the stupid integers instead of boolean usages (you know: 1 is true and 0 is false) have been corrected to boolean. Plenty of work to correct that now in my application
  10. Sherlock

    CPP or C++ Category

    I'm pretty much with @Stefan Glienke this is a Delphi forum. C++ is sometimes mentioned here, but I believe we should not muddy the waters here, plus C++ users might not be satisfied with a mere sub forum. But in the end, this is up to @Daniel
  11. Sherlock

    10.4.1 Released today

    Hmmm, have not installed that yet either, but I'll have to check if I actually have the command line tools for my current version. It has been some time since I needed XCode. Yupp, that was it. I failed to install the command line tools. Now everything is OK. XCode 11.6 btw.
  12. Sherlock

    10.4.1 Released today

    Soooo, has anyone successfully installed the Apple SDKs? I am unable to, neither macOS nor iOS works. Correct PAServer is installed and running with tested connection. Do I have to grant the PAServer some permissions, maybe?
  13. Sherlock

    10.4.1 Update

    This is a tradition and traditions are not to be messed with. No matter how annoying the are.
  14. Sherlock

    10.4.1 Released today

    Yes. It has been this way for some time now. I just trusted them to stick to that plan. Perhaps that was a lucky guess.
  15. Sherlock

    10.4.1 Released today

    It's on the very first dialogue.
  16. Sherlock

    10.4.1 Released today

    I guess anyone who hasn't jumped ship by now just doesn't care anymore. 😞
  17. Well it did have the TXPManifest Komponent. But I don't believe they really used it themselves.
  18. Sherlock

    how to run git commands from Delphi app

    Best practice has always been to just build the command line and execute that. No hassle with DLL changes, no issues with 32Bit vs. 64Bit and last but by far not least: easy testing by just copying the generated command line into a terminal and checking the output.
  19. Sherlock

    ICS for Linux?

    Did you try to telnet to that port from another machine?
  20. Sherlock

    I am getting TPushServiceConection undeclared

    So...what was the problem then? How did you solve it in the end? I bet there is somebody out there still fighting with this issue.
  21. Sherlock

    August 2020 GM Blog post

    As far as I can tell AP is writing about https://github.com/pyscripter/python4delphi which (in short) is a Python wrapper. It would be cool to script the Delphi IDE with Python, but I consider that to be a construction site worth leaving be at this time.
  22. Sherlock

    RansomWare blues

    With so many computers lying around, why is there no room for one with a correctly setup iptables and transparent squid(guard) with updating black lists? Better yet, IPCop + Squid? Windows is simply not safe to be directly connected to the Internet, no matter how much you fiddle around with its security settings. Seriously!
  23. Sherlock

    I am getting TPushServiceConection undeclared

    OMG...I just saw, I copied the wrong declarations to the interface. My bad! Corrected here: type TForm1 = class(TForm) Edit1: TEdit; Label1: TLabel; Label2: TLabel; Button1: TButton; MemoLog: TMemo; procedure BtnClick(Sender: TObject); procedure FormCreate(Sender: TObject); procedure OnServiceConnectionChange(Sender: TObject; PushChanges: TPushService.TChanges); procedure OnReceiveNotificationEvent(Sender: TObject; const ServiceNotification: TPushServiceNotification); But good on you, that you spotted the problem and solved it!
  24. Sherlock

    Soap Server and client downloading files

    Just let the server provide the client with a download link. Using soap to download data is quite cumbersome in my experience. Cumbersome meaning slow...and you might even need to convert binary data to a readable format like base64 server side and reconvert client side, costing more performance.
  25. Sherlock

    I am getting TPushServiceConection undeclared

    Ummm, no. those methods are intended to be part of the class TForm1. So add those declarations to the class declaration: type TForm1 = class(TForm) Edit1: TEdit; Label1: TLabel; Label2: TLabel; Button1: TButton; MemoLog: TMemo; procedure BtnClick(Sender: TObject); procedure FormCreate(Sender: TObject); procedure BtnClick(Sender: TObject); procedure FormCreate(Sender: TObject); Like this...
×