small convertion to .net (last one)

  • Thread starter Thread starter Ryan Epinos
  • Start date Start date
R

Ryan Epinos

"get" statement does not support by .net

any ideas on converting this one

vb6

Open FileName2 For Binary As DestinChan
DestinLen = LOF(DestinChan)
DestinFile = String$(DestinLen, 0)
Get #DestinChan, , DestinFile
Close #DestinChan
 
Ryan said:
"get" statement does not support by .net

any ideas on converting this one

vb6

Open FileName2 For Binary As DestinChan
DestinLen = LOF(DestinChan)
DestinFile = String$(DestinLen, 0)
Get #DestinChan, , DestinFile
Close #DestinChan
Doesn't your version of .Net come with online help? There's a whole
section in there on file functions.

Tom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top