This is my first post here >>>> So Hi >>>>>
Actually Im a biggener developer with ASP.NET 0.2 and i have a problem with changing the textbox property when i click a control such like Button so how could I change it is properties such like size or font-color and other properties just when clicking that button . I need the code in c# language and I hope that I will get the answer from experiance here .... So this is my Problem ........ Waiting for the Solution >>>>>>
Im not sure that Im accepted here (I mean as a little biggener developer) ..
But I hope to find all my answer here and thanks for all here .
Mohammed EidPosted Mar 3, 2008, 7:55 AM
Len LPosted Mar 2, 2008, 6:38 PM
in the click event of your control (Button or other)
TextBox1.Font = new Font(TextBox1.Font, FontStyle.Bold);
TextBox1.Font = new Font("verdana", 6, FontStyle.Bold)
try these out