Jump to content

uligerhardt

Members
  • Content Count

    94
  • Joined

  • Last visited

Everything posted by uligerhardt

  1. uligerhardt

    ImageLists. One or Multiple??

    DevEx cxImageLists at least store the individual images in separate blob subitems. And they don't change the blobs on every occasion.
  2. uligerhardt

    Custom component Resource PRINTFORM not found

    I'll try to rephrase: As your package is called JasotComponents, * means JasotComponents, so the 3 $R lines are equivalent to: {$R JasotComponents.res JasotComponents.rc} {$R JasotComponents.res JasotComponentsResource.rc} {$R JasotComponents.res JasotComponents.rc} So you're instructing Delphi to include the resource file JasotComponents.res 3 times, and to create it alternatingly from JasotComponents.rc and JasotComponentsResource.rc. That probably won't work. 😉
  3. uligerhardt

    Custom component Resource PRINTFORM not found

    Shouldn't the second $R line be {$R JasotComponentsResource.res JasotComponentsResource.rc} ? Also, the first and the third $R line refers to identical files, doesn't it?
  4. uligerhardt

    Current VCLZip?

    Hello all! We are using an "prehistoric" version (2.21 AFAICT) of VCLZip by Kevin Boylan together with Delphi 2007. After finally making the switch to an Unicode version of Delphi we get some errors with invalid zip files and the like. In the internet I found references to an Unicode aware version 4.50 but no way to to licence or download it. Does anybody have any hints with this?
  5. uligerhardt

    Current VCLZip?

    Not yet, But the Synopse stuff is usually good, so I'll might have a look.
  6. uligerhardt

    Current VCLZip?

    FWIW: I sent an e-mail to his bigfoot address and got an "Undeliverable". 😞
  7. uligerhardt

    Current VCLZip?

    XE6 for now. I know about System.Zip.TZipFile, but IIRC it didn't have all features we use from VCLZip. I should look again.
  8. As an Ingress player, I always have to check whether I am in a Niantic or an Embarcadero forum, when I read stuff like this.
  9. uligerhardt

    Windows Software Development Kit - why?

    At least I'd be careful with letting an official Ferrari mechanic touch my Enzo 😉 Ferrari Enzo zerstört: Mechaniker zerlegt bei Spritztour Millionen-Rarität | STERN.de
  10. uligerhardt

    Compilng in x64 gives a warning I see why occurs

    Would be nice if the warning specified that non-const aspect. 😉
  11. Try storing zip.FileNames in a local variable. Edit: ... and maybe drop vZipContents and use that local variable instead.
  12. uligerhardt

    Updating Table of Contents in docx with OOXML

    I'd compare your original docx before and the one after the user pressed "Yes". Maybe you can see what you have to change in the differences.
  13. uligerhardt

    Found and remove unused uses units

    That's only true for the uses-clause entries that the form designer manages. (Which is a tiny fraction in my development.)
  14. uligerhardt

    10.4.1+ Custom Managed Records usable?

    If I'm not missing anything, Oxygene didn't "reverse" it, but kept it consistent with Pascal.
  15. There is http://docwiki.embarcadero.com/RADStudio/Sydney/en/Writeable_typed_constants_(Delphi). It's just off per default for some years now.
  16. uligerhardt

    win32metadata

    https://blogs.windows.com/windowsdeveloper/2021/01/21/making-win32-apis-more-accessible-to-more-languages/ Sounds very interesting.
  17. uligerhardt

    win32metadata

    Ok, then I misunderstood you. 😎
  18. uligerhardt

    win32metadata

    This is about generating wrappers for classic Win32 API, Not some WinRT stuff. Autogenerate Windows.pas! 😎
  19. uligerhardt

    List&Label - HWND of preview form

    Hello! I want to show a MessageBox from inside a TL21_.OnViewerButtonClicked event handler and need the window handle of the preview form for that. Any idea how to get there?
  20. uligerhardt

    List&Label - HWND of preview form

    I tried it just now, and it works AFAICT - I used GetWindowText(gPrintReportWnd, ...) to verify. Thanks a lot.
  21. uligerhardt

    List&Label - HWND of preview form

    Here is the relevant code, a bit condensed: type TPrintLLReportEventHandler = class public procedure OnViewerButtonClicked(Sender: TObject; Button: TViewerButton; var PerformDefaultAction: Boolean); end; { TPrintLLReportEventHandler } procedure TPrintLLReportEventHandler.OnViewerButtonClicked(Sender: TObject; Button: TViewerButton; var PerformDefaultAction: Boolean); begin if Button = vbExit then begin MessageBox(AWnd, .....); // <= I'd like to get the preview form's window handle here for AWnd end; end; var evh: TPrintLLReportEventHandler; evh := TPrintLLReportEventHandler.Create; try MyLLReportInstance.OnViewerButtonClicked := evh.OnViewerButtonClicked; // Show preview here (using LL_PRINT_PREVIEW) finally evh.Free; end;
  22. uligerhardt

    List&Label - HWND of preview form

    Sorry, forgot to mention it in the message body. It's the List&Label report component.
  23. uligerhardt

    TdxfOutlookBar for Delphi 5

    Yes. I guess DevEx wouldn't like us to pass links around, however outdated the components may be.
  24. Very good. 🙂
  25. uligerhardt

    how to get a pseudo-design mode at run-time

    No, that's "original content" that I just created just for this thread. 😄
×