Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 707665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:18:15+00:00 2026-05-14T04:18:15+00:00

I recently noticed the CallByName keyword in VB6. Since this takes a object, procedure

  • 0

I recently noticed the CallByName keyword in VB6.

Since this takes a object, procedure name, “call type” and arguments array, can this be used to “fake” some types of polymorphic behavior?

I can make 2 classes, class A and B, each with the same method Foo, and do:

Dim list As New Collection
Dim instanceA As New ClassA
Dim instanceB As New ClassB
Dim current As Object

Call list.Add(instanceA)
Call list.Add(instanceB)

For Each current in list
  Call CallByName(current, "methodName", vbMethod)
Next

Anyone done this before? Problems? Horrible idea or genius idea? Implications? Unintended consequences?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T04:18:15+00:00Added an answer on May 14, 2026 at 4:18 am

    Why fake polymorphism? VB6 has real polymorphism in the form of interfaces:

    ' Interface1.cls '
    
    Sub Foo()
    End Sub
    
    ' --------------------------------------------- '
    
    ' Class1.cls '
    Implements Interface1
    
    Private Sub Interface1_Foo()
        ? "Hello from class 1"
    End Sub
    
    ' --------------------------------------------- '
    
    ' Class2.cls '
    Implements Interface1
    
    Private Sub Interface1_Foo()
        ? "Hello from class 2"
    End Sub
    
    ' --------------------------------------------- '
    
    ' Module1.mod '
    
    Dim x As Interface1
    Set x = New Class1
    Call x.Foo()
    Set x = New Class2
    Call x.Foo()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just recently noticed Dictionary.TryGetValue(TKey key, out TValue value) and was curious as to
Recently I noticed my application appears to be eating memory that never gets released.
Recently, I noticed some people mentioning that std::list::size() has a linear complexity. According to
I've recently began using dTrace and have noticed just how awesome it is. Its
We recently switched some of our sites from deflate to gzip and noticed a
Background: Recently while looking at a structured text editor I noticed they used a
I recently noticed that my installer (VS 2008) does not remove the DLLs during
I recently noticed that colors are now displaying darker on iPhone than their actual
I recently noticed my test database is not being cleaned up after my tests
I recently noticed the following code which basically defines a class method public Func<string,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.