Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to be able to view the fields and values selected within a bookmark and display this in a textbox on a sheet so that the user is able to see exactly what the bookmark contains. How do I do this?
Hi,
I can not change the text in the text object,
When I run this code it gives such an error;
set txt = ActiveDocument.getsheetobject("TX01")
Object doesn't support this property or method: 'ActiveDocument.getsheetobject(...).SetText'
Sorry the code is;
ActiveDocument.getsheetobject("TX02" ).SetText = msg
I find the correct code;
set tx = ActiveDocument.GetSheetObject("TX02")
set txprop = tx.GetProperties
txprop.Layout.Text.v = msg
tx.SetProperties txprop