ComboBox..._Change() Miss Launches often

GO GaryFingers

New Member
Joined
Jan 19, 2005
Messages
19
I have a worksheet, with About 5 to 6 Combo boxes, made with the active x control tool box

They're set up on change, but a couple of them launch themselves without me using them. And can't even close the program properly. The first three worked great!?#%
What makes them operate Automatically like that?

OF course,they are named differently, but all are on Sheet 4 code

The following is the code for one of the combo's, It runs other macros
Code:
Private Sub ComboBoxWkshtDateUm_Change()

        'To post Job Date, Um, qty, misc formulas
   
    ComboBoxWkshtDateUm.DropDown
    
    If ComboBoxWkshtDateUm.Value = "Priceformula" Then
        Application.Run "'GO Estimater-2.xlt'!Priceformula"
    End If

    
    If ComboBoxWkshtDateUm.Value = "Date" Then
        Application.Run "'GO Estimater-2.xlt'!PostJobDate"
    End If


    If ComboBoxWkshtDateUm.Value = "UM" Then
        Application.Run "'GO Estimater-2.xlt'!WKSHT_Umpaste"
    End If
    
    
    If ComboBoxWkshtDateUm.Value = "Qty" Then
        Application.Run "'GO Estimater-2.xlt'!PasteFormulaQty"
    End If


    If ComboBoxWkshtDateUm.Value = "Cancel" Then
        ComboBoxWkshtDateUm.Value = "F/D"
        Exit Sub
    End If

	'make value F/D, so that you can pick the same thing again, and have a 'change'

    ComboBoxWkshtDateUm.Value = "F/D"
    ActiveSheet.Select
    ActiveCell.Activate

End Sub
I also don't have a handle on proper Initializing procedure either
Thanx to all that Can Help
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.

Forum statistics

Threads
1,214,901
Messages
6,122,157
Members
449,068
Latest member
shiz11713

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top