Jump to content

William23668

Members
  • Content Count

    135
  • Joined

  • Last visited

Everything posted by William23668

  1. William23668

    contacts sample application does not want to run on device

    the sample work fine from this link !! ...thanks as usual
  2. William23668

    contacts sample application does not want to run on device

    empty application work. I provided original link on embarcadero or it can be found in samples folder
  3. William23668

    contacts sample application does not want to run on device

    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:
  4. William23668

    contacts sample application does not want to run on device

    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
  5. William23668

    How I execute shell adb commands ?

    How I execute shell adb commands on my android device ?
  6. William23668

    unable to execute java error

    Now when I compile a sample android application I get many errors like unable to execute java . what causing this ?
  7. William23668

    unable to execute java error

    your solution solved the problem many thanks
  8. William23668

    unable to execute java error

    I know I am just trying this
  9. William23668

    unable to execute java error

    Thanks I am reinstalling Delphi again now and will try
  10. William23668

    I am unable to make my android device visible

    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 ?
  11. William23668

    I am unable to make my android device visible

    found the problem it was the firewall !!
  12. William23668

    I am unable to make my android device visible

    I select USB as transfer files from the phone is that right ?
  13. William23668

    I am unable to make my android device visible

    I already did all that still device not appear as target platform
  14. 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 ?
  15. Oh really ? I will uninstall 11 and install 10 then...thanks
  16. For example like C# WebDriver ?
  17. Hi, What the Delphi 11 version number after november patch ?
  18. will try to reinstall again, thanks solved...
  19. Thanks this is the last version 28.0.46141.0937 ?
  20. 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. ---------------------------
  21. William23668

    Unable to create sqlite database at runtime with firedac

    wow this solved the problem, I never read about this parameter before. many thanks
  22. William23668

    Unable to create sqlite database at runtime with firedac

    I dont understand !! the code display error on connect so it does not connect or create a file.
  23. 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 ?
  24. William23668

    stringreplace character in all string

    No it was just to practice.
×