Jump to content

GUICtrlCreateEdit


Zepx
 Share

Recommended Posts

Hi all,

I would like to know if there is a method to enable GUICtrlCreateEdit to use Ctrl+A (^a).

By default select all is disable and I can't select all. Is it possible to do so? I've also tried using HotKey but it doesn't really work.

Link to comment
Share on other sites

Try this

#include <GUIConstantsEx.au3>
#include <EditConstants.au3>

HotKeySet("^a", "CtrlA")
GUICreate("Ctrl-A to select text", 220, 100)
$nEdit = GUICtrlCreateEdit ("line 0", 10, 10, 200, 80)
GUISetState ()

$txt = ""
For $n=1 To 3
    $txt &= "some text some more text " & $n & @CRLF
Next
GUICtrlSetData($nEdit, $txt)

Do
    $msg = GUIGetMsg()
Until $msg = $GUI_EVENT_CLOSE

Func CtrlA()
    GUICtrlSendMsg($nEdit, $EM_SETSEL, 0, -1)
EndFunc
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...