Jump to content

ConstantGardener

Members
  • Content Count

    52
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ConstantGardener

  1. ConstantGardener

    New to delphi - coming from web

    @Alexander Sviridenkov
  2. ConstantGardener

    Getters & Settters??

    ...good point, especally when your Code Insight is broken.
  3. ConstantGardener

    Getters & Settters??

    ...or you can use default parameters or even overloaded constructors with different parameters.
  4. I am signed up only for the fact that Allen Bauer comes to the party.
  5. ConstantGardener

    Q for MAPI Expert

    @Attila Kovacs Thank you for the unit!
  6. ConstantGardener

    Rest Server file transfer

    @al17nichols These are the "good old" RTC Components sold to teppi.com as one of the users.
  7. ConstantGardener

    Hot Reload in Delphi?

    Here not 5-10 minutes, but 2-3 minutes. Without question , hotload can save us hours, but in c++ it can save days. 🙂 That's the whole point.
  8. ConstantGardener

    Hot Reload in Delphi?

    On the other side: when you take the compiletimes of c++ into account the hotreload is of more interest in this ecosystem then in delphi.
  9. ConstantGardener

    Install Quickreort 10.3 RIO on Delphi RAD 104

    Take a look at this thread in the german delphipraxis. In the second part is a step by step guide for installing an old quickreport version in newer versions of delphi. U need a source-version of quickreport. https://www.delphipraxis.net/204516-quickreport-einziger-entwickler-gestorben-wie-geht-es-weiter-2.html
  10. ConstantGardener

    Looking for Spreadsheet component

    i don't know the devEx one, but the TMS thingy has a very wide range of events, procs and functions for such operations. Maybe you need to add some eventhandlers, but all in all it is very powerfull. My 2 Cent!
  11. ConstantGardener

    Looking for Spreadsheet component

    ...the TAdvStringGrid from TMS should do the trick.
  12. ConstantGardener

    Compiler detecting repeated lines?

    ....this is more a topic for static code analysis (for example TMS FixInsight)
  13. ConstantGardener

    LSP - Alexandria

    This may be the case for very complex projects, but when the Tooltip show's you the right file and classname and an Ctrl+click shows you nothing (don't open this file/class) in a not so big project (build's in 17 sec)? This drives me crazy!
  14. ConstantGardener

    LSP - Alexandria

    from @Vincent Parrett in another thread about 10.2.4 LSP : "If the code is too complex for the tooling, then the tooling needs improving, valid compiling code should not be a problem."
  15. ConstantGardener

    How to create a grid that looks like this

    Hmm ok. For me is every dependency i can eleminate from my main project a win. I try to focus on well maintained libs with sourcecode (TMS for example). A not maintained component from torry would be an absolut no go for me. my 2 cent.
  16. ConstantGardener

    How to create a grid that looks like this

    ...one more dependency for this? I would go with remy's solution.
  17. ConstantGardener

    Physically reduce jpeg image size??

    function ResponseWithScaledJPG (const AFilename : string; var Response: TIdHTTPResponseInfo) : boolean; var JPEGImg : TJPEGImage; AStream : TStream; begin result:=false; if FileExists (AFilename) then begin AStream := TMemoryStream.Create; JPEGImg := TJpegImage.Create; try JPEGImg.LoadFromFile(AFilename); if JPEGImg.Width<500 then JPEGImg.Scale:=jsFullSize else if JPEGImg.Width<1000 then JPEGImg.Scale:=jsHalf else if JPEGImg.Width<2000 then JPEGImg.Scale:=jsQuarter else JPEGImg.Scale:=jsEighth; JPEGImg.SaveToStream(AStream); result:=true; finally JPEGImg.Free; Response.ContentType := mime.ImageJPeg; Response.ContentStream := AStream; end; end; end; ....use this as base for your own solution. This function is from a little INDY webserver for responding with scaled pic's to jpeg-requests for limiting the traffic payload.
  18. ConstantGardener

    Round up to next $5

    ...it fails for values like 5,00 or 10,00. Just saying!
  19. ConstantGardener

    Round up to next $5

    function RoundUpToFive (AValue : Double) : Integer; begin result:=((Trunc(AValue) div 5)+1)*5; end; ....should do the "trick".
  20. ConstantGardener

    MAP2PDB - Profiling with VTune

    ....and "Better Translationmanager"!!!
  21. Please fix the lsp in the first place and then, and only then, think about new stuff!
  22. ConstantGardener

    Migration from BDE paradox to TFDtable or other options

    ...have a Look at NexusDb
  23. ConstantGardener

    10.4.1 Released today

    https://quality.embarcadero.com/browse/RSP-30755 ...and some new bugs/regressions. TSpeedButton dont show the correct font anymore. You can change it to any font/Size and so on, but the font stay's the same.
×