Jump to content

Vandrovnik

Members
  • Content Count

    523
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by Vandrovnik


  1. On 12/13/2021 at 8:13 AM, dummzeuch said:

    Talking about WordStar: Ctrl+K N and Ctrl+Q N is yet another key combination to access the Toggle Bookmarks, so these Stack Bookmarks shortcuts fit right in.

    Ctrl+Shift+Number to place a bookmark and Ctrl+Number to go to bookmark is a bit faster.

    I am using AutoHotKey, which allows to remap pressed keys, so I have created a simple script, which remaps Ctrl+Shift+Number and Ctrl+Number to its Ctrl+K/Ctrl+Q counterparts. If you want to try, I have attached this script; it should be put in AutoHotkey.ahk.

    This works for "IDE classic" key mapping in Delphi.

    Bookmarks.txt

    • Like 2

  2. 5 hours ago, audi30tdi said:

    Thanks for answer!

     

    Is it easy to convert from Delphi7 with BDE to the nevest Delphi/Embarcadero version with FireDAC, or must I rewrite all my code??

    It depends - Delphi 7 did not support Unicode, while newest version do; all char and string variables may need attention. SizeOf(char) = 2 now, strings are not limited to 255 chars...


  3. 6 hours ago, irawan said:

    it is looks weird to have many firebirdbird files in your app folder.

    Many = 3 in this case, I have no problem with it. When customer has a new computer, he can just start the application from network share, there is no need to install it. It is also much easier to update FB client, when you can replace its files in one place and do not have to make changes on all computers.


  4. As far as I know, Firebird does not support PIVOT.

    If you really need a column for each WHNO, you can first use a query to get distinct WHNO values and then use these values to create second query, which would compute the values.


  5. 2 minutes ago, Uwe Raabe said:

    Getting IDE plugins support High DPI is not that difficult in the first place, just tedious. The tricky part is to keep it compatible with older Delphi versions. Most likely Embarcadero will not even consider the latter, so the effort stays manageable.

    They can create "Bookmarks HDPI" without the compatibility with older versions, if it is easier for them...

    • Like 1

  6. 6 hours ago, David Schwartz said:

    No. It's a bunch of paperwork the bank wants that's already in PDF files, including a few years of tax returns.

     

    They want an ID printed on every page of every PDF, then FAXed to them

     

    All the same info on every page in the same place.

     

    I wonder how long it will be before banks move their data systems into the 21st Century?

    Using Pdfium (free), you can convert PDF page to bitmap, add what you need and print this bitmap.

    Synopse contains SynPdf.pas, which allows you to create PDF (from that bitmap, for example).

    • Like 1

  7. 14 minutes ago, Alexander Elagin said:

    All this once again raises a question about a LTS verison of Delphi. Let those who need yearly new bells and whistles have their yearly releases, and the others who need to have a solid stable version have it with all the necessary patches.

    In the past, I was also happy with one version for many years, but once you use Delphi to create an application for Android and you want to keep this application up to date in Google Play, you probably need this yearly new bells - without it, Google Play will not allow you to upload updates for older API.

    • Like 1

  8. 8 hours ago, David Heffernan said:

    Didn't they announce a few years ago that they would maintain a number of older versions with important patches, for some time after release of major upgrades, but then never did. 

    I guess they do not have any free resources to backport changes to older versions. In that situation, I prefer current situation - use resources to patch and improve just the current version and don't split resources over two or more versions.

×