PDA

View Full Version : Help replacing form's title bar


zigzag
06-18-04, 06:04 AM
I need help in drawing over the form's title bar. I know this is possible overridding CreateParams but I couldn't find any examples. If someone could just post a simple code (either VB .NET or C#) , I'd be very grateful. Thx

Alexei Kubarev
07-05-04, 01:00 PM
Just use something like Form1.Text or Form1.Title..
i dont really remeber how it is... simply use the VS.NET IDE and it will help :D

In general i think you know how it works -- you have a label called Label1
To change the text you use Label1.Text="This is my new text"

So its woking the same way with the form..

Good luck m8