Yes, it's possible. How to do it depends on what type of status bar you're
using
System.Windows.Forms.StatusStrip:
Create an instance of ToolStripTextBox and add that to the Items collection
for the StatusStrip
You will need to set the size of the ToolStripTextBox
System.Windows.Forms.StatusBar:
Create an instance of TextBox and add that to the Controls collection of the
StatusBar
You will need to set the size and location (relative to the top left corner
of the statusbar) of the TextBox
/claes
> Hello,
>
[quoted text clipped - 4 lines]
> Thx.
> Andy Jacobs