-
Content Count
563 -
Joined
-
Last visited
-
Days Won
6
Vandrovnik last won the day on December 20 2022
Vandrovnik had the most liked content!
Community Reputation
215 ExcellentRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
My futile fight with toolbars in Delphi started with Delphi X?? and continues to this day. But I found a solution: I turned off all toolbars and left only the palette on top 🙂(To be honest, I did not try to enable any of toolbars in Delphi 12.2, so I am not sure that problems persist.)
-
Inline Variables - Implicit Doubles
Vandrovnik replied to Paul H's topic in RTL and Delphi Object Pascal
foo(GetDouble) is expected error - you cannot pass function result to a procedure with var parameter. -
You can draw whatever you want in OnDrawColumnCell but AFAIK, all rows must have the same height.
-
Double, default value
Vandrovnik replied to Skrim's topic in Algorithms, Data Structures and Class Design
I just did not test, whether it works O:-) -
Double, default value
Vandrovnik replied to Skrim's topic in Algorithms, Data Structures and Class Design
Yes, it does (Delphi 12.2). -
Double, default value
Vandrovnik replied to Skrim's topic in Algorithms, Data Structures and Class Design
What about a class procedure? type tTest = class(tObject) public class procedure MyFormShow(Sender: TObject); end; ... self.OnShow:=tTest.MyFormShow; -
There is .iso for 12.2.1.
-
I have seen "REST Delphi built-in not an option", but tHTTPClient is not the same as REST, is it?
-
What about https://docwiki.embarcadero.com/Libraries/Athens/en/System.Net.HttpClient.THTTPClient_Methods ?
-
"again"? I have a check-list, what to do before, during and after the upgrade. Remove all Parnasus xxx things is there, too 🙂
-
Does it happen even in clean Delphi installation? With my applications, there is no IDE freezing.
-
For Delphi, I would use "grep" on .dfm files, searching for lines starting with "object" and may be "inherited": object ActionList1: TActionList From this lines, component type can be extracted. Remove duplicates, may be count occurencies... It does not tell from which unit that component comes, but I suppose most of them could be identified.
-
Delphi bug reports or feature requests to "vote"/comment for (important, fatal etc)/
Vandrovnik replied to Tommi Prami's topic in Delphi IDE and APIs
But still - Emba is customer, I guess they can ask Atlassian to add this functionality, which doesn't look too difficult to implement, does it? -
Delphi bug reports or feature requests to "vote"/comment for (important, fatal etc)/
Vandrovnik replied to Tommi Prami's topic in Delphi IDE and APIs
I have created that request: https://embt.atlassian.net/servicedesk/customer/portal/1/RSS-1439 They closed it as "Won't do" 😞 -
Is there following line in .pas file? {$R *.DFM}