Jump to content

eduardosuruagy

uniGUI Subscriber
  • Posts

    960
  • Joined

  • Last visited

  • Days Won

    10

eduardosuruagy last won the day on July 25 2023

eduardosuruagy had the most liked content!

Recent Profile Visitors

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

eduardosuruagy's Achievements

Advanced Member

Advanced Member (4/4)

41

Reputation

  1. Que maravilha Marlon, tem como salvar no banco de dados?
  2. When I click on the next button I change the index of the pagecontrol and check which page it is on to disable the button, but it is not working. UniPageControl.TabIndex := UniPageControl.TabIndex + 1; BtnPrevious.Enabled := (UniPageControl.TabIndex > 1); BtnNext .Enabled := (UniPageControl.TabIndex < 3);
  3. I have a Button, and when I try to disable it, Button.Enabled := False; isn't working. I tried this: Button.JSInterface.JSCall('setDisabled', [True]); // disable But that doesn't work either.
  4. Before trying to get help here on the forum, I usually research the component I want and even try to use some AI to help me, as a last resort I open a message on the forum. Thanks anyway!!
  5. Is it possible to open the print screen and see when it was closed? Or open it in another browser tab?
  6. Thanks, I'll try...
  7. It worked perfectly. Thank you so much!! Another question: is it possible to add text at the end of the document? As shown in the image.
  8. Thank you very much!!
  9. UniHTMLMemo1.Text := StringReplace(UniHTMLMemo1.Text, '{{NAME}}', UniEdit1.Text, [rfReplaceAll, rfIgnoreCase]);UniSession.AddJs(UniHTMLMemo1.jsname+'.iframeEl.dom.contentWindow.print();');
  10. It's already like this, but with just the HTMLMemo component it doesn't work.
  11. What would the command look like? I couldn't get it to work.
  12. I don't want to let the user right-click on the HTMLMemo, if he clicks I want to be able to open a custom UniPoupUpMenu, with other functionalities
  13. I want to print the contents of the htmlmemo, but when I replace any text {{NAME}} with what was typed in the edit, the print preview doesn't do what is in the htmlmemo, only when I click the button for the second time. Watch the video. The button code is this: I replace the {{NAME}} variable with what was typed in the edit window. UniHTMLMemo1.Text := StringReplace(UniHTMLMemo1.Text, '{{NAME}}', UniEdit1.Text, [rfReplaceAll, rfIgnoreCase]); Here I print the contents of the HtmlMemo, but it only prints the second time I run the code. UniSession.AddJs(UniHTMLMemo1.jsname+'.iframeEl.dom.contentWindow.print();'); Gravar_2025_09_13_16_31_12_44.mp4
  14. I had forgotten about this property, thank you!!
×
×
  • Create New...