Ask a Question related to Microsoft Access, Design and Development.
-
Rick Brandt #1
Re: Obligatory entry on form
"Lapchien" <cc8345@NOSPAMeclipse.co.uk> wrote in message
news:1059928544.242177@ananke.eclipse.net.uk...Any reason you don't just set the fields as required in the table?> I'd like to make an entry obligatory in most of the fields on my form - not
> just TAB or 0, but an entry - this can be anything, as I've already setup my
> validation rules and texts. I've found though that a user can get around
> this just by tabbing through the form! Anyone know of a work-around?
Rick Brandt Guest
-
data entry form for many-to-many
I think this is more of a forms question than design question, so bear with me . . . . I am designing a database primarily needed to manage our... -
Passing form entry to URL variable
Hi, I'm on to my user administration section, and I want there to be a page where administrator enters a 'buildnumber' into a form, clicks search... -
options for form entry validation
Creating an application website with MS Access on a Windows 2000 Server. I have a page where the user can enter in a "startdate" and "enddate";... -
Data entry form
Can someone point me in the right direction, I need to code many forms that would allow a user to enter one row of data into a SQL database. ... -
Limit user changes in entry form
Jan, It would seem that a simple password checking routine would suffice in this instance. From your command button, pop up a little form with... -
Lapchien #2
Re: Obligatory entry on form
The ones I require are set as required - yes. But anyone can just 'tab'
through the form...
"Rick Brandt" <rvtjbrandt@sbcglobal.net> wrote in message
news:bgjfvi$piu2b$1@ID-98015.news.uni-berlin.de...not> "Lapchien" <cc8345@NOSPAMeclipse.co.uk> wrote in message
> news:1059928544.242177@ananke.eclipse.net.uk...> > I'd like to make an entry obligatory in most of the fields on my form -setup my> > just TAB or 0, but an entry - this can be anything, as I've alreadyaround> > validation rules and texts. I've found though that a user can get>> > this just by tabbing through the form! Anyone know of a work-around?
> Any reason you don't just set the fields as required in the table?
>
>
Lapchien Guest
-
Rick Brandt #3
Re: Obligatory entry on form
"Lapchien" <cc8345@NOSPAMeclipse.co.uk> wrote in message
news:1059931893.660851@ananke.eclipse.net.uk...But if they are "required" by the table they will not be able to save any> The ones I require are set as required - yes. But anyone can just 'tab'
> through the form...
records where they didn't make an entry in those fields. They will get an error
message.
Rick Brandt Guest
-
Lapchien #4
Re: Obligatory entry on form
Is there any way to prevent them from leaving that particular field until an
entry has been made, that meets the required validation?
"Rick Brandt" <rvtjbrandt@sbcglobal.net> wrote in message
news:bgjh3a$pgjck$1@ID-98015.news.uni-berlin.de...error> "Lapchien" <cc8345@NOSPAMeclipse.co.uk> wrote in message
> news:1059931893.660851@ananke.eclipse.net.uk...>> > The ones I require are set as required - yes. But anyone can just 'tab'
> > through the form...
> But if they are "required" by the table they will not be able to save any
> records where they didn't make an entry in those fields. They will get an> message.
>
>
Lapchien Guest
-
Lapchien #5
Re: Obligatory entry on form
Maybe - without sounding like a total shit the people doing the entering
aren't exactly brain surgeons...
"Rick Brandt" <rvtjbrandt@sbcglobal.net> wrote in message
news:bgjlm6$or4lv$1@ID-98015.news.uni-berlin.de...until an> "Lapchien" <cc8345@NOSPAMeclipse.co.uk> wrote in message
> news:1059936169.424623@ananke.eclipse.net.uk...> > Is there any way to prevent them from leaving that particular fieldand>> > entry has been made, that meets the required validation?
> I suppose you could test for an entry in the OnExit event of the controlleaving> cancel the event if they didn't make an entry. Seems unnecessary though.
>
> After one or two instances where they get the Required Field errors forto> a control blank don't you think they'll pick up on the fact that they need> make an entry?
>
>
Lapchien Guest
-
Sandra Daigle #6
Re: Obligatory entry on form
My preference is always to use the BeforeUpdate event of the form to test
for empty fields or to do cross field validation. It's not as annoying to
the user that way. You can use the BeforeUpdate event of each individual
control but it will only fire if a change has been made.
Putting the test code into the Exit event of the control is extremely
annoying because it will fire even when the user is trying to click a
command button or do something unrelated to saving the record.
--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.
Rick Brandt wrote:> "Lapchien" <cc8345@NOSPAMeclipse.co.uk> wrote in message
> news:1059936169.424623@ananke.eclipse.net.uk...>>> Is there any way to prevent them from leaving that particular field
>> until an entry has been made, that meets the required validation?
> I suppose you could test for an entry in the OnExit event of the control
> and cancel the event if they didn't make an entry. Seems unnecessary
> though.
>
> After one or two instances where they get the Required Field errors for
> leaving a control blank don't you think they'll pick up on the fact that
> they need to make an entry?Sandra Daigle Guest



Reply With Quote

