How to open a file in VB?

Tsabo

Fledgling Freddie
Joined
Jan 26, 2004
Messages
1,151
I am doing a course in Software Engineering and just wondering how to open a file in VB. This is with the idea of creating a Save Game option.

Thanks for any help :)
 

JingleBells

FH is my second home
Joined
Mar 25, 2004
Messages
2,224
If you're using VB.Net, then I'd use C# tbh, much nicer than VB :)
 

Tsabo

Fledgling Freddie
Joined
Jan 26, 2004
Messages
1,151
I'm a 1st year on a course and we are learning VB and C++, 2nd semester we will be doing vb.NET

Thanks for the help btw :)
 

MaLk

Fledgling Freddie
Joined
Nov 28, 2004
Messages
195
Tsabo said:
I'm a 1st year on a course and we are learning VB and C++, 2nd semester we will be doing vb.NET

Thanks for the help btw :)

C++ = ROX :D
VB and VB.net = sux :p

C# or even java beats VB.net imo :D
 

SheepCow

Bringer of Code
Joined
Dec 22, 2003
Messages
1,365
Code:
Open "file.txt" For Input as #1
...
Close #1

If I remember correctly ...
 

Users who are viewing this thread

Top Bottom