[Dragoon]
Vortigaunt
- Joined
- Feb 27, 2004
- Messages
- 840
- Reaction score
- 6
This isn't mod related, so I'm not totally sure this is the right place to post this. Sorry if it isn't.
I'm working on a pretty simple program in Visual Basic 6, and I've run into a problem. I need it to open a file, and then put it in a textbox. I've got it to open it, but it doesn't seem to like commas. It only reads until the first one.
Any idea what the problem is, and how I could fix it?
Edit: Here's the code I'm using.
I'm working on a pretty simple program in Visual Basic 6, and I've run into a problem. I need it to open a file, and then put it in a textbox. I've got it to open it, but it doesn't seem to like commas. It only reads until the first one.
Any idea what the problem is, and how I could fix it?
Edit: Here's the code I'm using.
Code:
Open txt_fileLocation.Text For Input As #1
Input #1, Temp1
txt_savedVariables.Text = Temp1
Close #1