I am working on this assignment but am not sure how to get my labels to move after they have been clicked, will this be through a click event?
Also I am am stumped as to why my link in my first linklabel stopped working.
My assignment is
Create a form with three LinkLabels that link to any three web sites you choose. When a user clicks a LinkLabel, link to that site. When a user's mouse hovers over a LinkLabel display a brief message that explains the sites purpose. After a user clicks a link, move it to the top of the list and move the other two links down, making sure to retain the correct explanatoon with each link.
Thanks for any help
Vic
Loading
Nitesh KejriwalPosted Oct 13, 2012, 3:10 AM
Checked your code. Attached is the working solution. The issue in your code was the LinkClicked event was not defined for 1st LinkLabel. Though you had the code written in .cs file, event was not defined in .Designer.cs file. I fixed it and its working great.
Thanks,
Nitesh.
Nitesh KejriwalPosted Oct 13, 2012, 10:10 AM
Nitesh KejriwalPosted Oct 13, 2012, 10:10 AM
VicPosted Oct 13, 2012, 9:40 AM
Can you point in the right direction in what to use to get the other partAfter a user clicks a link, move it to the top of the list and move the other two links down, making sure to retain the correct explanation with each link?