Startseite › Foren › Deutsches LiveCode-Forum › Convertieren, Zugriff ,Variablen , Ansprechen und löschen › Antwort auf: Convertieren, Zugriff ,Variablen , Ansprechen und löschen
Hallo Shadowside,
willkommen im Forum!
Wichtig: Niemals THE in Verbindung mit LC Objekten benutzen, das ist für Properties „reserviert“:
Gut -> put „sdsdsd“ into fld „mein feld“
SCHLECHT -> put „sdsd“ into THE field „mein feld“
Zu Deinem ersten Problem:
put the content of the fld „NAME MEINES FELDES“ into VARIABLE-> jedoch ohne Erfolg.
Falsche Syntax.
put the text of the fld „NAME MEINES FELDES“ into VARIABLE -> auch ohne Erfolg.
Abgesehen von THE ist die Syntax korrekt und sollte auch so funktiuonieren!
…
put the text of fld „NAME MEINES FELDES“ into VARIABLE
…
Gibt es eine Fehlermeldung hierbei?
Folgendes klappt auch:
…
put fld „mein feld“ into VARIABLE
…
Gruß
Klaus