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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

runtime error 401 with access??

Status
Not open for further replies.

hinchdog

Programmer
Feb 14, 2001
380
US
I have a program which uses an access database. the program for the most part works fine on other systems, however i've been told it sometimes gives a runtime "error 401" message when trying to update the database. two questions, what does this error mean? and two, how can it be fixed? thanks!

-hichdog
 
Did you try VBHelp or MSDN?

I got :

Can't show non-modal form when modal form is displayed (Error 401)


When a modal form is displayed, you can’t display another non-modal form. This error has the following cause and solution:

You tried to use the Show method or set the Visible property to True on a non-modal form when another form is already displayed as modal.
Use either the Unload statement or the Hide method on the modal form before attempting to use the Show method on a non-modal form.


--------------------------------------------------------------------------------
Send feedback to MSDN.Look here for MSDN Online resources.


But there is much more stuff on MSDN Let me know if this helps
________________________________________________________________
If you are worried about how to post, please check out FAQ222-2244 first

'There are 10 kinds of people in the world: those who understand binary, and those who don't.'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top