Antwort auf: Speichern

Startseite Foren Deutsches LiveCode-Forum Speichern Antwort auf: Speichern

#5953
Klaus Major
Administrator

    Hallo Jan,

    Du musst zuerst die Datei definieren, sonst läuft Dein IF IMMER ins Leere!

    on openStack
      put specialfolderpath("documents") & "/Data01.txt" into tFile
      if there is a file tFile then
       put url("file:" & tFile) into data01
       put data01 into field "Fd1" of card "auswahl01"
        put field "Fd1" of card "auswahl01" into field "Fd01" of card "menue"
       end if
    end openStack
    on mouseUp
      put field "Fd01" into data01
      put specialFolderPath("documents") into Kantine
      ## Dieser Ordner ist IMMER und ÜBERALL vorhanden!
      ## Das hier ist also überflüssig.
      ##if there is NOT a folder Kantine then
      ##create folder Kantine
      ##end if
      put data01 into url("file:" & Kantine & "/Data01.txt")
      if the result <> EMPTY then
       answer "Fehler beim Schreiben der Datei!" & CR & the result
      end if
    end mouseUp

    Ich besitze weder Handy noch Tablet und entwickle nicht für die mobile Platform, daher kann ich Dir nicht mit einem APK dienen.

    Gruß

    Klaus