From: Mattia B. <mb...@ds...> - 2002-04-25 08:25:01
|
> hello, > > my application has a statusbar and a toolbar. > if i move over an item of the toolbar the text of the statusbar is > deleted because i have no longHelpString defined. > > is there a way to disable the longHelpString functionality of the > toolbar? because i need the statusbar for other information. Not one I know, will ask ( looks like there is no way to do it in wxWindows ); for now you may create a status bar with 2 fields, and set the first to size 0 $this->CreateStatusBar( 2 ); $this->GetStatusBar()->SetStatusWidths( 0, -1 ); $this->SetStatusText( "mytext", 1 ); this is ugly to say the least, but ( almost ) works ( you can see the first field, and this is ugly ). Regards Mattia |