disappeared pop up form

cynapattery

Registered User.
Local time
Today, 12:00
Joined
Jul 9, 2013
Messages
28
Hi all,

I have a problem with access forms.
I am around 2 months working with access. I created an application/dataentry form and it was working very well. suddenly today, I got an error which says. Run-time Error 5 "Invalid Procedure Call or Argument. together with that or may be independent, a pop up search form jsut disappeared. I put a msgbox in form load of pop up forma dn the msgbox appears but the pop up form jsut disappeared.
I was about to give the application to use and thats when all these happend :banghead:

Please... help..
 
You need to Debug this error.. Set breakpoint in the Form Load and see which line is offending..

attachment.php


Normally Invalid Procedure Call Or Argument is thrown when you are using String Manipulation functions trying something like..
Code:
Len(Null)
Left("Hello", -3)
 
The error happens when the main form loads that means the first line of code itself.
 
So did you place a Breakpoint or not? If you place a Break point immediately after the Private Sub Form_Load() then you will have stopped the code execution.. If not there is some other Macro or other Module that is preventing this operation..
 

Users who are viewing this thread

Back
Top Bottom