Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 01/18/20 in all areas

  1. Clément

    Best way to refresh static data

    Hi, Have you measure what is taking a long time? Is it the retrieval time from the SQL Server: Make sure the SQL optimizer is using the expected index. Is it downloading data to local store: Try compress , or is it the local loading time? using IN ( long list ) is not a good option in ANY database. As other suggested, use a proper table to insert the IDs and join with that table. if some SQL server don't support session table you can simulate one by creating physically the table with two columns, one with some user identification ( user name, user login, machine name or machine IP ) and another an ID. But do use a join to retrieve those rows.
  2. limelect

    Dicom VCL Library

    I have a few Dicom Sources.
  3. Angus - I emailed the files to you. Don't forget the instructions too: The installation instructions need this to be added in the readme: The Embarcadero installation adds this to the system path: C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl This however does not allow Win32 packages to be installed, to do that you need to add this path to the system path (win10=Start, Edit the system environment variables, Environment variables, System variables, Path, Edit, New:) C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\Win32 NEW projects that need to use ICS: include path: add {THE DIR YOU EXTRACTED ICS To}\source\include\103\win32 library path add C:\Users\Public\Documents\Embarcadero\Studio\20.0\BPL\Win32
  4. I still use C++ Builder 6 for some things (with ICS 5), but I missed a lot of upgrades/versions since a couple of years ago. Some of the components have issues in 10.3 as well, I think the THttpServer has errors if I add it to a form and try to compile. Let's begin with the fixes I mention above and I'll see what else I can figure out.
  5. Angus, I appreciate the work everyone does on this. My instructions above should be plenty for you to make the corrections, but if you would like me to make them and submit to you a zip with only the files changed, I can do that. The step above about replacing false with 0 might apply to other cbproj files besides 10.3 as well, so I can do a search to identify them and fix them as well. PM me your email address. Thanks, Alan
  6. Because ICS is entirely supported by volunteers, and none of us understand C++. It would be far easier to cease support for C++. I've asked for assistance in producing C++ packages in the past, and one user kindly supplied some mostly working stuff, for 10.2 which I modified for 10.3, so renaming errors are mine. But when I can not build the packages and no-one else helps, errors are inevitable. So will some-one please email me a complete working set of 10.3 C++ package files, with whatevery changes are needed for the readme, and they will be placed in the distribution. I'm not going to work from a list of instructions I can not test. Angus
×