William23668
Members-
Content Count
135 -
Joined
-
Last visited
Everything posted by William23668
-
contacts sample application does not want to run on device
William23668 replied to William23668's topic in FMX
the sample work fine from this link !! ...thanks as usual -
contacts sample application does not want to run on device
William23668 replied to William23668's topic in FMX
empty application work. I provided original link on embarcadero or it can be found in samples folder -
contacts sample application does not want to run on device
William23668 replied to William23668's topic in FMX
Delphi 11.2 with October patch. Android 10. Tried the debugger only the splash screen appear and stop at it this is all I see: -
contacts sample application does not want to run on device
William23668 replied to William23668's topic in FMX
The contact sample app is here but I dont know why it does not want to work on my device https://docwiki.embarcadero.com/CodeExamples/Sydney/en/FMX.Address_Book_Sample -
How I execute shell adb commands on my android device ?
-
Now when I compile a sample android application I get many errors like unable to execute java . what causing this ?
-
your solution solved the problem many thanks
-
I know I am just trying this
-
Thanks I am reinstalling Delphi again now and will try
-
Hi I use Delphi 11.2 and I am trying to conenct it to my android device honor 8x . I followed all the steps https://docwiki.embarcadero.com/RADStudio/Sydney/en/Running_Your_Android_Application_on_an_Android_Device https://docwiki.embarcadero.com/RADStudio/Sydney/en/Configuring_Your_System_to_Detect_Your_Android_Device https://docwiki.embarcadero.com/RADStudio/Sydney/en/Installing_the_USB_Driver_for_Your_Android_Device but I got dizzy and I am unable to find device usb driver I tried google usb driver did not work http://developer.android.com/sdk/win-usb.html OEM driver also I dont know where to find https://developer.android.com/studio/run/oem-usb https://consumer.huawei.com/en/support/ the phone is visible in device manager \extras folder in your installed <SDK> directory, only contain folder called intel. What I am missing ?
-
found the problem it was the firewall !!
-
I select USB as transfer files from the phone is that right ?
-
I already did all that still device not appear as target platform
-
I tried to follow the steps as per embarcadero tutorial like that: > pip install delphivcl Collecting delphivcl Using cached delphivcl-0.1.24-cp311-cp311-win_amd64.whl Installing collected packages: delphivcl Successfully installed delphivcl-0.1.24 > Python Python 3.11.0 (main, Oct 24 2022, 18:26:48) [MSC v.1933 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from delphivcl import * Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Program Files\Python311\Lib\site-packages\delphivcl\__init__.py", line 22, in <module> package = new_import() ^^^^^^^^^^^^ File "C:\Program Files\Python311\Lib\site-packages\delphivcl\__init__.py", line 15, in new_import ld = loader.create_module(spec) ^^^^^^^^^^^^^^^^^^^^^^^^^^ ImportError: DLL load failed while importing DelphiVCL: The specified module could not be found. What is the problem ?
-
How to install Delphi 4 Python ? ImportError: DLL load failed while importing DelphiVCL: The specified module could not be found
William23668 replied to William23668's topic in VCL
Indeed this was the problem thanks @pyscripter -
How to install Delphi 4 Python ? ImportError: DLL load failed while importing DelphiVCL: The specified module could not be found
William23668 replied to William23668's topic in VCL
Oh really ? I will uninstall 11 and install 10 then...thanks -
For example like C# WebDriver ?
-
What the Delphi 11 version number after november patch ?
William23668 posted a topic in Delphi IDE and APIs
Hi, What the Delphi 11 version number after november patch ? -
What the Delphi 11 version number after november patch ?
William23668 replied to William23668's topic in Delphi IDE and APIs
will try to reinstall again, thanks solved... -
What the Delphi 11 version number after november patch ?
William23668 replied to William23668's topic in Delphi IDE and APIs
Thanks this is the last version 28.0.46141.0937 ? -
Hi I am using this code to create the database bute I get error on connect : var MyDBFile: string; begin MyDBFile := 'C:\db5.sqlite3'; if FileExists(MyDBFile) then DeleteFile(MyDBFile); FDConnection1.Params.Values['Database'] := MyDBFile; FDConnection1.Params.Values['DriverID'] := 'SQLite'; //Connection.Params.Values['Encrypt'] := 'aes-128'; //Connection.Params.Values['Password'] := '1234'; FDConnection1.Connected := True; --------------------------- [FireDAC][Phys][SQLite] ERROR: unable to open database file. ---------------------------
-
Unable to create sqlite database at runtime with firedac
William23668 replied to William23668's topic in Databases
wow this solved the problem, I never read about this parameter before. many thanks -
Unable to create sqlite database at runtime with firedac
William23668 replied to William23668's topic in Databases
I dont understand !! the code display error on connect so it does not connect or create a file. -
I have string like this 84@fgl#000^2#0#0 94j@f#0 And I tried to replace all '#0' with '0' like this result := stringreplace(OriginalStr, '#0', '0',[rfReplaceAll, rfIgnoreCase]); But this did not replace all the '#0' , how I should use this ?
-
stringreplace character in all string
William23668 replied to William23668's topic in RTL and Delphi Object Pascal
No it was just to practice.