How to insert text into a column of a List View?
Hey, folks!
LB has been awesome enough to offer me advice and guidance on how to create a small search engine that I'm trying to develop for my company's entire product documentation.
Right now I have file search hits automatically being placed into a List View object that has two columns.
However, I want the automatically-generated content to display in the second column of every row; as it is, content is automatically placed into the first column of each row.
How can I specify for content to be placed into a column other than the first?
Thanks for your help!
Most graciously...
RGBreality
Re: How to insert text into a column of a List View?
If you wanted to add "Test 1" into the first column of line 1, and "Test 2" into the second column of line 1, do something like this:
Insert Line "Test 1" at position 0; (Uses 'Insert Line Action')
Set Item (0,1) to "Test 2"; (Uses 'Set Item' Action)
Hope that helps. If you need an example, let me know. :)
Re: How to insert text into a column of a List View?
Hey, StephenL! That worked like a charm! Thank you for your help!
RGBreality