¡¡

Ä«Å×°í¸®    API, DLL, ActiveX, ±âŸÄÁÆ®·Ñ Á¶È¸:2705
 Á¦¸ñ   ¿£ÅÍ۸¦ ÅÇŰó·³,'Make Enter Key Act Like TAB Key

 'Make Enter Key Act Like TAB Key

 'Add 2 Text Boxes to your Form.
 'Insert the following code to your form:

Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{TAB}"
KeyAscii = 0
End If
End Sub

Copyright By AccessVision