Was ist VB Error 3704 ?
Gruss
Awasty
Was ist VB Error 3704 ?
Gruss
Awasty
Hi Awasty,
welche VB-Version benutzt Du, was für ein Programm wolltest Du schreiben, in welchem Umfeld ist der Fehler aufgetaucht … ???
Habe folgendes in Verbindung mit Datenbanken gefunden:
Q. I am using the remote admin tool with an ODBC database,
however I am getting 31, ODBC error with statement, error number is: 3704 The operation requested by the application is not allowed if the object is closed.
A. This is likely a permissions issue accessing the database. You need to grant access to the database to the IUSR_MachineName or IWAM_machinename accounts, or modify the login parameters in the DSN string.
Vielleicht hilft es Dir.
Gruß
Sculpture
Was ist VB Error 3704 ?
Gruss
Awasty
hallo
Private Sub Command1_Click()
On Error GoTo Errhandler
Error 3704
Exit Sub
Errhandler:
ant = MsgBox(Err.Description)
End Sub
----> Anwendungs- oder objektdefinierter fehler
)
ich weiss nicht ob dir DAS was hilft
aber mit dem programmbeispiel oben kannst du zu dem Objekt Err
z.B. eine Beschreibung abfragen (hilfe zur selbsthilfe)
bzw. eine ordentliche fehlermeldung anzeigen
mfg Luemmel