this is the weirdest thing i came across

here is the desription
======================

when i complile my program and run it on this machine (it has vb on it)
evrything works fine

when i take my code and run it on another machine

i get "invalid procedure or call" error
on following

Code:
Load frmDispute
frmDispute.Show
Call frmDispute.NewDispute
the error is on the call for precuder

yes the procedure is public..

now if i make it te following
Code:
            
            Load frmDispute
            frmDispute.Show
            msgbox "this will prevent the error"
            Call frmDispute.NewDispute
i wont get an error on that if i put a simple msgbox before the call of the procedure
anyone ever came across this?

thanks