Date: prev next · Thread: first prev next last
2018 Archives by date, by thread · List index


Hallo Martin,

die Fehlermeldung

BASIC-Laufzeitfehler.
Es ist eine Ausnahme aufgetreten
Type: com.sun.star.lang.IndexOutOfBoundsException
Message: .

besagt wohl, dass via "thisF = oTF.getByIndex(i)" ein Element indiziert wird, dass es bezüglich des Index nicht (mehr) gibt.

Ich vermute mal, dass durch das FRAME-Löschen ( thisF.dispose() ) der letzte Index ( bezüglich "oTF.getByIndex(i)" ) immer um 1 vermindert wird, die Schleife aber "zu weit" zählt.

Entschuldige bitte die etwas "holprige" Erläuterung, aber bezüglich "FRAMEs löschen" habe ich keinerlei Erfahrung.

Lässt man die Schleife rückwärts laufen ( For i = c to 0 Step -1 ) funktioniert das Makro. Ich hatte über [Einfügen]>[Rahmen]>[Rahmen interaktiv] 3 Rahmen in eine WRITER-Dokument eingefügt und jeweils mit Text gefüllt. Nach Makro-Ausführung waren die Rahmen weg und der Text direkt nacheinander in mehreren Zeilen aufgelistet:

Sub DeleteFrameSaveText
oDoc =ThisComponent
oTF = oDoc.getTextFrames
c = oTF.Count - 1
For i = c to 0 Step -1
thisF = oTF.getByIndex(i)
s = thisF.String
otc = oDoc.Text.createTextCursorByRange(thisF.Anchor)
otc.setString(s)
thisF.dispose()
Next
End Sub

Gruß
Hans-Werner ;-))
--
Liste abmelden mit E-Mail an: users+unsubscribe@de.libreoffice.org
Probleme? https://de.libreoffice.org/hilfe-kontakt/mailing-listen/abmeldung-liste/
Tipps zu Listenmails: https://wiki.documentfoundation.org/Netiquette/de
Listenarchiv: https://listarchives.libreoffice.org/de/users/
Datenschutzerklärung: https://www.documentfoundation.org/privacy

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.