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


Zur Information:

Ich habe mal eben das "DailyBild LibreOfficeDev_7.1.0.0.alpha0_Win_x64.msi" (inklusive "LibreOfficeDev_7.1.0.0.alpha0_Win_x64_helppack_de.msi") vom "2020-Sep-07 02:47" via "Separate Install GUI" parallel installiert und das Makro (in dieser leicht modifizierten Form bezüglich der Ausgabe)

Sub ExampleWorkWithAFile
Dim iNumber As Integer
Dim aFile As String
aFile = "c:\data.txt" ' May be necessary to be modified !
iNumber = Freefile
Open aFile For Output As #iNumber
Print #iNumber, "#" & "- O.K."
Print #iNumber,"#" & " - Incorrect syntax error message !!!"
Print #iNumber, "A#B" & " - O.K."
Print #iNumber,"A#B" & " - Incorrect syntax error message !!!"
Print #iNumber, "AB" & " - O.K."
Print #iNumber,"AB" & " - O.K."
Close #iNumber
End Sub

ausgeführt mit diesem Ergebnis in "c:\data.txt":

#- O.K.
# - Incorrect syntax error message !!!
A#B - O.K.
A#B - Incorrect syntax error message !!!
AB - O.K.
AB - O.K.

Damit ist die Behebung des Fehlers eindeutig dargelegt, da auch die "Incorrect syntax error message"-Code-Zeilen keinen Syntax-Error bewirkten:

https://bugs.documentfoundation.org/show_bug.cgi?id=136032#c3

Viele Grüße
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.