Jump to content

Jirka52

Members
  • Content Count

    35
  • Joined

  • Last visited

Everything posted by Jirka52

  1. Jirka52

    General Help Indeed...a long-shot here....

    Hi. Try to use "Total commander" and search for *.pas files which contain text e.g. "TDspItem"
  2. Hi. I just wrote the same application for Android - bar code scanner for our store manager. I used communication via REST server and it works perfect. See: https://docwiki.embarcadero.com/RADStudio/Sydney/en/Tutorial:_Using_a_REST_DataSnap_Server_with_an_Application_and_FireDAC
  3. I have tested it today and it works. Delphi 11.3, Samsung A52s with Android 13. However, debugging works only for Android 32 bit. Android 64-bit debugging is now working in RAD 11.3.
  4. Jirka52

    Fatal Error F2039 - Could not create output file

    It happens also with Delphi 11.2 Alezandria. It is antivirus
  5. Jirka52

    Code completion failure

    Disable "Error insight" in Options - User interface - Editor - Language - page "Error insight"
  6. Jirka52

    Delphifeeds.com??

    DelphiFeeds.com works now
  7. Jirka52

    Is Embarcadero's DocWiki down?

    Works now for me
  8. Jirka52

    2 errors that do not exist?

    Simple solution -> disable :Error insight". I did it in 11.2
  9. You got the answer in error message. You want to insert some text with length 34 charcters into column with maximal length 4 characters.
  10. Jirka52

    Running Tokyo 10.2.3 dcc32 from the command line

    I use MS Build this way in batch file, Windows 10, Delphi 10.2.3. Nice post is here: http://www.delphifeeds.com/go/s/155085 @ECHO OFF @SET BDS=C:\Program Files (x86)\Embarcadero\Studio\19.0 @SET BDSINCLUDE=C:\Program Files (x86)\Embarcadero\Studio\19.0\include @SET BDSCOMMONDIR=C:\Users\Public\Documents\Embarcadero\Studio\19.0 @SET FrameworkDir=C:\Windows\Microsoft.NET\Framework\v3.5 @SET FrameworkVersion=v3.5 @SET FrameworkSDKDir= @SET PATH=%FrameworkDir%;%FrameworkSDKDir%;C:\Program Files (x86)\Embarcadero\Studio\19.0\bin;C:\Program Files (x86)\Embarcadero\Studio\19.0\bin64;C:\Users\Public\Documents\Embarcadero\InterBase\redist\InterBase2017\IDE_spoof;%PATH% @SET LANGDIR=EN @SET BUILD_CONFIG=Release @SET START_BUILD_STR=Start of building REM LO_SintPro.dll REM LO_Slos.dll @SET LO_Slos="d:\Data Delphi\MyProjects\Dressler\LOCO_upgrade\Loco2\progr_dv_RAD102\DLLs\Lo_Slos\LO_Slos.dproj" @ECHO %START_BUILD_STR% %LO_Slos% DEL "d:\Data Delphi\MyProjects\Dressler\LOCO_upgrade\Loco2\progr_dv_RAD102\DLLs\Lo_Slos\LO_Slos.dll" MSBuild %LO_Slos% -t:clean -p:config=%BUILD_CONFIG% -p:platform=Win32 MSBuild %LO_Slos% -t:Build -p:config=%BUILD_CONFIG% -p:platform=Win32 @ECHO Build %BUILD_CONFIG% done! pause
×