Einzelnen Beitrag anzeigen

Lemmy

Registriert seit: 8. Jun 2002
Ort: Berglen
2.380 Beiträge
 
Delphi 10.3 Rio
 
#2

AW: Umstieg aus Delphi.

  Alt 22. Jan 2013, 06:36
Hallo Fritz,

machen wir mal die Delphi-Tags um die Sourcen:

Delphi-Quellcode:
type
  TForm1 = class(TForm)
  private
    { private declarations }
  public
    { public declarations }
     //<--------------------
type
  kontakt = record
    bezeichnung :string [20];
    port,
    kontakt :byte;
    l_adresse,
    // r_adresse : kt;
    // signal :daten_element;
    // next_kontakt :kontakt_;
    typ :byte;
    messzeit,auszeit,schrittgeschwindigkeit :integer;
    wirkrichtung,scharf: boolean {true = links}
  end;
  kontakt_ = ^kontakt;
  
  end; //<--------------------

var
Form1: TForm1;
kontakt2 : kontakt_;//////////////////////////////

implementation
das end; vor var ist falsch. das gehört an die Stelle weiter oben, um die Klassendeklaration des Formulars abzuschließen...
  Mit Zitat antworten Zitat