Link to home
Start Free TrialLog in
Avatar of dwaipeyan
dwaipeyanFlag for India

asked on

Chaging the title bar info dynamically in C# using SCSF

How to change the title bar info dynamically for SCSF application in C#
SOLUTION
Avatar of sryckman
sryckman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dwaipeyan

ASKER

Thank you for your information. I could solve like thid:

this.Parentform.text = "Text you want to appear";
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I could get the solution by using below code:
this.Parentform.text = "Text you want to appear";

Open in new window