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 22nd, 2002, 04:59 PM   #1
clares
Board Regular
 
Join Date: Mar 2002
Location: Portsmouth.UK
Posts: 543
Default

I posted ealier a question regarding option buttons but I was unsucessful in getting it going. Please could you look and offer me any solutions. The code that I am using is:

Sub Start_Click()
If optionbutton1 = True Then
Worksheets("Labels").Select
ElseIf optionbutton2 = True Then
Worksheets("Products").Select
End If
End Sub

I have two option buttons on a dialog box, and a button named start, with code in the "******* event".

1 Continue with existing labels (button1)
2 Create new labels (button2)

What I want to do is if the user presses the top button then presses Start, the code needs to open up the labels worksheet, or if the user chooses the second option and clicks on the start button it opens up the product worksheet. Please help

Thanks in advance - not sure what I am doing wrong!!
clares is offline   Reply With Quote
Old Mar 22nd, 2002, 05:14 PM   #2
Al Chara
MrExcel MVP
 
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
Default

Try the following code:

Private Sub start_Click()
If OptionButton1.Value = True Then
Worksheets("Labels").Select
ElseIf OptionButton2.Value = True Then
Worksheets("Products").Select
End If
UserForm1.Hide
End Sub

The code does what you want and then closes the userform. Replace UserForm1 with the name of your userform.
__________________
Kind regards,

Al Chara
Al Chara is offline   Reply With Quote
Old Mar 22nd, 2002, 05:19 PM   #3
clares
Board Regular
 
Join Date: Mar 2002
Location: Portsmouth.UK
Posts: 543
Default

Thanks but the same problem as I had earlier on and that's that when I run the code the debug window opens and highlighted in yellow is the "If OptionButton1.Value = True Then" and when I pass the cursor over the true vaule it tells me that true=true and nothing opens? Any ideas?
On 2002-03-22 16:14, Al Chara wrote:
Try the following code:

Private Sub start_Click()
If OptionButton1.Value = True Then
Worksheets("Labels").Select
ElseIf OptionButton2.Value = True Then
Worksheets("Products").Select
End If
UserForm1.Hide
End Sub

The code does what you want and then closes the userform. Replace UserForm1 with the name of your userform.

[/quote]
clares is offline   Reply With Quote
Old Mar 22nd, 2002, 05:24 PM   #4
Mudface
MrExcel MVP
 
Join Date: Feb 2002
Location: Sunny, spring-like Hull
Posts: 3,339
Default

Al's code needs to go in the same module as your userform. To make sure, double-click on the command button on your userform whilst in the VB editor and copy and paste the code in between the sub declaration and 'End Sub' over your exisitng code.
Mudface is offline   Reply With Quote
Old Mar 22nd, 2002, 05:27 PM   #5
clares
Board Regular
 
Join Date: Mar 2002
Location: Portsmouth.UK
Posts: 543
Default

I just pasted it over the existing code, however I didn't use the userform - I used the dialog box feature. Earlier on in the day I used a userform and still had the same result?

On 2002-03-22 16:24, Mudface wrote:
Al's code needs to go in the same module as your userform. To make sure, double-click on the command button on your userform whilst in the VB editor and copy and paste the code in between the sub declaration and 'End Sub' over your exisitng code.
[/quote]
clares is offline   Reply With Quote
Old Mar 22nd, 2002, 05:36 PM   #6
Mudface
MrExcel MVP
 
Join Date: Feb 2002
Location: Sunny, spring-like Hull
Posts: 3,339
Default

Could you post all the code in your userform module, the names of your option buttons and the names of the sheets you want selected, along with the error(s) you get when you click on the 'start' button?
Mudface is offline   Reply With Quote
Old Mar 22nd, 2002, 05:41 PM   #7
Tom Schreiner
Board Regular
 
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
Default

Hi Clares,
What does the error message say when your code goes to break?
Tom Schreiner is offline   Reply With Quote
Old Mar 22nd, 2002, 05:41 PM   #8
Al Chara
MrExcel MVP
 
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
Default

I recommend using the userform method. Try it again, with my code placed in the module for the userform.
__________________
Kind regards,

Al Chara
Al Chara is offline   Reply With Quote
Old Mar 22nd, 2002, 05:48 PM   #9
clares
Board Regular
 
Join Date: Mar 2002
Location: Portsmouth.UK
Posts: 543
Default

Yes, no worries!

Private Sub start_Click()
If OptionButton1.Value = True Then
Worksheets("Labels").Select
ElseIf OptionButton2.Value = True Then
Worksheets("Products").Select
End If
dialog1.Hide
End Sub

This is the code that I am using the error is runtime 424, object requuired! The name of the form is dialog1, the name of the first button is Continue with existing labels and the name of the second option button is Create new lables. The error offers me the debug option and when I go debug, the first line of code:
If OptionButton1.Value = True Then is highlighted in yellow!!

Thanks
On 2002-03-22 16:36, Mudface wrote:
Could you post all the code in your userform module, the names of your option buttons and the names of the sheets you want selected, along with the error(s) you get when you click on the 'start' button?
[/quote]
clares is offline   Reply With Quote
Old Mar 22nd, 2002, 06:05 PM   #10
clares
Board Regular
 
Join Date: Mar 2002
Location: Portsmouth.UK
Posts: 543
Default

Its working - hippeee

Thanks everyone its now working I created a new userform amnd its fine. Brilliant. Well its 1.10am in the UK and I'm going to bed. Thanks again
Quote:
On 2002-03-22 16:48, clares wrote:
Yes, no worries!

Private Sub start_Click()
If OptionButton1.Value = True Then
Worksheets("Labels").Select
ElseIf OptionButton2.Value = True Then
Worksheets("Products").Select
End If
dialog1.Hide
End Sub

This is the code that I am using the error is runtime 424, object requuired! The name of the form is dialog1, the name of the first button is Continue with existing labels and the name of the second option button is Create new lables. The error offers me the debug option and when I go debug, the first line of code:
If OptionButton1.Value = True Then is highlighted in yellow!!

Thanks
On 2002-03-22 16:36, Mudface wrote:
Could you post all the code in your userform module, the names of your option buttons and the names of the sheets you want selected, along with the error(s) you get when you click on the 'start' button?
[/quote]
clares 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 12:27 AM.


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