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 7876367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:09:23+00:00 2026-06-03T03:09:23+00:00

I have been trying to work out how to call a method in a

  • 0

I have been trying to work out how to call a method in a different class. Both classes are created dynamically at run-time. Most of the issues I have seen here relate to inheritance, which is different from what I have (I think.)

I am still fairly new to C#, and am trying to test some concepts out.

The first class is something like this:

public class Record
{
    CustomPanel _panel;

    public void recordFunc(){}
}

The internally created class has something like this:

public class CustomPanel : Panel
{
    List<Control> _myControls = new List<Control>;
    // _myControls[0] += new EventHandler(myFunc);

    public void myFunc(object sender, EventArgs e)
    {
        // parentClass.recordFunc();
    }
}

My objective is to create a Record at run-time from a database call. At that point, it creates a Panel (from my CustomPanel class) that gets added to a FlowLayoutControl. When events are fired from the panel’s internal controls, I need to have it update parts of the parent Record class.

Any help is greatly appreciated.

  • 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-06-03T03:09:23+00:00Added an answer on June 3, 2026 at 3:09 am

    I’m not 100% sure what you’re asking, but it seems you want to know how to call a function on a class, when you don’t know the class type at runtime, but it could be one or many record types. Is that correct?

    If so, a way to cleanly achieve the above is to implement an interface on your derived types and call the interface method. For instance, if you have multiple “Record” classes and don’t know the type at runtime, try the following:

    public interface IRecord 
    {
        void RecordFunc();
    } 
    
    public class ARecord : IRecord
    {
        public void RecordFunc()
        {
            Console.WriteLine("ARecord.RecordFunc");
        }
    }
    
    public class AnotherRecord : IRecord
    {
        public void RecordFunc()
        {
            Console.WriteLine("AnotherRecord.RecordFunc");
        }
    }
    
    public class CustomPanel : Panel
    {    
        private IRecord _parentRecord;
    
        // Where parentRecord could be ARecord or AnotherRecord
        public class CustomPanel(IRecord parentRecord)
        {
            _parentRecord = parentRecord;
        }
    
        public void MyFunc(object sender, EventArgs e)
        {
            _parentRecord.RecordFunc();
        }
    }
    

    If that’s not what you’re looking for, please clarify.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay I been trying to work this out but unable too. I have a
I have been pulling my hair out trying to make this work. I have
I have been trying to work my way through Project Euler, and have noticed
I have been trying to make it work with either fwrite or fputcsv but
I have been trying to get nServiceBus to work with Ninject 2.0 as the
I have been trying to get this to work correctly and I think I
I have been trying to get this jsfiddle to work. So far without luck.
I have been trying to make a case for using Python at my work.
This is crazy, I have been trying for hours to get this to work.
I've been trying to work out whether it's possible to do the following sort

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.