Merchants Posted June 27, 2014 Posted June 27, 2014 (edited) i have setup this button with the text: Clear & Save but it does not show the the & word any way to get it in there? $GUI[19] = GUICtrlCreateButton("Clear & Save", 207, 90, 69, 17) Edited June 27, 2014 by Merchants
somdcomputerguy Posted June 27, 2014 Posted June 27, 2014 you may have to use the Chr() function. The ascii code for that character is 38, BTW. A list of ascii codes can be found on a page/site such as this - http://www.asciitable.com/ - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
Merchants Posted June 27, 2014 Author Posted June 27, 2014 (edited) does not make any difference if i use Chr(37) that is a % this shows and Chr(38) is & does not show Edited June 27, 2014 by Merchants
Moderators Solution Melba23 Posted June 27, 2014 Moderators Solution Posted June 27, 2014 Merchants,Just double the ampersand: $GUI[19] = GUICtrlCreateButton("Clear && Save", 207, 90, 69, 17)M23 Palestinian 1 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: Reveal hidden contents 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