Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Spinner Keyboard High and Low Values
Message
From
08/04/2005 18:27:35
 
 
To
08/04/2005 16:19:22
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 9
Miscellaneous
Thread ID:
01002839
Message ID:
01002906
Views:
18
>Hi,
>
>is there an event that I can use to inform the user that they have entered a value that is beyond the keyboardhigh and keyboardlowvalue of a spinner?
>
>What is happening is these properties get set dynamically based on the selected data. If the user enters a value that is outside of the range, there is no message or indication of what is wrong, the user just cannot move off the control.
>
>This is the first time I'm using spinners in over 10 years of Fox and VFP.
>
>Thanks,
* RangeLow
IF m.this.Value<m.this.KeyboardLowValue
	MESSAGEBOX("too much low")
ENDIF
RETURN m.this.KeyboardLowValue


* RangeHigh
IF m.this.KeyboardHighValue<m.this.Value
	MESSAGEBOX("too much High")
ENDIF
RETURN m.this.KeyboardHighValue
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform