Jump to content

softtouch

Members
  • Content Count

    170
  • Joined

  • Last visited

Everything posted by softtouch

  1. softtouch

    Opensource scripting language?

    Maybe I could use gmatch instead of regex, that might be ok. I am currently playing with lua, but could not yet figure out how to return a string to delphi.
  2. softtouch

    Opensource scripting language?

    Not sue lua is ok for my project. I saw it does not know anything about regex.
  3. softtouch

    Opensource scripting language?

    Python is too huge for just the small things I want to do, and I dont want to dig into python programming. I took a look at TJvInterpreterProgram, but its hard due to lack of documentation. It works, but I could not figure out how to use system functions like copy, delete etc. from within the code for the interpreter.
  4. softtouch

    Opensource scripting language?

    DWScript seems to be up to Delphi 11.x only, but I use Delphi 12.
  5. When I try to open getit in the tools menu, the IDE freeze and I need to use taskmanager to kill the process. When trying to go to my.embarcadero.com, I get a 504 error.
  6. I am trying to find, without success, information about how to catch when somebody click in a TEdgeBrowser into a form field, or on a table, or any other element. I can catch hyperlick clicks, but thats all so far. Is that even possible? What I need to do is, when a user click somewhere, to show the source code of that element.
  7. softtouch

    Clicking something in TEdgeBrowser

    Wow, cool, thanks a lot! I will play with it. So the window.addEventListener is the key to do what I want.
  8. softtouch

    Clicking something in TEdgeBrowser

    It might be in a memo, so I need just the text to process it further.
  9. softtouch

    Clicking something in TEdgeBrowser

    What I want is that the user load a website, and can click on any element/text/whatever on that page, and that the outerhtml will be displayed, no more, no less. Using the "inspect" is way to confusing for the user.
  10. I am looking for a edit/memo component which allows multiselect. For example, I have a text "This is just a test" in the edit/memo and would like to select "This" and "test". I tried to find such component, but without luck. Does it exist or is it just wishful thinking?
  11. softtouch

    Is there any edit/memo which allows multiselect?

    I believe I solved it using the TPlusMemo.
  12. softtouch

    Is there any edit/memo which allows multiselect?

    Just to show what I mean:
  13. softtouch

    Is there any edit/memo which allows multiselect?

    Thats a pity. I thought there is such control. Notepad++ can do that.
  14. softtouch

    Free profiler?

    Thanks, I tried that already, but was not able to have it measure the execution time of my procedures.
  15. softtouch

    Raize TRZCheckBox and CustomGlyphImages

    Delphi 12: Does anybody know how the customglyphimages is supposed to work with TRzCheckBox of the Raize Components? I set the imagelist, which hold various 16x16 images. In the designer, they are also visible instead of the default checkmarks, but when I run the program, it only shows the normal checkboxes instead.
  16. softtouch

    Raize TRZCheckBox and CustomGlyphImages

    The issue I see is that when the image sin the imagelist are set to 16x16, they will not appear in the checkbox. Any size different that that will show the images. Of course, everything more than 16x16 will cur them and you see only a part of them... so it must be a bug that just the needed 16x16 images are not displayed.
  17. I cant access getit, my.embacadero.com or quality. Are they again down or just for me?
  18. softtouch

    Getit / my.embacadero and quality down?

    Now I cant even install bookmarks via getit, I get "Invalid serial number". Whats up with embacadero?
  19. softtouch

    Loading .webp images into tbitmap?

    I need to convert some webp images to jpg or any other format (target format does not matter). How can I load a .webp image into a timage without using any external dll/dylib like Skia4Delphi? I just cant find anything realted to .webp and fmx.
  20. When I close a form on macOS by clicking the top/left red close button of the form, the onClose event of the form is not trigggered. This was already with Delphi 10.4.x the same. I need to save things and cleanup things when the form close, but how without the onClose event getting triggered?
  21. softtouch

    Delphi 11 and onClose on macOS is still not called

    The form is displayed with showmodal, not triggering onCloseQuery and onClose. onDestroy is triggeed, so I might move the code in onClose to onDestroy instead until this very old bug is fixed.
  22. softtouch

    Delphi 11 and onClose on macOS is still not called

    It will only work when the form is the main form. When you open a form, and create there another form via buttonclick, that new form does not trigger its onClose event. Example: A main form is displayed and has a button. On the buttonclick, it created another form. That form, when its red close button is clicked, does not trigger its onClose event. procedure TForm1.Button1Click(Sender: TObject); begin myform:=TMyForm.Create(self); myform.ShowModal; myform.Free; end;
  23. When I select an entry from the picklist of the TValueListEditor, the existing cell text will get replaced with the text from the list. Is there any way to insert the text from the picklist at the current cursor position in the cell instead of replacing the whole cell?
  24. softtouch

    TValueListEditor and itemProps.EditStyle

    I have an empty TValueListEditor on the form. user enter the key, and select the value cell to enter the value. How can I show the ellipsis in the value cell at that time (when the user select the cell)? For example, there are some key/value pairs already, and the user add a new row by pressing cursor down key in the last row. The new row appear empty and I can type key and value. But I cand display the ellipsis in that new row so the user could click the ellipsis instead entering a value.
  25. softtouch

    TButtonEdit and left button dropdown menu

    I have some buttonedit controls, each has left and right buttons. The left buttons have all the same popup menu assigned as dropdownmenu. When I now select a menuitem, how can I know which buttonedit control showed the popupmenu?
×