Hi,
I created app to send form data to Word. Its working properly. But now I want send that data anywhere in the document. For example begining, end and center. Here Im not talking about align text. Acctually I want send those data to certain palces. Please Help me
Ashish SharmaPosted Dec 28, 2007, 11:09 AM
Hi,
Do you guys have any idea regarding add-in express tool by using which we can add some functionality to the word application .
Craig MurphyPosted Apr 2, 2006, 5:16 PM
If you are starting from an empty Word document, i.e. no bookmarks, then I would still recommend recording a macro to "get positions" from within the Word document - then you will be able to write some code using the VBA as a guide.
de OraclePosted Mar 22, 2006, 11:53 AM
Craig MurphyPosted Mar 20, 2006, 4:11 PM
If you add a bookmark (Insert --> Bookmark) to your document, then record a Word macro and navigate to the bookmark via the Insert --> Bookmark menu, select the bookmark then click on the Goto button, you will end up with some code like this:
Selection.GoTo What:=wdGoToBookmark, Name:="BM_1"
It is possible to perform reasonably powerful operations using this approach - dynamic tables, etc. become a reality.
HTH