l3ill Posted December 10, 2013 Posted December 10, 2013 Hi, looking for a way to search through a txt file in a _GUICtrlRichEdit_Create like you can with F3 (find next) where you just click through each found item until you get to the one you are looking for. (for example find in scite works like this). I found >this but its not what I'm looking for. It changes the button which I dont mind but it runs out after 2 searches. Any help would be appreciated! Bill My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example
Moderators Solution Melba23 Posted December 10, 2013 Moderators Solution Posted December 10, 2013 billo,Pretty easy to fix that: expandcollapse popup#include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiRichEdit.au3> Global $sText = "This is a line." & @CRLF & _ "And this is another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." & @CRLF & _ "And yet another line." Main() Func Main() Local $sLastSearch = "" Local $iSearchStart = 0 Local $hGui = GUICreate("Example (" & StringTrimRight(@ScriptName, 4) & ")", 320, 350, -1, -1) Local $hRichEdit = _GUICtrlRichEdit_Create($hGui, $sText, 10, 10, 300, 220, BitOR($ES_MULTILINE, $WS_VSCROLL, $ES_AUTOVSCROLL)) Local $cSearch_Input = GUICtrlCreateInput("", 10, 300, 200, 20) Local $cFind_Button = GUICtrlCreateButton("Find", 230, 300, 80, 30) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE GUIDelete() Exit Case $cFind_Button ; Get search term $sSearchTerm = GUICtrlRead($cSearch_Input) If $sSearchTerm Then ; If new search then reset start If $sSearchTerm <> $sLastSearch Then $iSearchStart = 0 $sLastSearch = $sSearchTerm EndIf _GUICtrlRichEdit_SetSel($hRichEdit, $iSearchStart, $iSearchStart) $iIndex = _GUICtrlRichEdit_FindText($hRichEdit, $sSearchTerm) _GUICtrlRichEdit_SetSel($hRichEdit, $iIndex, $iIndex + StringLen($sSearchTerm)) $iSearchStart = $iIndex + StringLen($sSearchTerm) EndIf EndSwitch WEnd EndFunc ;==>MainM23 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
l3ill Posted December 10, 2013 Author Posted December 10, 2013 What can be said that hasnt already been said....? thanks! &.... You Rock M23 !!! My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now