What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

need help - visual studio

Status
Not open for further replies.

Shade

New Member
Joined
Apr 15, 2012
Messages
26
Reaction score
0
Importing a project into vs works just fine, my troubles start when i try to import it into a Windows form to make a ui for my plugin, any one that could show how?

Whenever i try i just get a bunch of errors with The archebuddy reference even though it is added already..
 
Importing a project into vs works just fine, my troubles start when i try to import it into a Windows form to make a ui for my plugin, any one that could show how?

Whenever i try i just get a bunch of errors with The archebuddy reference even though it is added already..
Code:
private Form1 view;

public void PluginRun()
{
                Thread viewThread = new Thread(() =>
                {
                    view = new View();
                    view.SetMain(this);
                    view.ShowDialog();
                });
                viewThread.SetApartmentState(ApartmentState.STA);
                viewThread.Start();
                viewThread.Join();
}
 
Status
Not open for further replies.
Back
Top