Page 1 of 1

Is there a StringList object in fnxbasic?

Posted: Fri Dec 30, 2016 7:56 pm
by fnxiscool
I desperately need this. If there is no string list, could you please add it to the new version?

Thanks

Is there a StringList object in fnxbasic?

Posted: Sat Mar 11, 2017 5:21 pm
by AmkSoft
What do you mean by "String list"?
Can`t you use a string array?

Re: Is there a StringList object in fnxbasic?

Posted: Wed Jan 27, 2021 1:48 pm
by RacingDog
A StringList is not simply a list of strings. The term derives from the VCL library of Delphi/C++ Builder (hence also the LCL library of Lazarus). There it is a class TStringList which provides a wealth of additional support facilities in the form of Properties, Methods and Events. A large part of the reason for using TStringList is to access those facilities. A string array gives you absolutely none of that.

Re: Is there a StringList object in fnxbasic?

Posted: Thu Aug 12, 2021 3:00 am
by Varun
The StringList object is a collection of strings. The client must verify that the StringList object exists and is not empty before.Lets start with a sample-line, where we get an array of objects with different attributes. Here we are getting the first 10 running processes with all detailed.The OwnsObjects property of TStringList should be set to True in order for the list to free its objects when being destroyed https://technoburst.com/.