Hi I'm trying to read a text file by use a array for an interactive map. In the text file I stored shop names such as:
Label2.Tag = "test"
Label3.Tag = "House"
When I hover over a label it will display the name in another label such as "lblShowName".
So far I have the array that reads the text file.
dim shopNames() as string = io.file.readalllines("fileName")
Any ideas on how to make it work?