Jump to content

tgbs

Members
  • Content Count

    83
  • Joined

  • Last visited

Posts posted by tgbs


  1. 14 hours ago, Ian Barker said:

    Well, by that I assume you mean you're getting marketing emails. Yes, they are on a different system. So are the blogs and a few other servers and services - for example QP and my.embarcadero.com download servers are working.

    For the email you don't want there is always an unsubscribe link - if you click on that they will remove you from the ones you don't want - in fact it's a legal requirement in most countries that they do.

    I cannot register for any webinar clicking on link from email

    Unable to connect
    
    An error occurred during a connection to lp.embarcadero.com.
    
        The site could be temporarily unavailable or too busy. Try again in a few moments.
        If you are unable to load any pages, check your computer’s network connection.
        If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web.

     


  2. 49 minutes ago, Ian Barker said:

    Well, by that I assume you mean you're getting marketing emails. Yes, they are on a different system. So are the blogs and a few other servers and services - for example QP and my.embarcadero.com download servers are working.

    For the email you don't want there is always an unsubscribe link - if you click on that they will remove you from the ones you don't want - in fact it's a legal requirement in most countries that they do.

    I don't mind getting ad emails once a day. It's strange to me that of all the services, this is the only one that works every day without interruption. Sorry


  3. The numbers are indicative and taken from a database. I expect Delphi to behave as described in the documentation (help). I have not read anywhere that it is possible to have a difference between the same code for a Windows 32 and 64 bit application. I don't think if I interfere with the platforms. And again I ask why, for example, in a 64-bit program, rounding depends on specific numbers. Using the same types of variables and functions one rounds up and the other down. I haven't touched the rounding settings and debugged that is rmNearest


  4. program Project2;
    {$APPTYPE CONSOLE}
    {$R *.res}
    uses
      System.SysUtils,
      System.Math;
    begin
        var a,b:double;
        a:=1.015; b:=2.275;
        writeln(round(a*Power(10,2)));
        writeln(round(b*Power(10,2)));
        readln;
    end.

     

    Please run as 32 and 64bit

     

    I split this off to its own topic, so that future readers will find this tightly packaged. Please consider creating a new thread for any question/issue/remark that is not exactly the same as the opening post of a thread - Sherlock


  5. "connection was rejected by remote server" - maybe different server and client version. IBX is written for IB not for FB. If app is using FB then grab dll from FB install. But rewrite program to use Firedac or native FB client. Also run Process explorer and see what dlls is using app with Debug(working) and Release.

×