Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/20/2025 in all areas

  1. All links are imaginary to just understand the real code, your code is good and working nice and as you said it's not far from my code You added some parts which make the code working Thanks my dear
    1 point
  2. Version 1.8.2 has just been released! I should have been 1.8.0, but issues with deployment pipeline after bigger changes to how the parser code and types are generated (internally) meant that i had to increment patch version 2 times, to successfully be able to release to the extension marketplaces. Notable changes: Added au3 DocBlock `@link` tag support Added syntax highlighting for au3 DocBlock and legacy UDF headers 2 things i would like feedback on, if possible: About the new syntax highlighting: Let me know if and/or how you like or dislike it. Performance: small changes to how the parser worked with some parser rules, to better generate types. Smaller tests indicated it was same or faster, but it can very much depend how it traverses through the code. Let me know if you notice any slow down, so I can look into fixing it ASAP! Feedback can be here, via an issue or via the discussion for the release.
    1 point
  3. - get the length of the text in the edit box - set selection from last character - to - last character - replace selection with new content That way it will scroll "up". #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiEdit.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 625, 373, 192, 124) $Edit1 = GUICtrlCreateEdit("", 16, 16, 593, 305) GUICtrlSetData(-1, "") $Button1 = GUICtrlCreateButton("Test Me", 272, 336, 75, 25, $WS_GROUP) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 For $i = 1 To 40 _EditScrollUp("Example Line "&$i&@CRLF) Sleep(200) Next EndSwitch WEnd Func _EditScrollUp($content) Local $Ed_length = StringLen(GUICtrlRead($Edit1)) _GUICtrlEdit_SetSel($Edit1, $Ed_length, $Ed_length) _GUICtrlEdit_ReplaceSel($Edit1, $content) EndFunc
    1 point
×
×
  • Create New...