Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.033 Beiträge
 
Delphi 12 Athens
 
#5

Re: Anfängerhilfe -> if bedingung

  Alt 19. Feb 2010, 21:27
Zitat:
if (i = ListBox2.Items.Count -1) or ((StrToInt(ComboBox2.Text) <> 0) and (StrToInt(ComboBox2.Text) = h)) then
Wobei man hier noch etwas kürzen und eine Stringoperation loswerden kann
if (i = ListBox2.Items.Count - 1) or ((h <> 0) and (StrToInt(ComboBox2.Text) = h)) then
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests
  Mit Zitat antworten Zitat