Hello,
I'm using the WORD API creating an objekt for filling bookmarks with data. It's written so:
oWord := CreateObject( "Word.Application" )
Now I'd like to implement an OpenOffice API (i.e. Apache).
Does anybody have experiences with that and knows the statement to Create an object for ...
Search found 7 matches
- Fri Jan 22, 2016 10:50 am
- Forum: All products support
- Topic: API xHarbour 1.2.1 to Word
- Replies: 1
- Views: 2442
- Wed Aug 05, 2015 5:38 pm
- Forum: All products support
- Topic: Create TEMP.DBF with ADS
- Replies: 0
- Views: 1233
Create TEMP.DBF with ADS
Hallo,
I'am trying to create a new DBF Table by using Select * INTO tempdbf from ...
within the advantage database server (ADS from Sybase). The Temdbf is not within the data dictionary (DD). When doing this a TEMPDBF.adt is created, but not a TEMDBF.dbf
Does anybody knows how I can force it.
with ...
I'am trying to create a new DBF Table by using Select * INTO tempdbf from ...
within the advantage database server (ADS from Sybase). The Temdbf is not within the data dictionary (DD). When doing this a TEMPDBF.adt is created, but not a TEMDBF.dbf
Does anybody knows how I can force it.
with ...
- Sun May 24, 2015 9:47 pm
- Forum: All products support
- Topic: Auslesen von Bookmarks aus einem Wordfile
- Replies: 8
- Views: 5206
Re: Auslesen von Bookmarks aus einem Wordfile
Hallo,
the following lines work well:
For j := 1 to oWord:ActiveDocument:Bookmarks:Count()
AADD(aBM, oWord:ActiveDocument:Bookmarks:Item(j):Name)
Next j
Thank you four your help
Kind regards, Hoschik
the following lines work well:
For j := 1 to oWord:ActiveDocument:Bookmarks:Count()
AADD(aBM, oWord:ActiveDocument:Bookmarks:Item(j):Name)
Next j
Thank you four your help
Kind regards, Hoschik
- Sun May 24, 2015 10:22 am
- Forum: All products support
- Topic: Auslesen von Bookmarks aus einem Wordfile
- Replies: 8
- Views: 5206
Re: Auslesen von Bookmarks aus einem Wordfile
in addition:
I'm using xHarbour 1.2.1
Hoschik
I'm using xHarbour 1.2.1
Hoschik
- Sun May 24, 2015 9:43 am
- Forum: All products support
- Topic: Auslesen von Bookmarks aus einem Wordfile
- Replies: 8
- Views: 5206
Re: Auslesen von Bookmarks aus einem Wordfile
Hallo,
the compiler can't work with:
CODE: SELECT ALL EXPAND VIEW
syntax error at 'ALL'
the compiler can't work with:
CODE: SELECT ALL EXPAND VIEW
syntax error at 'ALL'
- Sun May 24, 2015 9:01 am
- Forum: All products support
- Topic: Auslesen von Bookmarks aus einem Wordfile
- Replies: 8
- Views: 5206
Re: Auslesen von Bookmarks aus einem Wordfile
Hallo,
the error I'm getting is:
[3232] -> Error Word.Application:ACTIVEDOCUMENT/0 S_OK: BOOKMARKS Arguments: ( [ 1] = Type: N Val: 2) >NIL<
[3232] -> Error at ...: TOLEAUTO:BOOKMARKS(0) in Module: >../../win32ole.prg<
when i wrote
AADD(aTextmarke, oWord:ActiveDocument:Bookmarks(j+1):Name)
or ...
the error I'm getting is:
[3232] -> Error Word.Application:ACTIVEDOCUMENT/0 S_OK: BOOKMARKS Arguments: ( [ 1] = Type: N Val: 2) >NIL<
[3232] -> Error at ...: TOLEAUTO:BOOKMARKS(0) in Module: >../../win32ole.prg<
when i wrote
AADD(aTextmarke, oWord:ActiveDocument:Bookmarks(j+1):Name)
or ...
- Sat May 23, 2015 2:45 pm
- Forum: All products support
- Topic: Auslesen von Bookmarks aus einem Wordfile
- Replies: 8
- Views: 5206
Auslesen von Bookmarks aus einem Wordfile
Hallo,
möchte die Bookmarks (Textmaken) eines Word Dokumentes ermitteln und finde den entsprechenden Aufruf nicht, z.B. durch:
For j := 1 to oWord:ActiveDocument:Bookmarks:Count()
AADD(aTextmarke, oWord:ActiveDocument:Bookmarks(j):Name)
Next j
Das funktioniert nicht! Zwar liefert oWord ...
möchte die Bookmarks (Textmaken) eines Word Dokumentes ermitteln und finde den entsprechenden Aufruf nicht, z.B. durch:
For j := 1 to oWord:ActiveDocument:Bookmarks:Count()
AADD(aTextmarke, oWord:ActiveDocument:Bookmarks(j):Name)
Next j
Das funktioniert nicht! Zwar liefert oWord ...