LWC Posted January 12, 2011 Posted January 12, 2011 (edited) GUICtrlSetLimit's default maximum is 32767. Is it WINTEXTBUFFER? In any case, the following don't work: GUICtrlSetLimit(-1, default, 1) GUICtrlSetLimit(-1, WINTEXTBUFFER, 1) See the following for WINTEXTBUFFER: Edited May 24, 2024 by LWC Chose syntax (which didn't exist it when it was written)
Moderators Melba23 Posted January 13, 2011 Moderators Posted January 13, 2011 LWC,As the "min" parameter of GUICtrlSetLimit only has meaning for Slider and UpDown controls, where a maximum is also required, why are you even asking about WINTEXTBUFFER which affects edits and the like? Just what are you trying to do? There is probably a way to do it without using GUICtrlSetLimit. 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
Mat Posted January 13, 2011 Posted January 13, 2011 He's talking about this page where the numbers happen to be the same. They are not related in any way (other than having the same values) and it's just as easy to hard code them in:Global $hGUI $hGUI = GUICreate("Limit testing") $hInp = GUICtrlCreateInput("5", 2, 2, 200, 20) GUICtrlCreateUpdown($hInp) GUICtrlSetLimit(-1, 0x7FFF, 5) GUISetState() Local $iMsg While 1 $iMsg = GUIGetMsg() Switch $iMsg Case -3 ExitLoop EndSwitch WEnd AutoIt Project Listing
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