run-time error 438 property or method not supported by the object

caere

New member
Local time
Today, 21:52
Joined
Jul 8, 2009
Messages
5
Hi all
I have an Access 97 db that is running OK in a PC with WinME as OS, either with the Access programm installed or installed as a run-time.
When I install de db in a machine with WinXP I get the run-time error 438, as shown bellow.


Private Sub Form_Open(Cancel As Integer)
Call SetArray(10, "*")
Call SetArray(11, "*")
StatoDiRiepilogo = 0
Riepilogo.ColWidth(0) = 1650
Riepilogo.ColWidth(1) = 6700
Riepilogo.ColWidth(2) = 700
Riepilogo.ColWidth(3) = 800
Riepilogo.ColWidth(4) = 1200
Sconto.Value = 0
Tot.Value = TotaleVendita
Tot1.Value = Tot.Value
Totlire.Value = 0
Codice.SetFocus
End Sub


Riepilogo is an object that works with a MSFlexGRD ocx that I have already registered. It seems that the registration of another library is missing.

I will appreciate very much your expert advices.
Thanks
 
If any library is missing Access will crash on unexpected places... like this...

Even simple functions like Right and Left will fail..

Fix the reference fix your problem.

Good luck & Welcome to AWF
 
Thanks namliam but I have no idea of which is the missing reference. I don't now to wich library the riepilogo objet belongs.
Can you give me a guess?
 
Well missing reference has the word "MISSING" in front of it...

I have no clue what this object belongs to :( sorry
 

Users who are viewing this thread

Back
Top Bottom