Is there a StringList object in fnxbasic?

Here one can report bugs or hold discussions about bugs updates and work arounds.
Post Reply
fnxiscool
Posts: 1
Joined: Fri Dec 30, 2016 7:54 pm

Is there a StringList object in fnxbasic?

Post: # 1270Post fnxiscool
Fri Dec 30, 2016 7:56 pm

I desperately need this. If there is no string list, could you please add it to the new version?

Thanks

AmkSoft
Posts: 4
Joined: Sat Jun 02, 2012 5:47 pm

Is there a StringList object in fnxbasic?

Post: # 1271Post AmkSoft
Sat Mar 11, 2017 5:21 pm

What do you mean by "String list"?
Can`t you use a string array?

RacingDog
Posts: 4
Joined: Thu Jan 10, 2019 11:32 pm

Re: Is there a StringList object in fnxbasic?

Post: # 1317Post RacingDog
Wed Jan 27, 2021 1:48 pm

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.

Varun
Posts: 2
Joined: Wed Aug 11, 2021 2:25 am

Re: Is there a StringList object in fnxbasic?

Post: # 90631Post Varun
Thu Aug 12, 2021 3:00 am

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/.

Post Reply