Jump to content

y2nd66

Members
  • Content Count

    17
  • Joined

  • Last visited

Posts posted by y2nd66


  1. With shortcut "Delphi 11 (DPI Unaware)" works normalhere more details and here command line switches

     

    7 hours ago, Reinier Sterkenburg said:

    I never found a smart way to copy the settings from a previous Delphi version to a new version. 

    I've been using an export of the registry entry since a few versions ago, at least for Toolbars. For example, from 10.4.2 to 11

    Export to file .reg the entry

    HKEY_CURRENT_USER\Software\Embarcadero\BDS\21.0\Toolbars

    I modify the file .reg with \21.0\ to \22.0\

    Delete entry HKEY_CURRENT_USER\Software\Embarcadero\BDS\22.0\Toolbars

    Then import .reg and "voila"... Delphi 11 with the same Toolbar configuration.

     

     

    • Like 2

  2. It is impossible to install, at least the Trial, in Delphi 11.

     

    In \XE11\packages\XE11 the files *.groupproj do not exist.

     

    And

    Quote

    Building hclcore_xe11.dproj (Release, Win32)
    ...
    [dcc32 Fatal Error] hclcore_xe11.dpk(49): F2063 Could not compile used unit 'htmlani'

     

     


  3. I'm also using a custom solution.

      IOTAIDENotifier = interface(IOTANotifier)
        ['{E052204F-ECE9-11D1-AB19-00C04FB16FB3}']
        { This procedure is called for many various file operations within the
          IDE }
        procedure FileNotification(NotifyCode: TOTAFileNotification;
          const FileName: string; var Cancel: Boolean);
        { This function is called immediately before the compiler is invoked.
          Set Cancel to True to cancel the compile }
        procedure BeforeCompile(const Project: IOTAProject; var Cancel: Boolean); overload;
        { This procedure is called immediately following a compile.  Succeeded
          will be true if the compile was successful }
        procedure AfterCompile(Succeeded: Boolean); overload;
      end;

    I set "Include version information in project" and "Do not change build number" for "All configurations - All platforms".

    Then I manage the values for the compilations at the convenience of my personal settings.

    • Like 1

  4. Is it possible to use GetAsync from another Thread than main?

    Or is it that your design logic is not for that?

     

    I try to Get a document every second from another Thread and it works fine, but GetAsync does nothing.

     

    Get do this:

    09:23:15:125am|State = httpNotConnected
    09:23:15:126am|Login www.tuenvio.cu
    09:23:15:126am|State = httpDnsLookup
    09:23:15:201am|Socket DNS Lookup Done - 181.225.247.68,181.225.247.69
    09:23:15:201am|Alternate Address: 181.225.247.68
    09:23:15:201am|State = httpDnsLookupDone
    09:23:15:201am|connect to 181.225.247.68/443
    09:23:15:201am|03203960 Socket handle created handle=1144
    09:23:15:201am|TWSocket will connect to 181.225.247.68:443
    09:23:15:338am|SessionConnected, error=0 to 181.225.247.68:443
    ...

    GetAsync only this:

    09:35:46:791am|State = httpNotConnected
    09:35:46:791am|Login www.tuenvio.cu
    09:35:46:791am|State = httpDnsLookup

     

    Thanks.


  5. 8 hours ago, Jason Wharton said:

    I am the author of IB Objects and would be interested to have a look at the changes you made to IB Objects source.  I will be able to tell you if what you have done is a good idea or not.

    Thanks,

    Jason Wharton

    Yesterday, I wrote an email trying to contact you to "support at ibobjects dot com", with the detail of the modification and asked the same, if was valid or not.

    Thanks.


  6. 13 hours ago, emailx45 said:

    "NONE" is used for universal use, or be, the "char" by itself!

    this is what i was trying to say:

    Using CHARACTER SET NONE

    If a default character set was not specified when the database was created, the character set defaults to NONE. Using CHARACTER SET NONE means that there is no character set assumption for columns; data is stored and retrieved just as you originally entered it. You can load any character set into a column defined with NONE, but you cannot load that same data into another column that has been defined with a different character set. No transliteration will be performed between the source and destination character sets, so in most cases, errors will occur during the attempted assignment.

     

    from Wiki Embarcadero for Interbase


  7. I am trying to compile an application from a few years ago.

     

    I don't remember what was the last environment where compiled it.

     

    Now I try with Delphi 10.4.1 and with IBO 5.12.1-B2967, the database is working on Interbase 7.5.1.162.

     

    The records that are texts, any visual component shows them with some strange codes.
    Any ideas how I can fix this?

     

    Thank you

     

     

    2020-12-21_142433.png

×