Article ID: 114771 - Last Review: October 20, 2003 - Revision: 3.0 FIX: Disk or Network Error with Data Access Objects
This article was previously published under Q114771 On This PageSYMPTOMS
Error 3043 (Disk or network error) can result when you run multiple
instances of one Visual Basic program or you run multiple programs, and all
instances or programs perform data access on the same database.
If the program does not explicitly close all the data access objects (by using db.close, for example), then the error will occur when the second instance of the program tries to work with a data access object. WORKAROUND
Close all data access objects (tables, dynasets, snapshots, and databases)
explicitly. For example, if your program has any of the following
statements
execute the following close statements before the program ends: NOTE: If you place the .Close methods in the Unload or QueryUnload events, make sure you invoke these events before your program ends by using the Unload statement (for example, Unload Me). Be careful when using the End statement; it does not invoke the Unload or QueryUnload events. STATUS
This bug was corrected in Microsoft Visual Basic version 4.0 for Windows.
MORE INFORMATIONSteps to Reproduce Problem
| Other Resources Other Support Sites
CommunityGet Help NowArticle Translations |






















Back to the top