Jump to content

Read the cursor in an edit?


Recommended Posts

like this?

#include <GUIConstants.au3>

GUICreate ("test",100,100)
$edit = GUICtrlCreateEdit ("",10,10,80,80)
GUISetState ()

While 1
$msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            Exit
    EndSelect
$line =  ControlCommand ("test","","Edit1","GetCurrentLine")
$col =   ControlCommand ("test","","Edit1","GetCurrentCol")
ToolTip ("Line: " & $line & " Column: " & $col,0,0)
WEnd

ControlCommand ("test","","Edit1","GetCurrentLine")

ControlCommand ("test","","Edit1","GetCurrentCol")

Edited by phantom
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...