Jump to content

Recommended Posts

Posted

I am trying to control the input using GUICTRLREAD , but I want to limit the valid input to numbers between 1 and 13 I also have another filed I want the valid values to between 1 and 28. How can I control this?

$cube2 = GUICtrlCreateInput('', 50, 380, 30, 25, $ES_NUMBER)
        $TData1= ''
    While $TData1 = ''
        $Data1 = GUICtrlRead($cube2)
        $TData1 = StringLeft(StringRegExpReplace($Data1, '[0[1-9]|1[0-3])', ''), 1)
    WEnd
  • Moderators
Posted

JimC,

No need to go as far as StringRegExp:

#include <GUIConstants.au3>
#include <EditConstants.au3>

$GUI = GUICreate("Enter a number between 1 and 13", 320,120, @DesktopWidth/2-160, @DesktopHeight/2-45)
$Input = GUICtrlCreateInput ( "", 10,  20, 300, 20, $ES_NUMBER)
$btn = GUICtrlCreateButton ("Ok", 40,  95, 60, 20)
GuiSetState(@SW_SHOW)

While 1
    $msg = GUIGetMsg()
    If $msg = $btn Or $msg = $GUI_EVENT_CLOSE Then Exit

    $number = GuiCtrlRead($Input)
    If Number($number) > 13 Then
        Local $tooltipPos = WinGetPos($GUI)
        ToolTip("The number must be between 1 and 13", $tooltipPos [0]+160, $tooltipPos [1]+60, Default, Default, 3)
        Sleep(2000)
        ToolTip("")
        GUICtrlSetData($Input, "")
    EndIf
Wend

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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

 

Posted

Almost

$number = Number(GuiCtrlRead($Input))
    If $number < 1 OR $number > 13 Then

George

  Reveal hidden contents
Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

  • Moderators
Posted

Oh, don't you just hate the smart guys! :D

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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

 

Posted

  On 9/28/2009 at 6:16 PM, 'Melba23 said:

Oh, don't you just hate the smart guys! :D

M23

Had to be fixed because the way you had it any number <= 0 would have failed to display the tooltip.

George

  Reveal hidden contents
Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

  • Moderators
Posted (edited)

George,

Not disagreeing, just annoyed with myself! :D

M23

Edit: speeling

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...