WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Require a checkbox

 
   Home -> Office -> User Forms RSS
Next:  User Forms: Underscores and TextBoxes  
Author Message
MxPxRobbie

External


Since: Jun 11, 2008
Posts: 2



(Msg. 1) Posted: Wed Jun 11, 2008 8:31 am
Post subject: Require a checkbox Add to elertz
Archived from groups: microsoft>public>word>vba>userforms (more info?)

Hello, I need to make a checkbox to require a check before my form can
be submitted. I have the basic part down, but after the message box is
clicked, my form populates the document anyway. How do I get the
message box to go away and return to the form?

If CheckBox1.Value = False Then
MsgBox "Please discuss with your counterpart prior to filling out
this document."
End If

I apologize for my lack of knowledge, and thank you in advance for
your help!
Back to top
Login to vote
MxPxRobbie

External


Since: Jun 11, 2008
Posts: 2



(Msg. 2) Posted: Wed Jun 11, 2008 1:41 pm
Post subject: Re: Require a checkbox Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Jun 11, 2:17 pm, "Doug Robbins - Word MVP"
<d....TakeThisOut@REMOVECAPSmvps.org> wrote:
> You need the following construction.
>
>     If CheckBox1.Value = False Then
>          MsgBox "Please discuss with your counterpart prior to filling out
> this document."
>     Else
>         [Code that is populating the document]
>     End If
>
> --
> Hope this helps.
>
> Please reply to the newsgroup unless you wish to avail yourself of my
> services on a paid consulting basis.
>
> Doug Robbins - Word MVP
>
> <MxPxRob....TakeThisOut@gmail.com> wrote in message
>
> news:7495e25c-0636-4f9d-bcc3-b9df8d75010b@c65g2000hsa.googlegroups.com...
>
>
>
> > Hello, I need to make a checkbox to require a check before my form can
> > be submitted. I have the basic part down, but after the message box is
> > clicked, my form populates the document anyway. How do I get the
> > message box to go away and return to the form?
>
> >    If CheckBox1.Value = False Then
> >     MsgBox "Please discuss with your counterpart prior to filling out
> > this document."
> >    End If
>
> > I apologize for my lack of knowledge, and thank you in advance for
> > your help!- Hide quoted text -
>
> - Show quoted text -

Great! Now, for the second part. I see that this makes my form
disappear. I am worried about my users inputting all of their
information and forgetting to check this box, thus having to start
over. Is there a way to take me back to the form, including all the
information previously entered? I had something done earlier, but it
ended up giving me duplicate entries at my bookmarks.

Thanks Doug!
Back to top
Login to vote
Karl E. Peterson

External


Since: Dec 10, 2003
Posts: 32



(Msg. 3) Posted: Wed Jun 11, 2008 4:22 pm
Post subject: Re: Require a checkbox Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

MxPxRobbie.DeleteThis@gmail.com wrote:
> Great! Now, for the second part. I see that this makes my form
> disappear.

Define "this"?

> I am worried about my users inputting all of their
> information and forgetting to check this box, thus having to start
> over. Is there a way to take me back to the form, including all the
> information previously entered? I had something done earlier, but it
> ended up giving me duplicate entries at my bookmarks.

Can't you just *not* Hide or Unload the current form? (IOW, I suspect "this" is
actually "you.")
--
..NET: It's About Trust!
http://vfred.mvps.org
Back to top
Login to vote
Doug Robbins - Word MVP

External


Since: Jul 14, 2006
Posts: 4716



(Msg. 4) Posted: Thu Jun 12, 2008 3:03 am
Post subject: Re: Require a checkbox Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You need the following construction.

If CheckBox1.Value = False Then
MsgBox "Please discuss with your counterpart prior to filling out
this document."
Else
[Code that is populating the document]
End If


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

<MxPxRobbie RemoveThis @gmail.com> wrote in message
news:7495e25c-0636-4f9d-bcc3-b9df8d75010b@c65g2000hsa.googlegroups.com...
> Hello, I need to make a checkbox to require a check before my form can
> be submitted. I have the basic part down, but after the message box is
> clicked, my form populates the document anyway. How do I get the
> message box to go away and return to the form?
>
> If CheckBox1.Value = False Then
> MsgBox "Please discuss with your counterpart prior to filling out
> this document."
> End If
>
> I apologize for my lack of knowledge, and thank you in advance for
> your help!
Back to top
Login to vote
Doug Robbins - Word MVP

External


Since: Jul 14, 2006
Posts: 4716



(Msg. 5) Posted: Thu Jun 12, 2008 3:03 am
Post subject: Re: Require a checkbox Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You need the following construction.

If CheckBox1.Value = False Then
MsgBox "Please discuss with your counterpart prior to filling out
this document."
Exit Sub
Else
[Code that is populating the document]
End If


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

<MxPxRobbie RemoveThis @gmail.com> wrote in message
news:24bafbe5-0cf6-4c22-93d8-7ac9ad963c95@79g2000hsk.googlegroups.com...
On Jun 11, 2:17 pm, "Doug Robbins - Word MVP"
<d... RemoveThis @REMOVECAPSmvps.org> wrote:
> You need the following construction.
>
> If CheckBox1.Value = False Then
> MsgBox "Please discuss with your counterpart prior to filling out
> this document."
> Else
> [Code that is populating the document]
> End If
>
> --
> Hope this helps.
>
> Please reply to the newsgroup unless you wish to avail yourself of my
> services on a paid consulting basis.
>
> Doug Robbins - Word MVP
>
> <MxPxRob... RemoveThis @gmail.com> wrote in message
>
> news:7495e25c-0636-4f9d-bcc3-b9df8d75010b@c65g2000hsa.googlegroups.com...
>
>
>
> > Hello, I need to make a checkbox to require a check before my form can
> > be submitted. I have the basic part down, but after the message box is
> > clicked, my form populates the document anyway. How do I get the
> > message box to go away and return to the form?
>
> > If CheckBox1.Value = False Then
> > MsgBox "Please discuss with your counterpart prior to filling out
> > this document."
> > End If
>
> > I apologize for my lack of knowledge, and thank you in advance for
> > your help!- Hide quoted text -
>
> - Show quoted text -

Great! Now, for the second part. I see that this makes my form
disappear. I am worried about my users inputting all of their
information and forgetting to check this box, thus having to start
over. Is there a way to take me back to the form, including all the
information previously entered? I had something done earlier, but it
ended up giving me duplicate entries at my bookmarks.

Thanks Doug!
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> User Forms All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET