Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Quickly swap assignment operands
[ All Languages » VB.net »  IDE]

Total Hit ( 2680)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


It often happens that you need to swap the operands of an assignment. For example, say that you have this set of assignments:

Click here to copy the following block
p1.FirstName = m_FirstName
p1.LastName = m_LastName

and later in your source code you want to add a similar set of assignments, but with reversed operands:

Click here to copy the following block
m_FirstName = p1.FirstName
m_LastName = p1.LastName

Here's a macro that lets you perform this operation automatically:

Click here to copy the following block
Sub SwapOperands()
  DTE.ActiveDocument.Selection.StartOfLine _
    (vsStartOfLineOptions.vsStartOfLineOptionsFirstText)
  DTE.ExecuteCommand("Edit.Find")
  DTE.Find.Action = vsFindAction.vsFindActionFind
  DTE.Find.FindWhat = "="
  DTE.Find.Target = vsFindTarget.vsFindTargetCurrentDocument
  DTE.Find.MatchCase = False
  DTE.Find.MatchWholeWord = False
  DTE.Find.Backwards = False
  DTE.Find.MatchInHiddenText = False
  DTE.Find.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxLiteral
  DTE.Find.Execute()
  DTE.Windows.Item(Constants.vsWindowKindFindReplace).Close()
  DTE.ActiveDocument.Selection.Delete()
  DTE.ActiveDocument.Selection.StartOfLine _
    (vsStartOfLineOptions.vsStartOfLineOptionsFirstText, True)
  DTE.ActiveDocument.Selection.Cut()
  DTE.ActiveDocument.Selection.EndOfLine()
  DTE.ActiveDocument.Selection.Text = "= "
  DTE.ActiveDocument.Selection.Paste()
End Sub

For best usability, you should store this macro in a macro module, then assign a convenient shortcut to it, for example (two keystrokes): Ctrl-Shift-V, Ctrl-Shift-V. You can do this assignment from the Keyboard page in the Tools-Options dialog box. To execute the macro, place the caret on the assignment statement and press the shortcut you assigned to it.


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.