初学access之VBA,不知如何学起?
有这样一段程序代码,有几个问题不懂,求教各位老师们,多谢指教!
Private Sub Text24_afterUpdate()
On Error GoTo Err_Text24_AfterUpdate
Me![商品编号].Setfocus
Docmd.findrecord me![text24], ,true, ,true
if me![商品编号]<>me![text24] then
,
,
,
请问:1,Me 是什么意思?
2. 何时用.何时用!?
3,afterupdate()是什么函数,上哪查呀?
4,docmd.findrecord是什么意思?
5.第3行中,,true, ,true什么意思?