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

  • Home
  • SEARCH
  • 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 this behaviour. To put it shortly, it displays the commits
I've noticed recently in PHP you can do this. $myNewArray = $oldArray + $someArray;
I recently noticed this while working on an app- why is it that when
I've only recently noticed a crash in one of my apps when an object
I recently noticed that every image on this website - the logo, badge colors,
This is an odd one I'm puzzled about. I recently noticed at the Gnu
Recently I noticed that my vs2010 was auto lower casing my html attributes. This
I recently noticed that there are several bigint type fields in one of my
I recently noticed that on my system it is not possible to require 'lib/file.pl'
I recently noticed that colors are now displaying darker on iPhone than their actual

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.