Results 1 to 3 of 3

Classes

Threaded View

  1. #1
    Registered User
    Join Date
    02-04-2005
    Posts
    36

    Classes

    Can anyone please explain why I get an error when I try to call methods or properties on the following:

    MODULE Code
    Sub CreateBankAccount()
    
    Dim BankAcount As clsBankAccount
    Set BankAccount = New clsBankAccount
    
    Debug.Print BankAcount.BankBalance 'I get the error here
    
    End Sub

    CLASS MODULE clsBankAccount DEFINITION:

    Private mdBankBalance As Double
    
    Public Property Get BankBalance() As Double
        Set BankBalance = mdBankBalance
    End Property
    Many thanks in advance
    Ben
    Last edited by blatham; 02-20-2008 at 05:27 PM.

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