ถ้าสามารถแก้ฟิลด์ในเทเบิลให้มีความยาว 500 ตัวอักษรได้ เวลาป้อนก็จะถูกจำกัดไปโดยปริยาย แต่ถ้าไม่ได้ ก็ใส่โค้ดข้างล่างไว้ใน KeyPress event procedure ของ collection
Private Sub collection_KeyPress(KeyAscii As Integer)
If KeyAscii <> vbKeyBack Then
If Len(Me.collection.Text) = 500 Then
KeyAscii = 0
Msgbox "ข้อความแจ้งเตือน"
End If
End If
End Sub