Results 1 to 3 of 3

Thread: error 57

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2000
    Posts
    13
    I have a program I have written in vb 6.0 Now someone is tring to install it and they are getting a error 57 do you know why? and also where can I get a list of runtime error and what they mean.
    Thanks,

  2. #2
    Guest
    Error number 57 is a "Device I/O Error"

    maybe a printer driver or a diskdrive is malfunctioning?

  3. #3
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    error number

    'get error source and description

    Private Sub Command1_Click()

    Dim Msg$

    ' If an error occurs, construct an error message
    'hardcode the error number for test purpose

    Err.Number = 20520

    If Err.Number <> 0 Then
    Msg$ = "Error # " & Err.Number & " was generated by " _
    & Err.Source & Chr(13) & Err.Description
    MsgBox Msg$
    End If

    End Sub

    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

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