-
Content Count
37 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Jirka52
-
When will we have a 64-bit IDE version ?
Jirka52 replied to luciano_f's topic in Delphi IDE and APIs
I voted for both RSP -
Hi. Try Kastri - bar code reader example, it is great! https://github.com/DelphiWorlds/Kastri
-
Hi. Try to use "Total commander" and search for *.pas files which contain text e.g. "TDspItem"
-
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
-
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.
-
Fatal Error F2039 - Could not create output file
Jirka52 replied to Willi Fuchs's topic in General Help
It happens also with Delphi 11.2 Alezandria. It is antivirus -
Disable "Error insight" in Options - User interface - Editor - Language - page "Error insight"
-
DelphiFeeds.com works now
-
Works now for me
-
Simple solution -> disable :Error insight". I did it in 11.2
-
Error Fixed Length column [MyColumn] data length mismatch in ORACLE
Jirka52 replied to icarpio's topic in Databases
You got the answer in error message. You want to insert some text with length 34 charcters into column with maximal length 4 characters. -
Running Tokyo 10.2.3 dcc32 from the command line
Jirka52 replied to David Schwartz's topic in Delphi IDE and APIs
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