B4A Question Using correctly File.WriteList - GiovanniPolese    Jun 2, 2024 Hi.
My problem is to write on disk various Lists, in sequence, on same file. The saving sequence is:
File.Delete(InternalWorkDir,FileUndo)
File.WriteList(InternalWorkDir,FileUndo,Layers)
File.WriteMap(InternalWorkDir,FileUndo,colorMap)
b=rvs.ConvertObjectToBytes(layerMap.Size) ' just an integer
File.WriteBytes(InternalWorkDir,FileUndo,b)
The list, the map and the integer... B4A Question file.writelist with Type defined variables - Rusty    Mar 6, 2019 = "HPPrintServicePluginlogo.png"
PrinterList.Add(NewPrinter2)
… 'I write the list to a file
File.WriteList(Starter.ConfigUser.Folder, Starter.ConfigUser.FileName, PrinterList)
… 'Then I read it
PrinterList = File.ReadList(Starter.ConfigUser.Folder, Starter.ConfigUser.FileName)
… '... B4A Question File.WriteList -> convert to string -> why? - KMatle    Jan 26, 2017 I've never asked for the reason :-)
As known File.WriteList will convert the values to...? (Maybe because the written file is a textfile?)... B4J Question File.writelist too many parameters??? - Cableguy    Oct 27, 2016 This is as a simple code as one can have:
Dim myList As List
myList.Initialize
myList.Add("#############################")
myList.Add("")
myList.Add("Created the " & DateTime.Date(DateTime.Now))
File.WriteList(File.DirData,"config.ini... B4A Question Help Please. Can ListView,File.WriteList ,File.ReadList work together? - giga    Jan 10, 2014 .WriteList(File.DirRootExternal, "test.txt", List1)
End If
Activity.AddView(ListView1, 0....WriteList(File.DirRootExternal, "test.txt",List1)
I must be missing something....
I believe... B4A Question QUESTIONS About: File.WriteList(FilePath, FileName, MyList) - margret    Mar 22, 2012 Hello, I need to know some details about the following command:
File.WriteList(FilePath, FileName, MyList)
1..Will this command complete it's write function if it is followed by ExitApplication?
2..Does it complete it's write job before the following command is executed, like Dim A As String?
3..Is it per say, Modal or Modeless?
I did not see any Flush option to force... B4A Question Application Error when use File.writeList to DirAssets - YIM bunchhat (first post)    Jun 8, 2019 Ok now it work thank you... B4A Question WriteList / ReadList with ExternalFile - GiovanniPolese    Aug 15, 2023 to use TextWriter.WriteList. Therefore :
Sub WriteFilesWrk(FF As List)
Dim Ist As OutputStream...)
Txw.WriteList(FF)
Txw.Close
Ist.Close
End Sub
private Sub ReadFilesWrk
Dim EE... B4A Question Files created with File.WriteList command not visible in Explorer - RDCrozier (first post)    Jul 14, 2017 Thanks again Erel!... B4A Question File.WriteList problem - DonManfred (first post)    Jul 11, 2015   (1 reaction) a listview is not a list... Page: 1   2   3   4   5   6   7   |