2개의 Spread가 있다고 할때
A Spread 특정셀에서 엔터를 치면 B Spread로 포커스 이동시키려고하면 쉽지가 않다.
이건 A Spread의 EditMode 의 상태때문에 그런듯 싶다(확신못함 -_-;;)
아무튼 이런 경우 아래처럼 EditMode를 True로 해둔후에 다른 Spread로 포커스 이동해주면 포커스 이동한다.
Private Sub A_Spread_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
If A_Spread.ActiveCol = 3 Then
A_Spread.EditMode = True
B_Spread.Visible = True
B_Spread.SetFocus
End If
End If
End Sub