object required

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MaxiBrain
    New Member
    • Aug 2006
    • 2

    object required

    How can i correct the Run-time error '424" error that says object required. Every of the required object is in their right order. Please help me.

    lblExtendedPric e.Caption = FormatCurrency( curExtendedPric e)
  • Reena83
    New Member
    • Sep 2006
    • 32

    #2
    Originally posted by MaxiBrain
    How can i correct the Run-time error '424" error that says object required. Every of the required object is in their right order. Please help me.

    lblExtendedPric e.Caption = FormatCurrency( curExtendedPric e)

    lbExtendedPrice .Caption = Format(varExten dedPrice, "Currency")

    Dim varExtendedPric e As Currency,

    Comment

    • sashi
      Recognized Expert Top Contributor
      • Jun 2006
      • 1749

      #3
      Hi there,

      Check your object naming convention, in other words, check the name of the objects on the form, i.e. textbox, label, combobox.. take care my fren.. :)

      Originally posted by Reena83
      lbExtendedPrice .Caption = Format(varExten dedPrice, "Currency")

      Dim varExtendedPric e As Currency,

      Comment

      Working...