
Originally Posted by
June7
English might be helpful.
oh yeah whoops I thought it was a dutch form 
ok here whe go
I have a backend and a frontend database with a MDW linked (Access 2003)
users can just doubbleclick on the mdb and it opens but they can't edit anything
I want to make a MDE file instead of MDW
when I create a MDE it says that it's not possible
and gives me some explanation over table id's and VBA stuff
I read on some forums that I need to Compile the VBA project and I did
and somehow the compiler doesn't like this code and gives me this errormessage:
Method or data member not found (Error 461)
Code:
Private Sub Postcode_GotFocus()
Me.tb_help.Value = "postcode van de klant"
End Sub
Private Sub Postcode_LostFocus()
Me.tb_help.Value = ""
End Sub
what's wrong about this code?