Jump to content

BruceTTTT

Members
  • Content Count

    31
  • Joined

  • Last visited

Everything posted by BruceTTTT

  1. BruceTTTT

    10.4.1 issues

    The TSpeedButton implementation is broken in 10.4.1 and is still not fixed. Read here: https://quality.embarcadero.com/browse/RSP-30755
  2. BruceTTTT

    More performance Stringgrid sorting algorithm help

    I had my own heap sort algorithm that worked well and allowed for nested row sorts, and controlling sort based on integers, strings, and dates. It worked very well and was much faster than a bubble sort. For fun, I rewrote this using TStringLists, exporting the column data (that's sorted) to the stringlist, using its sort routine with the anonymous function parameter to select the type of data, then moving the original rows around based on the results of the TStringList sort. To my surprise, this was faster than the heap sort. Not by much, but noticeable with thousands of rows. I now use it as my native grid sort.
  3. Try this: pushd \Program Files (x86)\Embarcadero\Studio\21.0\bin rsvars.bat GetItCmd.exe -c=useonline bds.exe
  4. BruceTTTT

    Macro Template Problem with ]

    Using Delphi 10.4, if I create a template that ends with a closing square bracket, GExperts blanks out the template every time and won't accept the information. Adding a space after the ] will work though. e.g. Cell[|] will be blanked. Any ideas? Bruce
×