margret Well-Known Member Licensed User Longtime User Mar 23, 2012 #1 Hello, I need to know some details about the following command: B4X: 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 a data write. Does it Flush before moving on in the code? Thanks
Hello, I need to know some details about the following command: B4X: 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 a data write. Does it Flush before moving on in the code? Thanks
Erel B4X founder Staff member Licensed User Longtime User Mar 23, 2012 #2 1. Yes. 2. Yes. 3. Not sure what you mean. x. WriteList (like the other similar File.Write methods) opens the file, writes the data and close it. Upvote 0
1. Yes. 2. Yes. 3. Not sure what you mean. x. WriteList (like the other similar File.Write methods) opens the file, writes the data and close it.