Jump to content

William23668

Members
  • Content Count

    117
  • Joined

  • Last visited

Everything posted by William23668

  1. William23668

    No support for RTL languages in TListView ?

    This indeed solved the problem in very easy way thanks alot 😍 💐
  2. William23668

    No support for RTL languages in TListView ?

    This mean I have to draw at canvas level inside each row in TListView ? ACanvas.DrawSimpleText('"Each dream that you', 2, 25, LFont, LPaint);
  3. William23668

    Adding items to ListView

    Hi It is FMX app but I just want to test adding items from code in Windows so I used that code from here var LItem: TListItem; begin LItem := TListItem.Create(ListViewContacts.Items); LItem.Caption := 'new item'; I added "Commctrl" to uses clause but "Caption" is not defined, why ?
  4. William23668

    Adding items to ListView

    Thanks @programmerdelphi2k copy from forum and paste into Delphi also copy hidden characters but after removing them the code work
  5. William23668

    Adding items to ListView

    interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Permissions, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, Vcl.ComCtrls, Commctrl, FMX.AddressBook.Types, FMX.AddressBook, FMX.StdCtrls, FMX.SearchBox, FMX.Layouts, FMX.ListBox, FMX.Controls.Presentation, FMX.Edit, FMX.TabControl, FMX.Platform, System.Actions, FMX.ActnList, FMX.ListView.Types, FMX.ListView.Appearances, FMX.ListView.Adapters.Base, FMX.ListView, FMX.StdActns, FMX.MediaLibrary.Actions, FMX.Objects, FMX.Surfaces; .... procedure TForm1.FormShow(Sender: TObject); var LItem: TListItem; begin LItem := TListItem.Create(ListViewContacts.Items); LItem.Text := 'new item'; @programmerdelphi2k thanks but still same error.
  6. William23668

    Adding items to ListView

    Undeclared identifier: 'Text'
  7. When I try to open the sample app contacts I only see FMX splash screen then nothing. I attached the apk here: https://mega.nz/file/OLoDFZRB#GlHVnZv4t9KX4_hmVe91mK9-M1whPoD_SNIWyd2IBv4 any advise ?
  8. William23668

    contacts sample application does not want to run on device

    the sample work fine from this link !! ...thanks as usual
  9. 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
  10. 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:
  11. 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
  12. William23668

    How I execute shell adb commands ?

    How I execute shell adb commands on my android device ?
  13. 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 ?
  14. William23668

    unable to execute java error

    your solution solved the problem many thanks
  15. William23668

    unable to execute java error

    I know I am just trying this
  16. William23668

    unable to execute java error

    Thanks I am reinstalling Delphi again now and will try
  17. 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 ?
  18. William23668

    I am unable to make my android device visible

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

    I am unable to make my android device visible

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

    I am unable to make my android device visible

    I already did all that still device not appear as target platform
  21. 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 ?
  22. Oh really ? I will uninstall 11 and install 10 then...thanks
  23. For example like C# WebDriver ?
  24. Hi, What the Delphi 11 version number after november patch ?
×