M mackrackit Member Licensed User Longtime User Sep 17, 2011 #1 Hi, I know this is going to be something silly but I can not get my head around what I am missing. This... B4X: FileOpen(f, "example.dat", cWrite) FileWrite(f, "First Line") FileClose(f) Is returning this... Compiling code. Error Error parsing program. Error description: Undeclared variable 'fileopen' is used before it was assigned any value. Occurred on line: 86 FileOpen(f, "example.dat", cWrite) Click to expand...
Hi, I know this is going to be something silly but I can not get my head around what I am missing. This... B4X: FileOpen(f, "example.dat", cWrite) FileWrite(f, "First Line") FileClose(f) Is returning this... Compiling code. Error Error parsing program. Error description: Undeclared variable 'fileopen' is used before it was assigned any value. Occurred on line: 86 FileOpen(f, "example.dat", cWrite) Click to expand...
M mackrackit Member Licensed User Longtime User Sep 17, 2011 #2 DOH... I just noticed that the example I am trying came from Basic4ppc http://www.b4x.com/forum/questions-help-needed/4876-appending-file.html How is a similar thing accomplished in Basic4android? I want to write a file and append to it. Upvote 0
DOH... I just noticed that the example I am trying came from Basic4ppc http://www.b4x.com/forum/questions-help-needed/4876-appending-file.html How is a similar thing accomplished in Basic4android? I want to write a file and append to it.
klaus Expert Licensed User Longtime User Sep 17, 2011 #3 The code you show is Basic4PPC code and not Basic4Android code. For Basic4Android code look here and here. Best regards. Upvote 0
The code you show is Basic4PPC code and not Basic4Android code. For Basic4Android code look here and here. Best regards.
Erel B4X founder Staff member Licensed User Longtime User Sep 18, 2011 #4 The recommended way to search Basic4android only topics is with the custom search engine which is available in the upper right corner: Upvote 0
The recommended way to search Basic4android only topics is with the custom search engine which is available in the upper right corner:
M mackrackit Member Licensed User Longtime User Sep 18, 2011 #5 Thanks guys!!! Looks like TextWriter is what I was looking for. Off to the next bit .. Upvote 0