Jump to content

Fr0sT.Brutal

Members
  • Content Count

    2268
  • Joined

  • Last visited

  • Days Won

    46

Everything posted by Fr0sT.Brutal

  1. Fr0sT.Brutal

    Server Data Path

    Just break the string by ":" and then use proper filename functions upon the right part (ExtractFilePath etc)
  2. Fr0sT.Brutal

    NetHTTPCLient, NetHTTPRequest and CURL

    Sniffers like Wireshark or Fiddler allow to see raw requests even with encrypted connection. They require installing their cert though. Otherwise you can run a HTTP=>HTTPS proxy and dump its traffic
  3. Fr0sT.Brutal

    Saving ProjectGroups to a new folder

    Why not create folder junction \project\current to point to whatever version you need. Also with simple batch file you can remap it to any previous one. But in general I'd suggest you not doing such kind of mess and use VCS
  4. Fr0sT.Brutal

    Create animated GIF in FireMonley

    I wasn't aware GIF has cured of its license. However it's still outdated. Seems now APNG, MP4 and WEBM rule but whether use them or not depends on whether you can manage to find corresponding Delphi libs.
  5. Are you on W7? There were tricks to make current RAD run on W7
  6. Fr0sT.Brutal

    Create animated GIF in FireMonley

    I doubt it. GIF is too old and also infected with proprietary license. Do you really want to create GIF file or just some animation?
  7. Fr0sT.Brutal

    Change of coding style/structure..

    Goto is an another tool in the box as well πŸ˜‰ Mainly for highly-optimized routines though (FastCode's functions are full of them). However I never needed it myself in my code
  8. Fr0sT.Brutal

    Replacing Apostrophe

    Nope on your nope πŸ˜‰ That was more or less actual when the question was asked (12 yr ago) but now, according to your estimations, it's 3x legacy. IE8 in 22 is hardly a something to consider
  9. Fr0sT.Brutal

    Windows 11 22H2 lost batch file association

    Following MS-beloved naming style, that rather would be "*.Microsoft.Windows.Application" πŸ˜„
  10. Fr0sT.Brutal

    Windows 11 22H2 lost batch file association

    Who on Earth wrote that? Some of these diff's I just can't understand (" When the error level is called using BAT, the previous command is executed. " - ?? "Commands and utilities along with the programming language make CMD unique" / "The program is just a batch script and is called a batch file" - WTH that means?), some mention ancient command.com (my W7 has no this binary and still BAT files can be run), and some are just weird. I was always thinking CMD is just a newer alias for BAT introduced just to calm down MS's NIH syndrome. P.S. EXE is even more stoneage. Why not replace it with something new? πŸ™‚
  11. Fr0sT.Brutal

    Replacing Apostrophe

    Also note that "&#39ο»Ώ;" is bad style (magic number), more correct is "'", sometime web masters could change to the latter one
  12. Fr0sT.Brutal

    Windows 11 22H2 lost batch file association

    No surprize. MS is well-known to replace good things people got used to with new buggy stuff nobody likes.
  13. Couldn't these changes be incorporated into OverbyteIcsZLibObj itself to reduce changes in "uses" sections?
  14. Fr0sT.Brutal

    32bit vs 64bit

    Maybe because many software just doesn't need to switch when things are working fine already?
  15. Fr0sT.Brutal

    Deleting string wich does include number

    Pseudocode: RegExp.Replace('regexp-that-selects-lines-without-numbers', SourceStr, '')
  16. Fr0sT.Brutal

    NetHTTPRequest PUT and api

    Start with reading docs then write code in accordance and post it here if you experience any errors. Why expecting someone writes code for you
  17. Fr0sT.Brutal

    One large unit vs multiple small units

    Small units are good for modularization but they complicate code navigation and understanding and enlarge "uses" section. As anywhere - it's important to keep the balance
  18. Fr0sT.Brutal

    Any advantage to using FastMM5??

    Moreover, if an app does no heavy memory operations (simple DB client with no significant local data processing / loading f.i.), any MM will perform well.
  19. D7 has MaxInt for sure as I use it everywhere in Copy. I really can't understand why Borland didn't make 3rd parameter optional. That magic constant likely has its origin from the very ancient versions. However, that could be High(Integer) instead... 4 is magic constant defined personally by yourself πŸ˜›
  20. Fr0sT.Brutal

    Add Icon in DBGrid cell

    Or use a more advanced grid that can display custom icons for boolean fields
  21. Fr0sT.Brutal

    DBRadiobutton

    I'd tie events to tdataset fields rather than to controls.
  22. Fr0sT.Brutal

    XML validation

    XML validation would only have sense if you had configurable set of validation rules (f.i. as another XML or XSD). Otherwise I see no reason to validate output rather than source data.
  23. Fr0sT.Brutal

    Line number of source code at runtime

    @limelect https://github.com/Fr0sT-Brutal/Delphi_StackTraces/blob/master/Ice.Utils.pas #645
  24. Fr0sT.Brutal

    ICS 8.69 and Delphi 7

    Try some built-in demo. If it won't raise exception, the problem is at your side.
Γ—