Hiiiii
I m making an window application, in which i have written some text in the text property of the form, but i want that when application is running, in that case form text should not be displayed.....
And i don't want to use the form property: FormBorderStyle-->None, Because in that case the form will become unmovable.
Can anyone Tell me some other solution related to this................

Recommended Answers

All 3 Replies

You can use following code on form_load event :

this.Text=" ";

You can try this as well

public Form1() {
  InitializeComponents();
  this.Text = string.Empty; 
}

thank you buddies............

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.