The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Visual Studio: Bookmarks aller ge��ffneten Dokumente ohne R��ckfrage entfernen

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
-

Posts: 1524
Nickname: nitronic
Registered: Jul, 2006

Norbert Eder works as a software architect.
Visual Studio: Bookmarks aller ge��ffneten Dokumente ohne R��ckfrage entfernen Posted: Nov 16, 2006 10:14 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by -.
Original Post: Visual Studio: Bookmarks aller ge��ffneten Dokumente ohne R��ckfrage entfernen
Feed Title: Norbert Eder - Living .NET
Feed URL: http://feeds.feedburner.com/NorbertEder-Livingnet
Feed Description: Copyright (c)2005, 2006 by Norbert Eder
Latest .NET Buzz Posts
Latest .NET Buzz Posts by -
Latest Posts From Norbert Eder - Living .NET

Advertisement
Wer viel mit Bookmarks arbeitet der kommt auch des ��fteren in die Lage, alle gesetzten Bookmarks entfernen zu wollen. Hierf��r gibt es das Tastenk��rzel CTRL + B + C. Allerdings erscheint hier die Nachfrage, ob denn wohl wirklich alle entfernt werden sollen. Wer dies nicht m��chte, kann sich folgendes Makro einbauen und dann einem Button/Shortcut zuweisen - und das ohne diese Nachfrage. Funktioniert f��r alle ge��ffneten Dokumente.

Public Sub RemoveAllBookmarks()
Dim i As Integer

For i = 1 To DTE.Documents.Count
Dim doc As EnvDTE.TextDocument
doc = DTE.Documents.Item(i).Object
doc.ClearBookmarks()
Next
End Sub

Read: Visual Studio: Bookmarks aller ge��ffneten Dokumente ohne R��ckfrage entfernen

Topic: AI - Simple Genetic Algorithm (GA) to solve a card problem Previous Topic   Next Topic Topic: Python vs. C#: Business and Technology Tradeoffs

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use