Lightlancer
Programmer
Hi there,
In my table "tblstatus" i have a field named "Versie" its a Text field.
in that field this number is filled in: 211880
In my first form of the database, a field (that is hided) has also a number: "211880"
the form must look if this number is the same, higher or lower....
it seems to give an error at
am i doing something wrong??
p.s. I tried to create a new table in de forms database, with this number also as text. but it gives the same error:
"this properties or method is not supported by this object"
Greetz
Lightlancer
In my table "tblstatus" i have a field named "Versie" its a Text field.
in that field this number is filled in: 211880
In my first form of the database, a field (that is hided) has also a number: "211880"
the form must look if this number is the same, higher or lower....
Code:
If DLookup("[Versie]", "[tblstatus]") >= [Me.Versie] Then
MsgBox "Er is op dit moment een update van de database. Indien u weet hoe u moet updaten, installeer dan zo snel mogelijk de nieuwe versie. indien u niet weet hoe dit werkt, bel dan 6667", vbOKOnly, "Update vereist!"
Cancel = True
DoCmd.CloseDatabase
Code:
If DLookup("[Versie]", "[tblstatus]") >= [Me.Versie] Then
p.s. I tried to create a new table in de forms database, with this number also as text. but it gives the same error:
"this properties or method is not supported by this object"
Greetz
Lightlancer