Jump to content

softtouch

Members
  • Content Count

    151
  • Joined

  • Last visited

Community Reputation

5 Neutral

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. softtouch

    RAD Studio 12.1 Athens Patch 1 Available

    The patch is available via getit, I just installed it.
  2. softtouch

    TComboBoxEx icon in editbox?

    I have a TComboBoxEx with items in it. Each item has an icon assigned, so far so good. When I click into the editbox to enter a new item name, there is no icon of course, but instead a weird space to the left (see attached image). Is there any way to have a default icon displayed in the editbox of the TComboBoxEx?
  3. softtouch

    If command

    ... the :='True' should be ='True'...
  4. softtouch

    Delphi 12.1 is available

    Yes, that will just return "We couldn’t find any requests"
  5. softtouch

    Delphi 12.1 is available

    Just wanted to read and comment on it, but that weird new portal does not list any report for me.
  6. softtouch

    Delphi 12.1 is available

    It uninstalled my 12 update 1 version and I had to reinstall all components again 😞
  7. softtouch

    mainmodule.<functionname> dynamically?

    Thank you! This is actually working just fine!
  8. softtouch

    mainmodule.<functionname> dynamically?

    I did, but I cant get it to work unfortunately. Anyway, thanks for your help.
  9. softtouch

    mainmodule.<functionname> dynamically?

    Thank you, but how can I provide parameter to the call when using this approach like result:=MainModule.ClickElement_ByXPATH(param1,param2,param3...)
  10. softtouch

    mainmodule.<functionname> dynamically?

    Via MainModule.<pythonfunction name here> (TPythonModule of P4D) If the python function ClickElement_ByXPATH exist, I call it like MainModule.ClickElement_ByXPATH();
  11. softtouch

    mainmodule.<functionname> dynamically?

    I want to call python functions. Their names are in a stringlist. With other words, how could I call a python function when the function name is a string? Example: var s:='ClickElement_ByXPATH'; How can I call the corresponding python function, which has exactly that name?
  12. Lets say I have an array with the following 2 strings in it: ClickElement_ByXPATH ClickElement_ByCSSSelector I have Python function with the same name, so I could call MainModule.ClickElement_ByXPATH or MainModule.ClickElement_ByCSSSelector, which works. Is there any way to create the funcname in the call MainModule.<funcname> based on the strings in the stringlist? For example, when I get the first item in the stringlist (ClickElement_ByXPATH), how could I create a call to MainModule.<here the element from the stringlist>, similar I can do with rtti and delphi functions, so it would call MainModule.ClickElement_ByXPATH? With other words, creating the call based on the text in a stringlist.
  13. I just set DefaultDraw to false in onCustomDrawItem for that dummy item, and I have now the group header with an invisible item and no checkbox for that, so thats all fine so far.
  14. Thanks for the hint with the blank item. Now I just need to find a way to hide the checkbox for that blank item.
  15. I have a listview with groups and items. User can drag/drop items between groups. But when they move the last item of a group to another group, that group become invisible, so they cant move items back to that group. Is there any way to keep groups visible at all time, even they have no items assigned to them?
×