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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:12:20+00:00 2026-05-25T02:12:20+00:00

I want to load another C# windows form application that I created with my

  • 0

I want to load another C# windows form application that I created with my current windows form application. I want to load it from memory. However, I am running into:

An unhandled exception of type ‘System.Reflection.TargetInvocationException’ occurred in mscorlib.dll
Additional information: Exception has been thrown by the target of an invocation.

    private void button1_Click(object sender, EventArgs e)
    {

        FileStream _FileStream = new FileStream("load.exe", FileMode.Open);
        BinaryReader _BinaryReader = new BinaryReader(_FileStream);
        byte[] bBytes = _BinaryReader.ReadBytes(Convert.ToInt32(_FileStream.Length));

        _BinaryReader.Close();
        _FileStream.Close();

        Assembly a = Assembly.Load(bBytes);
        MethodInfo method = a.EntryPoint;


        if (method != null)
        {
            object o = a.CreateInstance(method.Name);
            method.Invoke(o,null);
        }



    }
  • 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-25T02:12:21+00:00Added an answer on May 25, 2026 at 2:12 am

    Look at the exception’s InnerException property to know the actual exception that made the code bomb.

    The code you used is definitely wrong but not actually the reason for the failure. Fwiw, the Main() entrypoint is a static method, you don’t create an instance of the Program class. method.Invoke(null, null) is the correct way.

    But it isn’t going to work, you are obviously running this code in a Winforms app. The program you’re trying to load is also a Winforms app. And will try to use the one-and-only Application class object. That cannot work:

    • Application.EnableVisualStyles() will fail, it must be called before any windows are created
    • Application.Run() will fail, there can only be one active message loop

    It may look like this will work when you try this from a console mode application. It actually doesn’t, the Main() method of a console app doesn’t have the [STAThread] attribute. A hard requirement for GUI apps. Without it, lots of typical GUI operations will fail in mysterious ways. Anything that uses the clipboard, drag and drop, the shell dialogs like OpenFileDialog for example requires an STA thread.

    This just isn’t going to fly. Consider Process.Start().

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

Sidebar

Related Questions

I want to load some images into my application from the file system. There's
I want to load some data from mysql into my cocoa application view before
I'm trying to create a windows form application that manipulates data from several tables
I want to load a desktop application, via reflection, as a Control inside another
I want to load the data into session so that when the next button
I want to load defined folders into my website from same system, now I
In a windows form application, on main form load, i have set a serial
I want to load one or more DLLs dynamically so that they run with
I want to load 52 images (deck of cards) in gif format from my
i want to load some photos into my sd card image in the emulator.

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.