Announcement

Collapse
No announcement yet.

Delete letters at the push of a button.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Delete letters at the push of a button.

    Help me: Hello everyone, I hope you are well, I want to ask for your help since I do not know how to do so that when pressing a button (Delete), I erase a letter each time it is pressed, I hope you can help me with this problem, I would be very grateful for your help.

    Excellent day everyone.

    Attached Files

  • #2
    Hi try this on the Delete Button on click

    Code:
    Texto = Input.GetText("Input1");
    nlen = String.Length(Texto);
    Texto = String.Left(Texto,nlen-1);
    
    Input.SetText("Input1", Texto);
    Cheers

    Comment


    • #3
      Thank you very much for your support, your kind response helped me and I was able to solve my problem, thank you again.

      Comment

      Working...
      X