Results 1 to 4 of 4

Thread: Help!!!

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Sep 2000
    Location
    Illinois
    Posts
    27

    Unhappy

    I know this might sound silly but I don't know how to retrieve my files that I saved on disk??
    I'm a MICKEY FAN

  2. #2
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    here you go:

    Code:
    'to save text1
    Open c:\wazup.dat for output as #1
    Print #1, text1.text
    Close #1
    Code:
    'to retreive file contains into text 2
    Dim strText as string
    Open c:\wazup.dat for input as #2
    Input #2, strText
    Close #2
    text2.text = strText
    NXSupport - Your one-stop source for computer help

  3. #3
    Hyperactive Member
    Join Date
    Mar 2000
    Posts
    461
    Start/Find/Find Files or Folders...

    Enter in the most recognizable part of the name for the file you saved to disk and wait for it to be listed.

    Note the directory then use Windows Explorer to go there.

  4. #4
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    ohhh... if thats what you want I'm assuming that you want to locate your source files on my computer that has VB6 its located: C:\Program Files\Microsoft Visual Studio\VB98\
    NXSupport - Your one-stop source for computer help

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width