User Info Message Box in c#.NET

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • joriveek
    New Member
    • May 2007
    • 1

    User Info Message Box in c#.NET

    Hi,

    Can anyone using a type of 'message box' in a C# windows application which does the following?

    - It opens as soon as the application starts and user activates
    - start showing the info.messages in the box as the program proceeds

    Sorry I am not very good in explaning this

    Example:

    public void addNumbers ( int varA, int varB )
    {
    int varC = 0;

    // here my text box/message box opens
    // write the varC here
    WriteTo ( varC.toString() ); // say as 0 it should't close, keep open unlike messagebox
    varC = intA + intB;

    // again write to the textbox or whatever the value of c
    WriteTo( varC.ToString() );

    }

    The idea is the user wants to see some of the messages including say ProgressBar/Status bar while it is processing the files say for example.

    Thanks
    J.
Working...