I've been trying to write a string to a text file, but whenever the process is done, it has only written a blank line. Writing integers works fine. I've researched the problem, but haven't been able to find a solution. Code:
Dim strSave As String
strSave = strCharName
My.Computer.FileSystem.WriteAllText _
("C:\UnnamedGame\NameOne.txt", strSave, False)
strCharName– Mark Hall Dec 2 '12 at 5:09WriteAllTextline and look at what the variable contains. – Mark Hall Dec 2 '12 at 5:26strCharNamecontains Nothing. I guarantee it. Your code works whenstrCharNamecontains a valid value - I've tested it, and Mark's checked it. Doubt your assumption, and trust your debugger. Something's modifyingstrCharName. – Michael Petrotta Dec 2 '12 at 5:48