duzers Posted November 11, 2010 Posted November 11, 2010 Hello, Is possible to set (e.g. GUICtrlSetData) diffrent colors/styles text in one GUICtrlCreateEdit? How I do this? thx
UEZ Posted November 12, 2010 Posted November 12, 2010 Yes, only with Rich Text. Search for it in help file or in the forum. Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
Moderators Melba23 Posted November 12, 2010 Moderators Posted November 12, 2010 duzers, This thread might be useful. 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
duzers Posted November 13, 2010 Author Posted November 13, 2010 duzers, This thread might be useful. M23 Hmm, it is very complicated. Thx
Moderators Melba23 Posted November 13, 2010 Moderators Posted November 13, 2010 duzers,It is a simple function to allow you to add text to a RichText edit in variable sizes and colours - which is surprisingly difficult to do! All you need to do is add the _GUICtrlRichEdit_WriteLine function at the end of you script and then whenever you want to add some text you call it with the required parameters:$hWnd = the returned value from the _GUICtrlRichEdit_Create function to identify the control$sText = the text to write$iIncrement = the size difference in points (use 0 if you do want a change)$sAttrib = the font attibute (use "" if you do not want to change)$iColor = the colour required (in hex or decimal)The function is pretty easy to modify to add or remove the parameters you want to use - just make sure you have a suitable UDF function to call! If you need more explanation, please ask. 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
Chad2 Posted January 31, 2012 Posted January 31, 2012 Melba,You should add this _GUICtrlRichEdit_WriteLine to the bottom of your signature. I found it useful.
Moderators Melba23 Posted January 31, 2012 Moderators Posted January 31, 2012 Chad2, I am glad you found it useful. But I do not think I can add every little snippet I have ever posted to my sig - it might get a bit big. 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
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