Automation Events
In Visual Basic, how do I code this statement, xl.SheetSelectionChange = "Newx" to trap the selection change event
Private Sub Form_Load(
Set xl = CreateObject("Excel.Application"
xl.Workbooks.Ad
xl.SheetSelection.Change = "Newx
xl.Cells(1, 4).Selec
End Su
Sub Newx(
' ... cod
End Su
|