ผมเคยใช้โดยการใช้ Event ของ KeyPress คอยดักจับ การกด key enter หรือ key อื่นๆ โดยการเทียบกับ Ascii หาก มีค่าของ key ที่กำหนด ก็จะทำการ Setfocus ไปยัง Text อื่นๆ ที่ได้กำหนดไว้คับ
เช่น
private sub textbox1_keypress ( )
if keyascii ={ค่าของkeyEnter} then
textbox2.focus
end if
end sub