Einzelnen Beitrag anzeigen

Waldteufel
(Gast)

n/a Beiträge
 
#6

Re: Prüfen, ob biMaximize in BorderIcons vorhanden

  Alt 17. Apr 2005, 19:23
Hi.

Zitat von Michael_Bayer:
Da kommt ein "Der linken Seite kann nichts zugewiesen werden"
Delphi-Quellcode:
procedure MachWas;
var
  x : set of char;
begin
  Include(x, 'c');
  Include(x, 'y');
  if 'cin x then ShowMessage('c is drin...');
  if 'hin x then ShowMessage('h is drin...');
  Exclude(x, 'c');
  Include(x, 'h');
  if 'cin x then ShowMessage('c is jetzt drin...');
  if 'hin x then ShowMessage('h is jetzt drin...');
end;
liefert 'c ist drin...' , 'h ist jetzt drin...'
  Mit Zitat antworten Zitat