Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in Access only
Search
Advanced Search
Forums
Product Launch
Updates
Today's Posts
Member List
Calendar
Home
Forum
Topic
Access
validation rule for a valid hex value
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
kimmer
New Member
Join Date:
Jul 2010
Posts:
9
#1
validation rule for a valid hex value
Jul 29 '10, 09:49 PM
i am validating entry for a field which is an 8 character hex field. Do anyone have any suggestions to how I code this validation rule?
Oralloy
Recognized Expert
Contributor
Join Date:
Jun 2010
Posts:
988
#2
Jul 30 '10, 01:05 AM
Are you doing this in Access Basic, or as a field validation rule?
Comment
Post
Cancel
kimmer
New Member
Join Date:
Jul 2010
Posts:
9
#3
Jul 30 '10, 11:10 AM
I am coding a validation rule on a form for a field that is entered in hex
Comment
Post
Cancel
NeoPa
Recognized Expert
Moderator
MVP
Join Date:
Oct 2006
Posts:
32636
#4
Jul 31 '10, 01:11 AM
I don't believe you can refer to the item in the
ValidationRule
, which would be necessary to handle :
Code:
IsNumeric("&H" & [ControlName])
I suggest you handle this check in the
AfterUpdate
event property of the control instead.
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment