How should I change form name dynamically in windows c#

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • samnine
    New Member
    • Mar 2013
    • 7

    How should I change form name dynamically in windows c#

    I have a Master form in windows application, developed in c#, visual studio 2008.

    Initially form name is "Management"(wh ich is set through properties windows).

    Now based upon logged in user I would like to change form name.

    Is there any way to change form name on LOAD event.
  • samnine
    New Member
    • Mar 2013
    • 7

    #2
    I got the answer on GOOGLE... may it will be useful for other users.
    InitializeCompo nent();
    this.Text = "Hello World";

    Comment

    Working...