+ Reply to Thread
Results 1 to 12 of 12

Object required error on CommandButton Click

Hybrid View

  1. #1
    Forum Contributor rkjudy's Avatar
    Join Date
    03-31-2009
    Location
    Longview, TX
    MS-Off Ver
    MS Office 2010
    Posts
    239

    Re: Object required error on CommandButton Click

    It's probably something simple. Here's the workbook. Thanks, in advance for your help.
    Attached Files Attached Files

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Object required error on CommandButton Click

    Hello rkjudy,

    Well I sure can't see any reason for this not to work. Hopefullly one of the other members or a Forum moderator will help.

    On an aside and still being a rookie, it seems you could just use a regular forms button for a click type procedure versus the active x. Not entirely sure the difference. Guess I need to do some reading.

    Also, the slowness could be from the way you have your code. It appears you must have used the macro recorder to get most of your code. There is no need to use all of the Select/Selection.

    If you don't mind I will clean some of it up and send you a sample. In the meantime hopefully somebody will come to our rescue.
    HTH
    Regards, Jeff

  3. #3
    Forum Contributor rkjudy's Avatar
    Join Date
    03-31-2009
    Location
    Longview, TX
    MS-Off Ver
    MS Office 2010
    Posts
    239

    Re: Object required error on CommandButton Click

    Thanks for trying. I'm newer to VBA than most. That's why my code is so sloppy. I'll take any advise you can give. BTW, your only seeing a couple of the sheets, the entire workbook has about 12 sheets. Only the ones pertaining to my problem were in the example. Thanks again.

  4. #4
    Forum Contributor rkjudy's Avatar
    Join Date
    03-31-2009
    Location
    Longview, TX
    MS-Off Ver
    MS Office 2010
    Posts
    239

    Re: Object required error on CommandButton Click

    I tried entering the .Show command to a macro and I still get the same error. Any ideas?

  5. #5
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Object required error on CommandButton Click

    Hello rkjudy,

    Okay, figured out not neccesarily where your problem is; however, I know where the error is coming from.

    Go to the VBE and the right click on the frmOrderEntryInfo. Select view code and then temporarily disable all the code.

    Now go back to the worksheet and press the CommandButton1. This worked for me so it's telling me you have to clean up, or actually finish whatever code you have behind the frm.

    Here is what I found:
    Goto Tools>Options... and select Break On All Errors on the General tab.

    Now if there is a problem in the initialize event the debugger should go to the line of code causing the problem.

    Or create a break point (F9) on a line of code in the initialize event and then step through the code with F8.
    Last edited by jeffreybrown; 01-09-2011 at 04:44 PM.

  6. #6
    Forum Contributor rkjudy's Avatar
    Join Date
    03-31-2009
    Location
    Longview, TX
    MS-Off Ver
    MS Office 2010
    Posts
    239

    Re: Object required error on CommandButton Click

    Thanks so much. The code associated with the form was bogus. Not sure how it got there. Any suggestions or shortcuts for my workbook are appreciated.

  7. #7
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,953

    Re: Object required error on CommandButton Click

    Private Sub UserForm_Initialize()
        Desc1.Caption = ActiveSheet.Range("A30").Value
        Desc2.Caption = ActiveSheet.Range("A31").Value
        Desc3.Caption = ActiveSheet.Range("A32").Value
        Desc4.Caption = ActiveSheet.Range("A33").Value
        Desc5.Caption = ActiveSheet.Range("A34").Value
        Desc6.Caption = ActiveSheet.Range("A35").Value
        Desc7.Caption = ActiveSheet.Range("A36").Value
        Desc8.Caption = ActiveSheet.Range("A37").Value
        Desc9.Caption = ActiveSheet.Range("A38").Value
        Desc10.Caption = ActiveSheet.Range("A39").Value
        Desc11.Caption = ActiveSheet.Range("A40").Value
        Desc12.Caption = ActiveSheet.Range("A41").Value
        Desc13.Caption = ActiveSheet.Range("A42").Value
        Desc14.Caption = ActiveSheet.Range("A43").Value
    End Sub
    Ben Van Johnson

+ 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