Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Air is water with holes in it.


devel / comp.lang.clipper.visual-objects / Word Automation

SubjectAuthor
* Word AutomationΓεωργιος Τριτσος
`* Re: Word AutomationNorbert Kolb
 `* Re: Word AutomationΓεωργιος Τριτσος
  `* Re: Word AutomationΓεωργιος Τριτσος
   `* Re: Word AutomationNorbert Kolb
    `* Re: Word AutomationΓεωργιος Τριτσος
     `* Re: Word AutomationNorbert Kolb
      `- Re: Word AutomationΓεωργιος Τριτσος

1
Word Automation

<77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1311&group=comp.lang.clipper.visual-objects#1311

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:a05:620a:4405:b0:759:82c:1f2c with SMTP id v5-20020a05620a440500b00759082c1f2cmr4860421qkp.15.1684183728183;
Mon, 15 May 2023 13:48:48 -0700 (PDT)
X-Received: by 2002:a81:4513:0:b0:55d:f929:418f with SMTP id
s19-20020a814513000000b0055df929418fmr15796357ywa.1.1684183727921; Mon, 15
May 2023 13:48:47 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!newsfeed.hasname.com!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Mon, 15 May 2023 13:48:47 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=79.107.127.0; posting-account=5okrTQkAAAB5ZOzJXhO3waq30auy0oBQ
NNTP-Posting-Host: 79.107.127.0
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
Subject: Word Automation
From: georgetritsos73@gmail.com (Γεωργιος Τριτσος)
Injection-Date: Mon, 15 May 2023 20:48:48 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1208
 by: Γεωργιος Τ - Mon, 15 May 2023 20:48 UTC

Hi all,

Does anyone have a sample for Word automation. I want to read a document (.doc) make some changes (like font for some lines) and save it.

Thanks all

George

Re: Word Automation

<a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1312&group=comp.lang.clipper.visual-objects#1312

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:ad4:48d1:0:b0:623:8154:a90 with SMTP id v17-20020ad448d1000000b0062381540a90mr123018qvx.5.1684242615997;
Tue, 16 May 2023 06:10:15 -0700 (PDT)
X-Received: by 2002:a81:ca08:0:b0:559:d859:d749 with SMTP id
p8-20020a81ca08000000b00559d859d749mr23902474ywi.5.1684242615818; Tue, 16 May
2023 06:10:15 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Tue, 16 May 2023 06:10:15 -0700 (PDT)
In-Reply-To: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a02:8389:41c1:f480:597c:7bd:c0b0:1c49;
posting-account=FaB1-woAAACLDmwGeDBBeYMReO4osY8-
NNTP-Posting-Host: 2a02:8389:41c1:f480:597c:7bd:c0b0:1c49
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com>
Subject: Re: Word Automation
From: norbert@kolb.cx (Norbert Kolb)
Injection-Date: Tue, 16 May 2023 13:10:15 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 3089
 by: Norbert Kolb - Tue, 16 May 2023 13:10 UTC

Hi George,

First create a new module (e.g. _MsWord) and import the autoation server for Word.
Here is a little method that does what you want.

METHOD DoOpenWord(cFileName) CLASS StandardSDIWindow
LOCAL oWord AS WDApplication
LOCAL oDoc AS WDDocument
LOCAL oDocs AS WDDocuments
LOCAL oSelection AS WDSelection
LOCAL oFind AS WDFind
LOCAL lRet AS LOGIC
LOCAL uTemp AS USUAL
oWord := WDApplication{}
oDocs := oWord:Documents
oWord:Visible := TRUE // FALSE
oDoc := oDocs:Open(cFileName)
oSelection := oWord:Selection
oSelection:HomeKey( 6, 0 )
oFind := oSelection:Find
oFind:ClearFormatting()
oFind:Text := "Veranstaltung"
lRet := oFind:Execute()
IF lRet
oSelection := oWord:Selection
oSelection:Style := oSelection:Document:Styles:Item("Überschrift 1")
oSelection:Font:Italic := TRUE
oSelection:Font:Size := 25.1
uTemp := oSelection:Font:Underline := TRUE
oDoc:Save()
oWord:Quit()
ENDIF
/*
Selection.Find.ClearFormatting
With Selection.Find
.Text = "200677"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False

End With
*/
RETURN NIL

Best regards
Norbert

On Monday, May 15, 2023 at 10:48:48 PM UTC+2, Γεωργιος Τριτσος wrote:
> Hi all,
>
> Does anyone have a sample for Word automation. I want to read a document (.doc) make some changes (like font for some lines) and save it.
>
> Thanks all
>
> George

Re: Word Automation

<d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1313&group=comp.lang.clipper.visual-objects#1313

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:ad4:4e01:0:b0:621:6a09:e57d with SMTP id dl1-20020ad44e01000000b006216a09e57dmr2375396qvb.4.1684259211917;
Tue, 16 May 2023 10:46:51 -0700 (PDT)
X-Received: by 2002:a25:d10d:0:b0:ba8:381b:f764 with SMTP id
i13-20020a25d10d000000b00ba8381bf764mr1025239ybg.3.1684259211688; Tue, 16 May
2023 10:46:51 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!feeder1.feed.usenet.farm!feed.usenet.farm!peer03.ams4!peer.am4.highwinds-media.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Tue, 16 May 2023 10:46:51 -0700 (PDT)
In-Reply-To: <a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=79.107.127.0; posting-account=5okrTQkAAAB5ZOzJXhO3waq30auy0oBQ
NNTP-Posting-Host: 79.107.127.0
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com> <a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
Subject: Re: Word Automation
From: georgetritsos73@gmail.com (Γεωργιος Τριτσος)
Injection-Date: Tue, 16 May 2023 17:46:51 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 3673
 by: Γεωργιος Τ - Tue, 16 May 2023 17:46 UTC

Στις Τρίτη 16 Μαΐου 2023 στις 4:10:17 μ.μ.. UTC+3, ο χρήστης Norbert Kolb έγραψε:
> Hi George,
>
> First create a new module (e.g. _MsWord) and import the autoation server for Word.
> Here is a little method that does what you want.
>
> METHOD DoOpenWord(cFileName) CLASS StandardSDIWindow
> LOCAL oWord AS WDApplication
> LOCAL oDoc AS WDDocument
> LOCAL oDocs AS WDDocuments
> LOCAL oSelection AS WDSelection
> LOCAL oFind AS WDFind
> LOCAL lRet AS LOGIC
> LOCAL uTemp AS USUAL
>
> oWord := WDApplication{}
> oDocs := oWord:Documents
> oWord:Visible := TRUE // FALSE
> oDoc := oDocs:Open(cFileName)
> oSelection := oWord:Selection
> oSelection:HomeKey( 6, 0 )
> oFind := oSelection:Find
> oFind:ClearFormatting()
> oFind:Text := "Veranstaltung"
> lRet := oFind:Execute()
> IF lRet
> oSelection := oWord:Selection
> oSelection:Style := oSelection:Document:Styles:Item("Überschrift 1")
> oSelection:Font:Italic := TRUE
> oSelection:Font:Size := 25.1
> uTemp := oSelection:Font:Underline := TRUE
> oDoc:Save()
> oWord:Quit()
> ENDIF
>
> /*
> Selection.Find.ClearFormatting
> With Selection.Find
> .Text = "200677"
> .Replacement.Text = ""
> .Forward = True
> .Wrap = wdFindAsk
> .Format = False
> .MatchCase = False
> .MatchWholeWord = False
> .MatchWildcards = False
> .MatchSoundsLike = False
> .MatchAllWordForms = False
>
> End With
> */
>
> RETURN NIL
>
> Best regards
> Norbert
> On Monday, May 15, 2023 at 10:48:48 PM UTC+2, Γεωργιος Τριτσος wrote:
> > Hi all,
> >
> > Does anyone have a sample for Word automation. I want to read a document (.doc) make some changes (like font for some lines) and save it.
> >
> > Thanks all
> >
> > George

Hi Norbert,

Thanks for reply. I will try your method.

Regards
George

Re: Word Automation

<c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1314&group=comp.lang.clipper.visual-objects#1314

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:a05:620a:25d2:b0:754:8657:7b9c with SMTP id y18-20020a05620a25d200b0075486577b9cmr11613821qko.10.1684264514978;
Tue, 16 May 2023 12:15:14 -0700 (PDT)
X-Received: by 2002:a25:1455:0:b0:ba8:456a:fac7 with SMTP id
82-20020a251455000000b00ba8456afac7mr755274ybu.0.1684264514743; Tue, 16 May
2023 12:15:14 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Tue, 16 May 2023 12:15:14 -0700 (PDT)
In-Reply-To: <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=79.107.127.0; posting-account=5okrTQkAAAB5ZOzJXhO3waq30auy0oBQ
NNTP-Posting-Host: 79.107.127.0
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
<a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com> <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com>
Subject: Re: Word Automation
From: georgetritsos73@gmail.com (Γεωργιος Τριτσος)
Injection-Date: Tue, 16 May 2023 19:15:14 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 5563
 by: Γεωργιος Τ - Tue, 16 May 2023 19:15 UTC

Στις Τρίτη 16 Μαΐου 2023 στις 8:46:52 μ.μ.. UTC+3, ο χρήστης Γεωργιος Τριτσος έγραψε:
> Στις Τρίτη 16 Μαΐου 2023 στις 4:10:17 μ.μ. UTC+3, ο χρήστης Norbert Kolb έγραψε:
> > Hi George,
> >
> > First create a new module (e.g. _MsWord) and import the autoation server for Word.
> > Here is a little method that does what you want.
> >
> > METHOD DoOpenWord(cFileName) CLASS StandardSDIWindow
> > LOCAL oWord AS WDApplication
> > LOCAL oDoc AS WDDocument
> > LOCAL oDocs AS WDDocuments
> > LOCAL oSelection AS WDSelection
> > LOCAL oFind AS WDFind
> > LOCAL lRet AS LOGIC
> > LOCAL uTemp AS USUAL
> >
> > oWord := WDApplication{}
> > oDocs := oWord:Documents
> > oWord:Visible := TRUE // FALSE
> > oDoc := oDocs:Open(cFileName)
> > oSelection := oWord:Selection
> > oSelection:HomeKey( 6, 0 )
> > oFind := oSelection:Find
> > oFind:ClearFormatting()
> > oFind:Text := "Veranstaltung"
> > lRet := oFind:Execute()
> > IF lRet
> > oSelection := oWord:Selection
> > oSelection:Style := oSelection:Document:Styles:Item("Überschrift 1")
> > oSelection:Font:Italic := TRUE
> > oSelection:Font:Size := 25.1
> > uTemp := oSelection:Font:Underline := TRUE
> > oDoc:Save()
> > oWord:Quit()
> > ENDIF
> >
> > /*
> > Selection.Find.ClearFormatting
> > With Selection.Find
> > .Text = "200677"
> > .Replacement.Text = ""
> > .Forward = True
> > .Wrap = wdFindAsk
> > .Format = False
> > .MatchCase = False
> > .MatchWholeWord = False
> > .MatchWildcards = False
> > .MatchSoundsLike = False
> > .MatchAllWordForms = False
> >
> > End With
> > */
> >
> > RETURN NIL
> >
> > Best regards
> > Norbert
> > On Monday, May 15, 2023 at 10:48:48 PM UTC+2, Γεωργιος Τριτσος wrote:
> > > Hi all,
> > >
> > > Does anyone have a sample for Word automation. I want to read a document (.doc) make some changes (like font for some lines) and save it.
> > >
> > > Thanks all
> > >
> > > George
> Hi Norbert,
>
> Thanks for reply. I will try your method.
>
> Regards
> George
Hi Norbert,

I tested your method but i take error.

Regards
George

16/05/2023 10:06:02 μμ
Error Message:
--------------
SubSystem: BASE
Operation:
Function: CHECKINSTANCEOF
Argument: WDDOCUMENTS <-> OLEAUTOOBJECT
CallStack:
CUSTOMERALLMOVES:LoadDoc (Line:9)
CUSTOMERALLMOVES:PB_EXPDoc (Line:3)
CUSTOMERS:PB_MOVES (Line:19)
MNGINV:DOCUSTOMER (Line:5)
APP:START (Line:34)

Error Object created:
--------------------
SubSystem :BASE
SubCode : 0
GenCode :Wrong class
OsCode : 0
Severity : 0
CanDefault :.F.
CanRetry :.F.
CanSubstitute :.T.
Operation :
Description :
FileName :
Tries : 0
FuncSym :CHECKINSTANCEOF
FileHandle : 0
ArgNum : 0
FuncPtr :0x00000000
SubCodeText :
Arg :WDDOCUMENTS <-> OLEAUTOOBJECT
ArgType :NIL
ArgTypeReq :NIL
MaxSize : 0
SubstituteType :LOGIC
CallFuncSym :
--------------------

My Code:
METHOD CreatPDF(sFileName) CLASS CustomerAllMoves
LOCAL oWord AS WDApplication
LOCAL oDoc AS WDDocument
LOCAL oDocs AS WDDocuments
LOCAL oSelect AS WDSelection

oWord:=WDApplication{}
oWord:Visible:=TRUE
oDocs:=oWord:Documents
oDoc:=oDocs:Open(sFileName)
oWord:Quit()

RETURN NIL

Re: Word Automation

<a561d7a7-dcb9-4d40-9df1-e99452b55da2n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1315&group=comp.lang.clipper.visual-objects#1315

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:a05:620a:44cb:b0:759:3dac:5a40 with SMTP id y11-20020a05620a44cb00b007593dac5a40mr3526558qkp.13.1684267022205;
Tue, 16 May 2023 12:57:02 -0700 (PDT)
X-Received: by 2002:a25:5404:0:b0:b8b:f5fb:598d with SMTP id
i4-20020a255404000000b00b8bf5fb598dmr23717835ybb.6.1684267021990; Tue, 16 May
2023 12:57:01 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.mb-net.net!open-news-network.org!news.mind.de!bolzen.all.de!npeer.as286.net!npeer-ng0.as286.net!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Tue, 16 May 2023 12:57:01 -0700 (PDT)
In-Reply-To: <c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a02:8389:41c1:f480:b023:b717:6f64:fc53;
posting-account=FaB1-woAAACLDmwGeDBBeYMReO4osY8-
NNTP-Posting-Host: 2a02:8389:41c1:f480:b023:b717:6f64:fc53
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
<a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com> <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
<c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <a561d7a7-dcb9-4d40-9df1-e99452b55da2n@googlegroups.com>
Subject: Re: Word Automation
From: norbert@kolb.cx (Norbert Kolb)
Injection-Date: Tue, 16 May 2023 19:57:02 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1719
 by: Norbert Kolb - Tue, 16 May 2023 19:57 UTC

Hi George,
did you create the automation server for word first. All the classes and methods you need for Word are generated there.
Vo menu: Tools -> Automation Server (Word)

The error message indicates that the programme cannot find these classes.

Kind regards
Norbert

Re: Word Automation

<47e9d850-ce1e-4913-8caa-7656bffa6206n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1316&group=comp.lang.clipper.visual-objects#1316

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:a05:6214:1630:b0:623:8234:7fbb with SMTP id e16-20020a056214163000b0062382347fbbmr451933qvw.2.1684271861934;
Tue, 16 May 2023 14:17:41 -0700 (PDT)
X-Received: by 2002:a05:6902:e:b0:ba6:af30:21c2 with SMTP id
l14-20020a056902000e00b00ba6af3021c2mr11759871ybh.6.1684271861746; Tue, 16
May 2023 14:17:41 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Tue, 16 May 2023 14:17:41 -0700 (PDT)
In-Reply-To: <a561d7a7-dcb9-4d40-9df1-e99452b55da2n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=79.107.127.0; posting-account=5okrTQkAAAB5ZOzJXhO3waq30auy0oBQ
NNTP-Posting-Host: 79.107.127.0
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
<a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com> <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
<c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com> <a561d7a7-dcb9-4d40-9df1-e99452b55da2n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <47e9d850-ce1e-4913-8caa-7656bffa6206n@googlegroups.com>
Subject: Re: Word Automation
From: georgetritsos73@gmail.com (Γεωργιος Τριτσος)
Injection-Date: Tue, 16 May 2023 21:17:41 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2413
 by: Γεωργιος Τ - Tue, 16 May 2023 21:17 UTC

Στις Τρίτη 16 Μαΐου 2023 στις 10:57:02 μ.μ. UTC+3, ο χρήστης Norbert Kolb έγραψε:
> Hi George,
> did you create the automation server for word first. All the classes and methods you need for Word are generated there.
> Vo menu: Tools -> Automation Server (Word)
>
> The error message indicates that the programme cannot find these classes.
>
> Kind regards
> Norbert
Hi Norbert,
Yes first of all i was create the automation,
WDApplication
WDFont
WDSelection
WDDocument
WDDocuments
WDRange

The follow lines is ok
oWord:=WDApplication{}
oWord:Visible:=TRUE
but the line of error is
oDocs:=oWord:Documents

I was create again automation but the same.
I am searching whats going on.

Regards
George

Re: Word Automation

<82b3ce16-1eb6-4046-9904-75d17daaa02bn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1317&group=comp.lang.clipper.visual-objects#1317

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:a05:622a:92:b0:3f5:475e:622 with SMTP id o18-20020a05622a009200b003f5475e0622mr1036665qtw.10.1684275147555;
Tue, 16 May 2023 15:12:27 -0700 (PDT)
X-Received: by 2002:a81:e909:0:b0:534:d71f:14e6 with SMTP id
d9-20020a81e909000000b00534d71f14e6mr21768106ywm.9.1684275147395; Tue, 16 May
2023 15:12:27 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Tue, 16 May 2023 15:12:27 -0700 (PDT)
In-Reply-To: <47e9d850-ce1e-4913-8caa-7656bffa6206n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a02:8389:41c1:f480:b023:b717:6f64:fc53;
posting-account=FaB1-woAAACLDmwGeDBBeYMReO4osY8-
NNTP-Posting-Host: 2a02:8389:41c1:f480:b023:b717:6f64:fc53
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
<a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com> <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
<c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com> <a561d7a7-dcb9-4d40-9df1-e99452b55da2n@googlegroups.com>
<47e9d850-ce1e-4913-8caa-7656bffa6206n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <82b3ce16-1eb6-4046-9904-75d17daaa02bn@googlegroups.com>
Subject: Re: Word Automation
From: norbert@kolb.cx (Norbert Kolb)
Injection-Date: Tue, 16 May 2023 22:12:27 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1555
 by: Norbert Kolb - Tue, 16 May 2023 22:12 UTC

Another thought: Is your Word 32 or 64 bit? VO can only work with the 32 bit version.

Re: Word Automation

<1162aa73-1b32-4a36-b81e-b022fc4e9b55n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=1322&group=comp.lang.clipper.visual-objects#1322

  copy link   Newsgroups: comp.lang.clipper.visual-objects
X-Received: by 2002:a05:6214:14e7:b0:61b:60d0:c072 with SMTP id k7-20020a05621414e700b0061b60d0c072mr39284qvw.9.1684340301635;
Wed, 17 May 2023 09:18:21 -0700 (PDT)
X-Received: by 2002:a81:b615:0:b0:55d:9e7c:72c0 with SMTP id
u21-20020a81b615000000b0055d9e7c72c0mr1899802ywh.0.1684340301032; Wed, 17 May
2023 09:18:21 -0700 (PDT)
Path: i2pn2.org!i2pn.org!news.neodome.net!feeder1.feed.usenet.farm!feed.usenet.farm!peer01.ams4!peer.am4.highwinds-media.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.clipper.visual-objects
Date: Wed, 17 May 2023 09:18:20 -0700 (PDT)
In-Reply-To: <82b3ce16-1eb6-4046-9904-75d17daaa02bn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=79.107.127.0; posting-account=5okrTQkAAAB5ZOzJXhO3waq30auy0oBQ
NNTP-Posting-Host: 79.107.127.0
References: <77bdb7cf-bed6-4a6e-91e1-d8a9832efd3fn@googlegroups.com>
<a9a37c1a-423b-4f24-8653-8b1acd996d11n@googlegroups.com> <d6987097-def8-497f-98db-42f82e7cc80an@googlegroups.com>
<c7086aa6-e971-4563-a834-b3033aadefdfn@googlegroups.com> <a561d7a7-dcb9-4d40-9df1-e99452b55da2n@googlegroups.com>
<47e9d850-ce1e-4913-8caa-7656bffa6206n@googlegroups.com> <82b3ce16-1eb6-4046-9904-75d17daaa02bn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <1162aa73-1b32-4a36-b81e-b022fc4e9b55n@googlegroups.com>
Subject: Re: Word Automation
From: georgetritsos73@gmail.com (Γεωργιος Τριτσος)
Injection-Date: Wed, 17 May 2023 16:18:21 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: base64
X-Received-Bytes: 2019
 by: Γεωργιος Τ - Wed, 17 May 2023 16:18 UTC

Στις Τετάρτη 17 Μαΐου 2023 στις 1:12:28 π.μ. UTC+3, ο χρήστης Norbert Kolb έγραψε:
> Another thought: Is your Word 32 or 64 bit? VO can only work with the 32 bit version.
Hi Norbert,
I was check word and is 32bit.
Regards
George

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor