Your .NET Add-In Wishes
-
Dear all, I am getting to grips with writing VS.NET add-ins with a view to publishing an article on here. I am considering making the add-in modular, that it dynamically detects and adds new features rather than having to run the whole installation again, kind of like a snap-in. Anyway, that's by the by. Complete the statement below with a genuine requirement and I will see what I can do to add your wishes into my add-in. I wish I had an add-in (for VB or C#) that...... I have a couple of features in there right now: 1. Select text and wrap in new region Dim a as string a = "hello" becomes... #Region "My Region" Dim a as string a = "hello" #end region 2. Paste a SQL statement in to code and have its individual lines added to a string variable SELECT * FROM mytables ORDER BY 1 becomes... Dim lSQL as string lSQL = "SELECT *" + "\r\n"; lSQL += "... 3. Select member variables of a class and the add-in creates the property let/get code for you 4. Select a database and some tables and the add-in creates classes whose members map to columns on the tables. Any more? Chris Nursey