Jump to content

direktor05

Members
  • Content Count

    85
  • Joined

  • Last visited

Community Reputation

2 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. direktor05

    errors building apk

    It is not there. There are xml, dex and o, so, and dcu file. But no apk.
  2. direktor05

    errors building apk

    That's good! However even new project created with Delphi 12 will not make me apk, but at least it will build the project without errors. But where is the apk file?
  3. direktor05

    errors building apk

    Yes but seems Android is installed, but files are really missing in embaracadero\studio\23.0\lib\android\release\ This is installed and it seems I can't change much
  4. direktor05

    errors building apk

    I took ToDo official example and tried to build it - create apk in Delphi 12. I get a bunch of errors I have no idea where they came from. Maybe there was something wrong with my installation? What to do?
  5. direktor05

    strange errors appear with standard VLCs

    I have some paths screwed. It calls me always the wrong package that I have fixed already, still shows me the wrong unfixed code.
  6. direktor05

    strange errors appear with standard VLCs

    Damn you are genius! VCL was not added in the scope.
  7. direktor05

    strange errors appear with standard VLCs

    Yea right, here is empty
  8. direktor05

    strange errors appear with standard VLCs

    It maybe not complete but for sure not empty. OnGuard is the component called from main project reg4.exe as seen below via another package. EviTrivial unit (from another package) will include OnGuard package However OnGuard is perfectly well built without errors on it's own: But when built inside reg4.exe project it will throw errors
  9. direktor05

    strange errors appear with standard VLCs

    Here you have screenshot
  10. direktor05

    strange errors appear with standard VLCs

    The biggest problem is if I throw this components out would have to rewrite a lot of code which would take me more time than including them.
  11. direktor05

    strange errors appear with standard VLCs

    Exactly. Because it's an old app still requiring components from this package. Like TnTButtons and others. But it's making a mess. Also TPOnGuard also causing the same kind of problems. It can be built by itself without errors if included in another project via uses it causes Forms not found error and similar standard Delphi VCLs can no longer be recognized.
  12. direktor05

    strange errors appear with standard VLCs

    I get errors like: Could not compile used unit Forms, StdCtrls Unit Forms not found inside some components pas files. Mostly using this component in Delphi 12: https://github.com/rofl0r/TntUnicode What could be the problem and how to solve it? Is it possible that some components Forms class definition of overload is overriding standard VCL units?
  13. I fixed it using ChatGPT but I can't understand it properly
  14. Hello, can someone explain what is wrong here and why this doesn't fit together and why I can't typecast Int64(Integer): Operator not applicable to this operand type error below: How to fix this? function TDIUnicodeWriter.WriteDecimalNumber(ValueNumber: Int64): Boolean; label 1; var StartDiv: Int64; i: Cardinal; begin if ValueNumber < 0 then -> HERE begin Result := WriteCharW(WC_HYPHEN_MINUS); if not Result then Exit; ValueNumber := -ValueNumber; -> HERE end; StartDiv := 1000000000000000000; -> HERE (Incompatible types) repeat i := ValueNumber div StartDiv; -> HERE if i > 0 then Break; StartDiv := StartDiv div 10; -> HERE if StartDiv < 10 then goto 1; -> HERE until False; repeat Result := WriteCharW(WA_NUM_TO_HEX[Cardinal(i)]); if not Result then Exit; Dec(ValueNumber, i * StartDiv); StartDiv := StartDiv div 10; -> HERE if StartDiv < 10 then Break; -> HERE i := ValueNumber div StartDiv; -> HERE until False; 1: Result := WriteCharW(WA_NUM_TO_HEX[ValueNumber]); -> (Incompatible types) end;
  15. direktor05

    BDE

    I found it in bin folder
×