假如窗体有Text0和Text2两个文本框,要在Text0中设置规则:
Private Sub Text0_Change()
If Len(Text0.Text) >= 5 Then
Me.Text2.SetFocus
'MsgBox "超过5个字符了!"
End If
End Sub 作者: gaoyh2008 时间: 2011-3-17 21:53 回复 aslxt 的帖子
Private Sub Text0_Change()
Me.Recalc
Me.Text0.SelStart = Len(Nz(Me.Text0.Value, 0))
If Len(Nz(Me.Text0.Value, 0)) >= 5 Then
Me.子窗体.Form.Requery
End If
End Sub