+ Reply to Thread
Results 1 to 2 of 2

resetting options buttons

Hybrid View

  1. #1
    Registered User
    Join Date
    11-06-2005
    Posts
    13

    resetting options buttons

    hello

    I have a sheet with a drop down box and some options buttons
    the opitions buttons are in group of 2 (yes / no options)

    I also have a command button that clears the cells and return you to the main page but i want to reset the options buttons to no but every time i try i get a dug error i have try to record one will stop no joy

    Code
    Range("D9").Select
    Selection.ClearContents
    ActiveWindow.SmallScroll Down:=60
    Range("C87").Select
    ActiveCell.FormulaR1C1 = "1"
    Range("C88").Select
    ActiveWindow.SmallScroll Down:=-60
    Range("D9").Select
    OptionButton10.Value = True
    OptionButton4.Value = True
    OptionButton6.Value = True
    Sheets("mainpage").Select

    the option buttons are from the control toolbox

    Help
    Thanks

  2. #2
    Bob Phillips
    Guest

    Re: resetting options buttons

    Try this code

    Application.EnableEvents = False
    Range("D9").ClearContents
    Range("C87").FormulaR1C1 = "1"
    ActiveSheet.OLEObjects("OptionButton10").Object.Value = True
    ActiveSheet.OLEObjects("OptionButton4").Object.Value = True
    ActiveSheet.OLEObjects("OptionButton6").Object.Value = True
    Sheets("mainpage").Select
    Application.EnableEvents = True


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Rmagic" <Rmagic.1ym42m_1132182602.8221@excelforum-nospam.com> wrote in
    message news:Rmagic.1ym42m_1132182602.8221@excelforum-nospam.com...
    >
    > hello
    >
    > I have a sheet with a drop down box and some options buttons
    > the opitions buttons are in group of 2 (yes / no options)
    >
    > I also have a command button that clears the cells and return you to
    > the main page but i want to reset the options buttons to no but every
    > time i try i get a dug error i have try to record one will stop no joy
    >
    > Code
    > Range("D9").Select
    > Selection.ClearContents
    > ActiveWindow.SmallScroll Down:=60
    > Range("C87").Select
    > ActiveCell.FormulaR1C1 = "1"
    > Range("C88").Select
    > ActiveWindow.SmallScroll Down:=-60
    > Range("D9").Select
    > OptionButton10.Value = True
    > OptionButton4.Value = True
    > OptionButton6.Value = True
    > Sheets("mainpage").Select
    >
    > the option buttons are from the control toolbox
    >
    > Help
    > Thanks
    >
    >
    > --
    > Rmagic
    > ------------------------------------------------------------------------
    > Rmagic's Profile:

    http://www.excelforum.com/member.php...o&userid=28595
    > View this thread: http://www.excelforum.com/showthread...hreadid=485714
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1