Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question : Question #1: I have g

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Question : Question #1:
I have got this error while installing the distribution copy of my
software at the clients place.The error is as follows:
Runtime Error \'3447\':
The jetVBAfile(VBAJET.dll for 16-bit versions, or VBAJET32.dll for
32-bit versions) failed to initialize when called. Try reinstalling the
application that returned the error. Please tell me what to do with this
error.

Question #2:

Please tell how to write code for checking whether the floppy is full or
write-protected or there is any error in the floppy in Visual Basic 5.0
or 6.0
 
#1: Not quite sure what could be causing this, but I suggest you try to reinstall MDAC 2.6 and the MS Jet DB-engine support.

#2: Floppy? Nope, dont know... :)

Good Luck
-Mats Hulten
 
Use an error trap such as:
Code:
on error resume next
'do whatever you want to do with floppy
if err.number <> 0 then
  'do whatever you want to do if there is an error
end if
err.clear
[code]

good luck!:-)
Paul Prewett
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top