how do i stop access changing my vb code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

every time i type in this bit of code it gets automaticly changed can anyone
tell
me how to stop it being changed.

the newgpId() should say NewGPID()


Me![GPID] = newgpId()
 
I'm not certain that you can - however, the VB Editor will convert procedure
names to match the procedure declaration so in your case, the solution would
be to make sure that the case in your procedure declaration is the way you
want it to appear elsewhere.
 
Back
Top