Jump to content

Vandrovnik

Members
  • 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 Excellent

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Vandrovnik

    Delphi 12.2 Toolbars strange behavior

    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.)
  2. foo(GetDouble) is expected error - you cannot pass function result to a procedure with var parameter.
  3. Vandrovnik

    Wrap texts in DBGrid

    You can draw whatever you want in OnDrawColumnCell but AFAIK, all rows must have the same height.
  4. I just did not test, whether it works O:-)
  5. Yes, it does (Delphi 12.2).
  6. What about a class procedure? type tTest = class(tObject) public class procedure MyFormShow(Sender: TObject); end; ... self.OnShow:=tTest.MyFormShow;
  7. Vandrovnik

    12.3 or 13/14 as next?

    There is .iso for 12.2.1.
  8. Vandrovnik

    Best internet components

    I have seen "REST Delphi built-in not an option", but tHTTPClient is not the same as REST, is it?
  9. Vandrovnik

    Best internet components

    What about https://docwiki.embarcadero.com/Libraries/Athens/en/System.Net.HttpClient.THTTPClient_Methods ?
  10. Vandrovnik

    Delphi 12.2 Patch 1

    "again"? I have a check-list, what to do before, during and after the upgrade. Remove all Parnasus xxx things is there, too 🙂
  11. Vandrovnik

    Delphi 12.2 Patch 1

    Does it happen even in clean Delphi installation? With my applications, there is no IDE freezing.
  12. Vandrovnik

    Identifying Third-Party and Custom Components

    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.
  13. 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?
  14. I have created that request: https://embt.atlassian.net/servicedesk/customer/portal/1/RSS-1439 They closed it as "Won't do" 😞
  15. Vandrovnik

    Toggle Form/Unit

    Is there following line in .pas file? {$R *.DFM}
×