wie kann man zur statusBar neue "Tabs" hinzufügen ?
also das hab ich (curserposi):
Delphi-Quelltext
1: 2: 3: 4: 5: 6: 7: 8: 9:
| procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); var CursorPos: TPoint; begin GetCursorPos(CursorPos); StatusBar1.SimplePanel := True; StatusBar1.SimpleText := Format('The cursor is at (%d, %d)', [CursorPos.X, CursorPos.Y]); end; |
Aber ich möchte neben der curserposition noch einen text stehen haben (panels gehen nicht weil ich über "simpletext" gemacht hab"
MfG
Darksider aka Delphi~Anfänger