-
Hi guys,
I am easily accomplished in Windows Form by the following code:
And also use this code to load the text file to my listview:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Like in your previous question, you have to use the type you created. For saving you do |
Beta Was this translation helpful? Give feedback.
Like in your previous question, you have to use the type you created. For saving you do
For Each myItem as MyRowData in ListView1.Items
and then you can write outmyItem.name
andmyItem.address
. And for loading you addNew MyRowData with {.name = lineArray(0), .address = lineArray(1)}