gcue 10 Posted November 5, 2010 i couldnt identify which styles/extended styles does this.. or is there another way? Share this post Link to post Share on other sites
Necromorph 1 Posted November 5, 2010 SetHotKey("^a", "_Func") Func _Func() GUICtrlSetState($hCtrl, $GUI_FOCUS) EndFunc not sure if you can actually set the "ctrl" key though, because it is a modifier alrady, but it may work. else you maybe its ("{LCTLR} + a") not sure. Share this post Link to post Share on other sites
Melba23 3,456 Posted November 5, 2010 gcue,As you have discovered, Ctrl-A does not "select all" within an edit control, but you can cheat like this: #include <GUIConstantsEx.au3> #include <GUIEdit.au3> #include <WinAPI.au3> Global $hInput_Handle $hGUI = GUICreate("Test", 500, 500) $hInput = GUICtrlCreateEdit("here is some text", 10, 10, 480, 480) $hInput_Handle = GUICtrlGetHandle(-1) ; Create dummy for accelerator key to activate $hSelAll = GUICtrlCreateDummy() GUISetState() ; Set accelerators for Ctrl+a Dim $AccelKeys[1][2]=[["^a", $hSelAll]] GUISetAccelerators($AccelKeys) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $hSelAll _SelAll() EndSwitch WEnd Func _SelAll() Switch _WinAPI_GetFocus() Case $hInput_Handle _GUICtrlEdit_SetSel($hInput_Handle, 0, -1) Return EndSwitch EndFunc ;==>_SelAllAsk if it is not clear how the script works. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
gcue 10 Posted November 5, 2010 awesome - as always melba... thank you very much!!! looks straight forward - thought there was a style or something tho.. but this works!!!! thanks again! Share this post Link to post Share on other sites