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


Hi,

I can reproduce your issue on LO 7.3.4.2 on Fedora 35.
Not 100% familiar with LO Basic, but this code works:

Sub resizeArrayTest

dim myArray (5) As Long
for i = 0 to 5
myArray (i) = i
next i

ReDim Preserve myArray (4)
End Sub

Sub Main

call resizeArrayTest

End Sub

It seems the Array() function you are using returns something that
cannot be ReDim'ed, which may explain your observation.

I hope this helps.
Rémy.



Le dimanche 10 juillet 2022 à 20:02 +0200, Johnny Rosenberg a écrit :
Hi.

Is this a bug or is my brain just not working?





*Sub ResizeArrayTest     Dim MyArray(5) As Long     MyArray=Array(1,
2, 3,
4, 5, 6)     ReDim Preserve MyArray(4)End Sub*

Running this creates the array MyArray, but it's *empty*, so it seems
like ”
*Preserve*” doesn't work here. Or what am I doing wrong? I'm sure I
have
got Preserve to work many times before, but maybe my brain crashed
this
time.

Using LibreOffice 7.2.7.2 on Ubuntu Studio 20.04.

Kind regards

Johnny Rosenberg



-- 
To unsubscribe e-mail to: users+unsubscribe@global.libreoffice.org
Problems? https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: https://wiki.documentfoundation.org/Netiquette
List archive: https://listarchives.libreoffice.org/global/users/
Privacy Policy: 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.