Hi All
I have office 2010 and would lilke to open a word document and replace some text using
OLE
Can anyone provide a small sample.
Regards
Colin
Hi All
I have office 2010 and would lilke to open a word document and replace some text using
OLE
Can anyone provide a small sample.
Regards
Colin
TRY
oWORD := CREATEOBJECT( "word.Application" )
CATCH
MSGSTOP("L'Application Microsoft WORD n'est pas installée sur cet Ordinateur !" )
RETURN NIL
END
oDoc = oWord:Documents:Open(CFILE )
oDoc:Select()
oSel = oWord:Selection
WORDREPLACE( oSel, "#nom#", ALLTRIM(DNOM))
oWord:ActivePrinter = CNAME
oDoc:PrintOut()
oDoc:Close( 0 )
oWord:Quit()
STATIC FUNCTION WORDREPLACE( oSel, cSrc, cRpl )
oSel:Start = 0
oSel:End = -1
WHILE oSel:Find:Execute( cSrc )
oSel:Range:Text = cRpl
ENDDO
RETURN NILHi Richard
Thanks for your reply - I get the following error
Error description: Error word.Application:DOCUMENTS/9 'Item' is not a property.: OPEN
Called from: C:\xHarbour\source\rtl\win32ole.prg => TOLEAUTO:OPEN(0)
All the samples I have found use the same code as you provided.
Regards
Colin
FUNCTION WORDREPLACEALL( oSel, cSrc, cRpl )
LOCAL oRng := oSel:Document:Content
IF AT( cSrc, oRng:Text ) = 0; RETURN .F.; ENDIF
WHILE oRng:Find:Execute( cSrc )
oRng:Text = cRpl
oRng:Collapse( wdCollapseEnd )
ENDDO
RETURN .T.Hi All
The document I was trying to open was a docx - I tried a another doc document and
it openned.
Cheers
Colin
To me this is a very interesting topic.
But I have 2 more questions.
(To Enrico) I tried your example of WordReplace(), but I got an error that the variable WDCOLLAPSEND doesn't exist. Any idea ? The original code, proposed in this topic, is working just fine.
How can I search for a character, a word or a sentence, using this idea ?
Is there any difference between : DO WHILE ..... ENDDO and WHILE ..... ENDDO ?
Thank you very much in advance.
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
driessen wrote:I got an error that the variable WDCOLLAPSEND doesn't exist.
#define wdCollapseEnd 0driessen wrote:How can I search for a character, a word or a sentence, using this idea ?
IF oRng:Find:Execute( cString )
// Found!
ENDIFdriessen wrote:Is there any difference between : DO WHILE ..... ENDDO and WHILE ..... ENDDO ?
Enrico,
Thank you very much for your answer.
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
Enrico,
Maybe just another question.
I noticed that the text is not replaced in de header and footer. Any idea how that can be solved ?
Thanks a lot in advance.
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
FUNCTION WORDREPLACERNGALL( oDoc, cSrc, cRpl )
LOCAL lOk := .F.
LOCAL oRng
TRY
oRng = oDoc:StoryRanges[ 7 ]
IF AT( cSrc, oRng:Text ) > 0
WHILE oRng:Find:Execute( cSrc )
oRng:Text = cRpl
oRng = oDoc:StoryRanges[ 7 ]
ENDDO
lOk = .T.
ENDIF
CATCH
END
RETURN lOkEnrico,
Thanks a lot.
I'll try it out this weekend.
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
Enrico,
I tried you last example. Unfortunately I got an error : Error Word.Application:SELECTION/0 S_OK:STORYRANGES.
Does STORYRANGES need to be defined ? If yes, how ?
Thank you in advance.
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
You can't have errors using my sample because the access to StoryRange is enclosed in a TRY/CATCH/END structure.
EMG
Enrico,
You are right. But I tried your example first and noticed that my Word-document wasn't changed at all.
So I did remark the TRY ... CATCH ... END lines. And then that error occurred. To my opinion the reason why my document wasn't changed ?
Regards,
Michel D.
Genk (Belgium)
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773
Please show a reduced sample of the problem so I can try to fix it.
EMG