0
greetings to all
My stringGrid already has more data coming from other locations (this image is just illustrative) I would need to throw more of this information coming from a variable in a single predetermined row filling these stringgrid cells
these strings are of unknown size for example coming from Edit or a variable where each element’s that is separated by the separator ; is displayed in sequence in separate cells in stringrid in a single row
variable := t;e;xxxx;t;Ooo
in Stringgrid cells would look like this
[ t ] [ and ] [ xxx ] [ t ] [ Ooo ]
I thank anyone who can help me
You can use a Tstringlist, load the content and use Extractstrings to delimit the data of your variable with ";" and then scroll through the stringlist by throwing the information on the stringgrid.
– Jefferson Rudolf
all right Jefferson Rudolf, thanks for the tip could give me an example, using the Tstringlist,?
– user101552