+SaveStringToFile creates a TFileStream instance for the specified +file name, and writes the content in AString to the stream. The +stream is created with fmCreate mode. The Write method in the file stream is +used to store the value in AString. The return value is True if the +string value was successfully written to the stream instance. +
++Use LoadStringFromFile to read a string value from a file. +
++LoadStringFromFile creates a TFileStream instance used to load the +values from the file name in AFileName. The stream is created with +the fmOpenREad file mode, and its Read method is called to read the contents of +the entire file stream. +
++The return values is a String type with the values read from the stream, and +its size matches the size of the file stream. If the file stream has no +content, the return value is an empty string (''). +
++Use SaveStringToFile to store a string to a specified file name. +
+