PC Review


Reply
Thread Tools Rate Thread

After Update Question

 
 
Bob
Guest
Posts: n/a
 
      22nd Jun 2006


I have a Combo Box that has 3 options in it about tax , Can I add a Message
box to warn about something , so you click OK and carry on selecting your
choice, There is nothing On Click just After Update

Thanks in advance.........Bob Vance


 
Reply With Quote
 
 
 
 
Sarah Schreffler
Guest
Posts: n/a
 
      22nd Jun 2006

Bob wrote:
> I have a Combo Box that has 3 options in it about tax , Can I add a Message
> box to warn about something , so you click OK and carry on selecting your
> choice, There is nothing On Click just After Update
>
> Thanks in advance.........Bob Vance


If you want the Msgbox to offer the option NOT to select the option,
then you want BeforeUpdate instead. (That can be cancelled)

AfterUpdate fires after the choice is made.

Sarah Schreffler

 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      22nd Jun 2006
No just wanted to give them a warning when they click on the arrow but still
proceed...Thanx Bob
OK Warning that they have read it!

"Sarah Schreffler" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> Bob wrote:
>> I have a Combo Box that has 3 options in it about tax , Can I add a
>> Message
>> box to warn about something , so you click OK and carry on selecting your
>> choice, There is nothing On Click just After Update
>>
>> Thanks in advance.........Bob Vance

>
> If you want the Msgbox to offer the option NOT to select the option,
> then you want BeforeUpdate instead. (That can be cancelled)
>
> AfterUpdate fires after the choice is made.
>
> Sarah Schreffler
>



 
Reply With Quote
 
Svetlana
Guest
Posts: n/a
 
      22nd Jun 2006
You could raise up the msg box you want on mouse down event for the
combobox.

 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      22nd Jun 2006
Could you alter this message so it works...Thanx Bob

Private Sub cbGSTOptions_MouseDown(Button As Integer, Shift As Integer, X As
Single, Y As Single)
"Please Update Your Tax Button"
End Sub

"Svetlana" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> You could raise up the msg box you want on mouse down event for the
> combobox.
>



 
Reply With Quote
 
Sarah Schreffler
Guest
Posts: n/a
 
      22nd Jun 2006

Bob wrote:
> Could you alter this message so it works...Thanx Bob
>
> Private Sub cbGSTOptions_MouseDown(Button As Integer, Shift As Integer, X As
> Single, Y As Single)
> "Please Update Your Tax Button"
> End Sub
>
> "Svetlana" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > You could raise up the msg box you want on mouse down event for the
> > combobox.


Okay, BeforeUpdate and AfterUpdate doesn't fire until after they have
made a choice in Combo Box.

In order to pop up a MSgbox you need to use the command.

Msgbox "Please Update Your Tax Button"

 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      23rd Jun 2006
Thanx Sarah worked brilliant....Access doesn't have a Mouse over message
does it , Cursor over box and a message pops up.....Thanks bob

"Sarah Schreffler" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> Bob wrote:
>> Could you alter this message so it works...Thanx Bob
>>
>> Private Sub cbGSTOptions_MouseDown(Button As Integer, Shift As Integer, X
>> As
>> Single, Y As Single)
>> "Please Update Your Tax Button"
>> End Sub
>>
>> "Svetlana" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > You could raise up the msg box you want on mouse down event for the
>> > combobox.

>
> Okay, BeforeUpdate and AfterUpdate doesn't fire until after they have
> made a choice in Combo Box.
>
> In order to pop up a MSgbox you need to use the command.
>
> Msgbox "Please Update Your Tax Button"
>



 
Reply With Quote
 
Sarah Schreffler
Guest
Posts: n/a
 
      23rd Jun 2006
Not a Mouse Over message.
But the ComboBox (in Access 2003) DOES have a OnMouseMove event. II
have not worked with it (didn't even know it was there until you asked
and I went to look) You might take a look at the help on that and see
if it would suit.

The way Access generally works (like Visual Basic) is actions
triggering events. Then you can write code (or macros but generally
VBA code is a better idea, more flexible, ability to step through the
code to find errors and catch errors gracefully) to run when an event
is trigger. For example, changing the status line or popping up a
message box when the mouse moves over a particular control

Sarah Schreffler

Bob wrote:
> Thanx Sarah worked brilliant....Access doesn't have a Mouse over message
> does it , Cursor over box and a message pops up.....Thanks bob
>
> "Sarah Schreffler" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> >
> > Bob wrote:
> >> Could you alter this message so it works...Thanx Bob
> >>
> >> Private Sub cbGSTOptions_MouseDown(Button As Integer, Shift As Integer, X
> >> As
> >> Single, Y As Single)
> >> "Please Update Your Tax Button"
> >> End Sub
> >>
> >> "Svetlana" <(E-Mail Removed)> wrote in message
> >> news:(E-Mail Removed)...
> >> > You could raise up the msg box you want on mouse down event for the
> >> > combobox.

> >
> > Okay, BeforeUpdate and AfterUpdate doesn't fire until after they have
> > made a choice in Combo Box.
> >
> > In order to pop up a MSgbox you need to use the command.
> >
> > Msgbox "Please Update Your Tax Button"
> >


 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      24th Jun 2006
What have I done wrong here, I want to show this message:
Private Sub tbCompanyName_MouseMove(Button As Integer, Shift As Integer, X
As Single, Y As Single)
Msgbox(This is a Company Name Box)
End Sub

"Sarah Schreffler" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Not a Mouse Over message.
> But the ComboBox (in Access 2003) DOES have a OnMouseMove event. II
> have not worked with it (didn't even know it was there until you asked
> and I went to look) You might take a look at the help on that and see
> if it would suit.
>
> The way Access generally works (like Visual Basic) is actions
> triggering events. Then you can write code (or macros but generally
> VBA code is a better idea, more flexible, ability to step through the
> code to find errors and catch errors gracefully) to run when an event
> is trigger. For example, changing the status line or popping up a
> message box when the mouse moves over a particular control
>
> Sarah Schreffler
>
> Bob wrote:
>> Thanx Sarah worked brilliant....Access doesn't have a Mouse over message
>> does it , Cursor over box and a message pops up.....Thanks bob
>>
>> "Sarah Schreffler" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> >
>> > Bob wrote:
>> >> Could you alter this message so it works...Thanx Bob
>> >>
>> >> Private Sub cbGSTOptions_MouseDown(Button As Integer, Shift As
>> >> Integer, X
>> >> As
>> >> Single, Y As Single)
>> >> "Please Update Your Tax Button"
>> >> End Sub
>> >>
>> >> "Svetlana" <(E-Mail Removed)> wrote in message
>> >> news:(E-Mail Removed)...
>> >> > You could raise up the msg box you want on mouse down event for the
>> >> > combobox.
>> >
>> > Okay, BeforeUpdate and AfterUpdate doesn't fire until after they have
>> > made a choice in Combo Box.
>> >
>> > In order to pop up a MSgbox you need to use the command.
>> >
>> > Msgbox "Please Update Your Tax Button"
>> >

>



 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      25th Jun 2006
I am Stupid
Msgbox("This is a Company Name Box")

"Bob" <(E-Mail Removed)> wrote in message news:e7kg0g$tfa$(E-Mail Removed)...
> What have I done wrong here, I want to show this message:
> Private Sub tbCompanyName_MouseMove(Button As Integer, Shift As Integer, X
> As Single, Y As Single)
> Msgbox(This is a Company Name Box)
> End Sub
>
> "Sarah Schreffler" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Not a Mouse Over message.
>> But the ComboBox (in Access 2003) DOES have a OnMouseMove event. II
>> have not worked with it (didn't even know it was there until you asked
>> and I went to look) You might take a look at the help on that and see
>> if it would suit.
>>
>> The way Access generally works (like Visual Basic) is actions
>> triggering events. Then you can write code (or macros but generally
>> VBA code is a better idea, more flexible, ability to step through the
>> code to find errors and catch errors gracefully) to run when an event
>> is trigger. For example, changing the status line or popping up a
>> message box when the mouse moves over a particular control
>>
>> Sarah Schreffler
>>
>> Bob wrote:
>>> Thanx Sarah worked brilliant....Access doesn't have a Mouse over message
>>> does it , Cursor over box and a message pops up.....Thanks bob
>>>
>>> "Sarah Schreffler" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>> >
>>> > Bob wrote:
>>> >> Could you alter this message so it works...Thanx Bob
>>> >>
>>> >> Private Sub cbGSTOptions_MouseDown(Button As Integer, Shift As
>>> >> Integer, X
>>> >> As
>>> >> Single, Y As Single)
>>> >> "Please Update Your Tax Button"
>>> >> End Sub
>>> >>
>>> >> "Svetlana" <(E-Mail Removed)> wrote in message
>>> >> news:(E-Mail Removed)...
>>> >> > You could raise up the msg box you want on mouse down event for the
>>> >> > combobox.
>>> >
>>> > Okay, BeforeUpdate and AfterUpdate doesn't fire until after they have
>>> > made a choice in Combo Box.
>>> >
>>> > In order to pop up a MSgbox you need to use the command.
>>> >
>>> > Msgbox "Please Update Your Tax Button"
>>> >

>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows update and Microsoft update - question =?Utf-8?B?Um9i?= Windows Vista General Discussion 5 9th Jun 2007 07:38 AM
Update via SUS/WUS question and manual update question. =?Utf-8?B?UmljayBIb3BwZQ==?= Anti-Spyware Installation 1 21st Feb 2006 05:40 PM
Windows Update - Review your update history question =?Utf-8?B?R3V5?= Windows XP General 6 3rd Jul 2005 04:17 PM
[Vb.net question] how to apply online update function into program (the effect just like Norton system work live update) chan Microsoft Dot NET 0 4th Mar 2004 02:43 PM
Software Update Service - update question. Rico Microsoft Windows 2000 Security 1 11th Jul 2003 09:41 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:29 AM.