Right click on the variable i can make go to definition.
superMarquee1.StartMarquee();
I make right mouse button then go to definition on StartMarquee then it jump to a class with this:
public void StartMarquee();
But what i want is to get to the area/place where the StartMarquee is in use where it make the start not the variable definition. If i make F11 or F10 on a breakpoint it will continue the program will not lead me to where its using this method.
This superMarquee is a dll UserControl i added through the toolbox > choose items and added the dll then dragged the usercontrol to my form1 designer. I also added this dll to my project as reference.