Jump To Code from a DotNet Add-in
Is it possible to jump to a code in a source document I'm looking for functionality
similar to the jump-to-code feauture of Visual Studio .Net when there are compile errors for example in the Output Window and double-clicking on the error places a small visual indicator beside the offending line of text. Bookmarks are not an option. Using a TextSelection Object works but it's not exactly what I'm looking for.
Thnx in advance,
KJ

Jump To Code from a DotNet Add-in
jarka
http://www.usysware.com/dpack/codebrowser.htm
David_VA
foto_robin
If I recall it DTE interfaces correctly, you can add a custom task, which would get tied to a marker, but not with a custom image. Things might've changed in VS'05 world but I haven't checked that area specifically.
If you want it for VS'03 then your only option is VSIP I'm afraid. With VSIP you could add task items and custom markers, but that's not a trivial exercise. There is also a sizable luring curve.
I've implemented a feature with task list and custom markers before and here's how the end result looks like:
http://www.usysware.com/dpack/bookmarks.htm
Not sure if this reply helps much but hopefully it answers some of the "what's possible" types of questions.
LMP0407
Thnx in advance,
KJ