home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global pfad
- set pfad to the pathName
- put LeseText1(the pathName & "Director.inf") into field "Startpfad"
- end
-
- on LeseText1 dateiname
- global LeseObjekt
- if objectp(LeseObjekt) then
- LeseObjekt(mdispose)
- end if
- set LeseObjekt to FileIO(mnew, "read", dateiname)
- if objectp(LeseObjekt) then
- set text to LeseObjekt(mReadFile)
- return text
- LeseObjekt(mdispose)
- end if
- end
-