MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Mar 8th, 2002, 07:17 PM   #1
Igor
New Member
 
Join Date: Mar 2002
Posts: 16
Default

Hi,

I am looking to create a drop down box with a difference. I have a set of macros, which are used as navigation tools within the spreadsheet. However, because their number is so big, the buttons I have assigned to them is taking up too much space. Is there a way I can create a drop down list of the macros, and once selected to have that macro run?

Would appreciate any help or guidance,

Thanks,

Igor
Igor is offline   Reply With Quote
Old Mar 8th, 2002, 10:14 PM   #2
Ivan F Moala
MrExcel MVP
 
Ivan F Moala's Avatar
 
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
Default

Quote:
On 2002-03-08 18:17, Igor wrote:
Hi,

I am looking to create a drop down box with a difference. I have a set of macros, which are used as navigation tools within the spreadsheet. However, because their number is so big, the buttons I have assigned to them is taking up too much space. Is there a way I can create a drop down list of the macros, and once selected to have that macro run?

Would appreciate any help or guidance,

Thanks,

Igor
You could try this;
'using ComboBox from Control toolbox = ActiveX object.
'Need to reference the VBA applications extensibility file
'in your project.

What it does:= Adds ALL macro names to the
combobox list when you click the dropbutton
When a selection is made it will ask you
if you want to run the routine......
you can skip this if you wish...BUT make sure
the Run routine is in the routine.


Private Sub ComboBox1_Click()
Dim Q As Integer

Q = MsgBox("Run " & ComboBox1.Text & " macro ??", vbYesNo)
If Q = vbYes Then Application.Run ComboBox1.Text

End Sub

Private Sub ComboBox1_DropButt*******()
Dim VBCodeMod As CodeModule
Dim StartLine As Long
Dim ProcName As String
Dim VBComp

ComboBox1.Clear

For Each VBComp In ThisWorkbook.VBProject.VBComponents
Set VBCodeMod = ThisWorkbook.VBProject.VBComponents(VBComp.Name).CodeModule
If VBComp.Type = vbext_ct_StdModule Then
With VBCodeMod
StartLine = .CountOfDeclarationLines + 1
Do Until StartLine >= .CountOfLines

ComboBox1.AddItem .ProcOfLine(StartLine, vbext_pk_Proc)
StartLine = StartLine + .ProcCountLines(.ProcOfLine(StartLine, _
vbext_pk_Proc), vbext_pk_Proc)
Loop
End With
End If
Set VBCodeMod = Nothing
Next VBComp

End Sub


Ivan
Ivan F Moala is offline   Reply With Quote
Old Mar 10th, 2002, 09:14 PM   #3
Igor
New Member
 
Join Date: Mar 2002
Posts: 16
Default

Hi Ivan,

Thanks for the help, but it is still not working properly. When I select the drop down arrow, it has a problem with the second macro. It gives me the error message "compile error" User defined type not defined

on these lines

Private Sub ComboBox1_DropButt*******()
Dim VBCodeMod As CodeModule

Any idea what I am doing wrong?

many thanks,
Igor
Igor is offline   Reply With Quote
Old Mar 10th, 2002, 10:22 PM   #4
Ivan F Moala
MrExcel MVP
 
Ivan F Moala's Avatar
 
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
Default

Hi Igor

'Need to reference the VBA applications extensibility file
'in your project.

In the VBA editor goto
Tools > references

Select the Microsoft Visual basics for applications Extensibility file


Ivan

OR via code;

Sub MakeLibrary()
On Error Resume Next ''if it already exits
ThisWorkbook.VBProject.References.AddFromGuid _
"{0002E157-0000-0000-C000-000000000046}", 5, 0

End Sub


Ivan
Ivan F Moala is offline   Reply With Quote
Old Mar 10th, 2002, 10:48 PM   #5
Igor
New Member
 
Join Date: Mar 2002
Posts: 16
Default

Fantastic! It works great, thankyou very much!
Igor is offline   Reply With Quote
Old Mar 13th, 2002, 09:15 PM   #6
mdennis624
New Member
 
Join Date: Feb 2002
Location: York, PA
Posts: 16
Default

Ivan,

I am importing data into Excel from a mainframe database. I distribute an .xls macro worksheet to users to load into their /XLStart folder. When they run the macro, it rearranges the raw data into a specific format. I want the main macro to also add a combobox that will list other macro functions that are available to the users as in the previous example. These other macros are Private Subs that are included in the worksheet that contains the main macro. I can get the main macro to add the combobox, but when the macro finishes, the combobox is empty. What am I doing wrong?
Thank you.
mdennis624 is offline   Reply With Quote
Old Mar 13th, 2002, 10:13 PM   #7
Ivan F Moala
MrExcel MVP
 
Ivan F Moala's Avatar
 
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
Default

Quote:
On 2002-03-13 20:15, mdennis624 wrote:
Ivan,

I am importing data into Excel from a mainframe database. I distribute an .xls macro worksheet to users to load into their /XLStart folder. When they run the macro, it rearranges the raw data into a specific format. I want the main macro to also add a combobox that will list other macro functions that are available to the users as in the previous example. These other macros are Private Subs that are included in the worksheet that contains the main macro. I can get the main macro to add the combobox, but when the macro finishes, the combobox is empty. What am I doing wrong?
Thank you.
Change code to this.....

you may have to do case select to rid yourself
of the private code you don't want eg event procedures etc...

Private Sub ComboBox1_DropButt*******()
Dim VBCodeMod As CodeModule
Dim StartLine As Long
Dim ProcName As String
Dim VBComp

ComboBox1.Clear

For Each VBComp In ThisWorkbook.VBProject.VBComponents
Set VBCodeMod = ThisWorkbook.VBProject.VBComponents(VBComp.Name).CodeModule
If VBComp.Type = 1 Or VBComp.Type = 100 Then
With VBCodeMod
StartLine = .CountOfDeclarationLines + 1
Do Until StartLine >= .CountOfLines

ComboBox1.AddItem .ProcOfLine(StartLine, vbext_pk_Proc)
StartLine = StartLine + .ProcCountLines(.ProcOfLine(StartLine, _
vbext_pk_Proc), vbext_pk_Proc)
Loop
End With
End If
Set VBCodeMod = Nothing
Next VBComp

End Sub


Ivan
Ivan F Moala is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

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 On

Forum Jump


All times are GMT -4. The time now is 09:06 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes