Hi If I open a File like this: Local $hFile =FileOpen($FilePath,0) ;0=Read $String_FileContent =FileRead($hFile) FileClose($hFile)Then I am able to successfully read the file. If I open a File like this: Local $hFile =FileOpen($FilePath,2) ;2=Write FileWrite($hFile,$String_FileContent) FileClose($hFile)Then I am able to successfully write to the file. But what If I want to do both Read+Write in 1 FileOpen+Close? How do I FileOpen() a file for both Read+Write? When I try Local $hFil