Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello I simply want to have a macro when called displays the value of a text object (TX02)
ie msgbox (TXO2 contents)
Anyone have any idea how to do this and thanks again everyone for your help in the past
Jason
Hello,
Sub Show
set obj = ActiveDocument.GetSheetObject("TX02")
MsgBox obj.GetText
End Sub
- Steve
Actually, to answer my own question:
test = ActiveDocument.Evaluate(
"OSUSer()")