-
Content Count
1291 -
Joined
-
Last visited
-
Days Won
28
Posts posted by Sherlock
-
-
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?
-
1
-
-
This is a tradition and traditions are not to be messed with. No matter how annoying the are.
-
1
-
-
1 minute ago, Anders Melander said:Was I meant to just run the 10.4.1 installer and have that perform the uninstall?
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.
-
1
-
-
-
4 hours ago, bdw_nz20 said:For C++ users its a real shame there is yet still no fix for Code Completion not working now for 3-4 years.
I guess anyone who hasn't jumped ship by now just doesn't care anymore. 😞
-
1
-
-
1 minute ago, dummzeuch said:I'm pretty sure it didn't. If was released only a few months after Windows XP.
Well it did have the TXPManifest Komponent. But I don't believe they really used it themselves.
-
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.
-
2
-
-
Did you try to telnet to that port from another machine?
-
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.
-
1
-
-
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.
-
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!
-
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!
-
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.
-
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...
-
Just now, Clément said:LOL!!
Don't worry I have precedence... I founded DHS when I was still in high school,Turbo Pascal and Turbo C++ ruled the world ( a long time ago , in a galaxy far away... ) ...
And I bet they hate you for it
-
Damned be those blogs...
The target of this blog is obviously a more experienced clientele, and Marco failed to mention that. What you did in post #4 was half way right. You need to add the declaration of those methods in the interface of the class TForm1 as well - right after FormCreate should be fine.
-
OK, that is not enough. You need to expand the declaration of your TForm1 class to include the definition of those methods. I suggest you work through some form of Delphi primer first. Just to get to know the basics.
-
What do you mean "when I do this"? Do you enter those procedure stumps without interface declaration? Please check the documentation on this http://docwiki.embarcadero.com/RADStudio/Rio/en/Procedures_and_Functions_(Delphi)
-
Slightly OT: dhsPinger has an ominous ring to it. Pinging the DHS sounds like something you should not do lightheartedly.
-
1
-
1
-
-
9 hours ago, Remy Lebeau said:I really wish Delphi would stop mimicking DotNet. Delphi IS NOT DotNet!
Aye, there's the rub.
I propose exchanging DotNet with <SomeLanguage>. But folks keep saying "I want <SomeLanguage> feature x, because that is so cool, and I simply can't write my application without it". And then we get some half cooked thing which resembles <SomeLanguage> feature x by intent, but is buggy and breaks other stuff...
-
2 hours ago, David Heffernan said:A painful read from a development team that has bitten off way more than it can chew.
Something tells me, it was not the team that took that bite...
-
Yeah, all the cool kids want to JavaScript, while banks and insurance companies are going out of their way to pay regal salaries to those old COBOL geezers. COBOL delivers, where JS just looks shiny.
-
2
-
-
I didn't read the book, but I'm guessing that only applies when you add those programmers to the same problem. Luckily Delphi has a ton of problems, that could each feed a programmer for at least a month
-
6
-
5
-
-
12 minutes ago, Rollo62 said:Don't mess with youself too much,
if Microsoft shows not any attempt to make these controls practically more usable since the last 20+ years, why should we do ?I must really say that meanwhile I hate to fix all the quirks in OS, IDE, tools, libraries, etc.
Enough to do with my own, selfmade errorsAnd in the end, what is the effort worth? Just to say: "In my product 1+1 is still 2 but it looks better than the others".
10.4.1 Released today
in Tips / Blogs / Tutorials / Videos
Posted
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.