Jump to content

Skrim

Members
  • Content Count

    55
  • Joined

  • Last visited

Everything posted by Skrim

  1. Skrim

    XmlLite.Dll

    D 10.4.2 and Win10. My program suddenly will not execute spesific parts of my program, but crashes. (No change in actual code) When that happens also the Delhi IDE crashes. There might be a file called XmlLite.Dll that causes this, but I'm not sure. The file is on my pc in several directories. Anybody else experienced this? Maybe reinstall Delphi? Regards, Ole
  2. If you have a Postgres database and need to document it, this is a nice tool. https://www.yohz.com/dbdoc_details.htm Just a happy Customer.
  3. Delphi 10.4 procedure TForm1.Button1Click(Sender: TObject); var i : byte; j : integer; begin screen.Cursor:=crHourGlass; try j:=30000; i:=j; showmessage(inttostr(i)); finally screen.Cursor:=crDefault; end; end; If I set i=3 then inttostr gives me 3 If I set i=3000 then inttostr gives me 184 If I set i=30000 then inttostr gives me 48 I thought 3000 and 30000 would raise an exception, as they are out of range?
  4. Am I allowed to tip about a software program here, not directly related to Delphi, or is that considered spam? It's a little utility I think make my programming task a little bit easier. It's not made by me, nor have I any connections to the company.
  5. Thanks, I thought they were set by default. Moral, don't take anything for granted 🙂
×