Hmpf. Das habe ich hier mit Windows 2000 nicht. Aber ich hatte es bei "Benutzer löschen" als ich nur "Löschen" da stehen hatte. das sind alles Strings aus der Ressource:
Delphi-Quellcode:
// Toolbar
rsTBBChooseCmp = 'Computer wählen';
rsTBBNew = 'Neuer Benutzer';
rsTBBSave = 'Einstellungen speichern';
rsTBBDel = 'Benutzer löschen';
rsTBBGrpMng = 'Gruppenverwaltung anzeigen';
Delphi-Quellcode:
case PNMToolBar(lParam)^.hdr.code of
TTN_NEEDTEXT:
case PToolTipText(lParam).hdr.idFrom of
ID_MNU_CHOOSE_COMP: PToolTipText(lParam).lpszText := PChar(rsTBBChooseCmp);
ID_MNU_NEW: PToolTipText(lParam).lpszText := PChar(rsTBBNew);
ID_MNU_SAVE: PToolTipText(lParam).lpszText := PChar(rsTBBSave);
ID_MNU_DEL: PToolTipText(lParam).lpszText := PChar(rsTBBDel);
ID_MNU_GRPMNG: PToolTipText(lParam).lpszText := PChar(rsTBBGrpMng);
end;
end;
Keine Ahnung, was das sein könnte.