Jump to content

How to make Select All?


Recommended Posts

Look my project delphi is example

procedure TForm1.Memo1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);

begin
  if (Key = Ord('A')) and (ssCtrl in Shift) then
  begin
    TMemo(Sender).SelectAll;
    Key := 0;
  end;
end;

Example:

$MSG_1 = GUICtrlCreateInput("TEST TEST TEST", x, x, x, x)

ControlCommand("","","$MSG_1","SelectAll")

Not work... Please convert to autoit =(

Thanks

Programmer PHP, ASP, CGI, Perl, Delphi, JScript, ......... :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...