LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 32
Default BeforeUpdate event for Combo box

Thanks for taking the time to read my question.

I have a combo box on one of the worksheets. Changing the
value in the combo box will affect many cells on the
worksheet. Therefore I would like to have a BeforeUpdate
event on the combo box where I would have a msgbox asking
if they are sure they really want to change the value.

I can get the Change event to fire, but not the
BeforeUpdate event. Any suggestions on how to get the
BeforeUpdate event to work?

Here is my code.

Thanks again,

Brad

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Private Sub ComboBox2_BeforeUpdate(ByVal Cancel As
MSForms.ReturnBoolean)
Dim answer As Variant

answer = MsgBox("Changing this value will delete the
current list of feeds, and numbers of birds per feed
stage. This will affect the Feed Stage Combo boxes on
this sheet. Do you wish to continue?", 36)
If answer = vbNo Then
Cancel = True
End If
End Sub

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Private Sub ComboBox2_Change()
GetProductNames
End Sub
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I expose the TextBox BeforeUpdate event to my user class? bereid Excel Discussion (Misc queries) 0 November 30th 05 05:00 PM
Event Procedures: Event on Worksheet to fire Event on another Worksheet Kathryn Excel Programming 2 April 7th 04 07:35 PM
worksheet_change event with a combo box ice_cool Excel Programming 3 February 13th 04 03:11 PM
Help with a Combo Box Change Event Ruan[_3_] Excel Programming 1 October 28th 03 08:51 AM
OnTime event not firing in Workbook_Open event procedure GingerTommy Excel Programming 0 September 24th 03 03:18 PM


All times are GMT +1. The time now is 12:16 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"