Obligatory entry on form

Ask a Question related to Microsoft Access, Design and Development.

  1. #1

    Default Re: Obligatory entry on form

    "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 - 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?
    Any reason you don't just set the fields as required in the table?


    Rick Brandt Guest

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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";...
    4. 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. ...
    5. 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...
  3. #2

    Default 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...
    > "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 -
    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?
    >
    > Any reason you don't just set the fields as required in the table?
    >
    >

    Lapchien Guest

  4. #3

    Default Re: Obligatory entry on form

    "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 error
    message.


    Rick Brandt Guest

  5. #4

    Default 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...
    > "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
    error
    > message.
    >
    >

    Lapchien Guest

  6. #5

    Default 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...
    > "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?
    >
    >

    Lapchien Guest

  7. #6

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139