T
Troot
Hi,
I'm trying to select the contents of the notes panel using VBA. I have
this much:
For Each j In ActiveWindow.Panes
If j.ViewType = ppViewNotesPage Then
j.Activate
'ActiveWindow.Selection.TextRange = "Howdy"
ActiveWindow.Selection.TextRange.Characters(1, 5).Select
MsgBox ActiveWindow.Selection.TextRange
End If
Next
But no matter what I do, I can't seem to select to select the text that
is already there. I can add text alright, but can't select anything
that was inserted already. I really need to get this working.
Does anyone know how I can do this??
Thanks
John
I'm trying to select the contents of the notes panel using VBA. I have
this much:
For Each j In ActiveWindow.Panes
If j.ViewType = ppViewNotesPage Then
j.Activate
'ActiveWindow.Selection.TextRange = "Howdy"
ActiveWindow.Selection.TextRange.Characters(1, 5).Select
MsgBox ActiveWindow.Selection.TextRange
End If
Next
But no matter what I do, I can't seem to select to select the text that
is already there. I can add text alright, but can't select anything
that was inserted already. I really need to get this working.
Does anyone know how I can do this??
Thanks
John