I am trying to write a program where a user of my app can change the link location and label name.

Is this feasible?

At work we have testing scenarios that change at different locations, and instead of me sending updates every week, allow the user to update the link and label name by appending a file or db to pull the information?

Well label name would be very simple just by having them enter the text in a TextBox and clicking a button. Just add this code to that button:

Label1.Text = TextBox1.Text

Of course if you want to save what they change the Label's text to, you can use your My.Settings.

As for the location change, you could add code on the arrow keys to move the label up, down, left, and right.You could also do it like they have posted in this link. This allows the user to move it in runtime.

Hope this helps!

-Chris

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.