User Profile

Collapse

Profile Sidebar

Collapse
wael20
wael20
Last Activity: Jul 25 '08, 09:43 AM
Joined: Jul 16 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I started my GUI in Thread, but i cannot debug it!

    Code:
    public ProgramTEST()
    {
              ApplicationTestStart _applicationTestStart = new ApplicationTestStart();
              ThreadStart ts2 = new ThreadStart(_applicationTestStart.Run);
              Thread t1 = new Thread(ts2);
              t1.Start();
    }
    --------------------------------------------------------------------------
    Code:
    public
    ...
    See more | Go to post

    Leave a comment:


  • I cannot change anything on the GUI Software, It is Just example, that i click on this button, the problem is:

    On this following line, my program stops:.

    Application.Run (new MyApplicationCo ntext(new string[] {}));

    or, when you write:

    ProgramTEST MyTest = new ProgramTEST(); // here my program stops, tell i close the GUI!!!But i need the GUI!
    MyTest.Test();
    See more | Go to post

    Leave a comment:


  • It is just example, a GUI will opened and than will clicked on OK button automatically
    See more | Go to post

    Leave a comment:


  • Just for example:
    [PHP]
    public class ProgramTEST
    {
    public ProgramTEST()
    {
    Application.Ena bleVisualStyles ();
    Application.Set CompatibleTextR enderingDefault (false);
    Application.Run (new MyApplicationCo ntext(new string[] {})); // -->This bolcks the course of the application.
    }

    public ControlTester buttonTester;

    ...
    See more | Go to post

    Leave a comment:


  • I need the GUI, that i started, to test it with NUnitforms...

    so...
    How can i back from Application.Run to place where was is called? (to test it with NUnitforms)

    or, what should i do, when i must to use Application.Run ( new MyMainForm() ) to run my application?
    so i can´t use this way:

    MyMainForm myForm = new MyMainForm();
    myForm.ShowDial og();

    because my application...
    See more | Go to post

    Leave a comment:


  • "C#" Back from Application.Run to place where was is called

    Hello,

    C# !!!
    How can i back from Application.Run to place where was is called?

    or, what should i do, when i must to use Application.Run ( new MyMainForm() ) to run my application?
    so i can´t use this way:

    MyMainForm myForm = new MyMainForm();
    myForm.ShowDial og();

    Thanks
    See more | Go to post
No activity results to display
Show More
Working...