what s the keyboard shortcut access key to close the search window
When we re coding in VS2003, I open the search window using: Ctrl F
How do I close it using keyboard shortcut access key pls
(my search is docked in the IDE).
If no shortcut exists, can I mae one using the editor Tools , customize may be.
Thanks
Re: what s the keyboard shortcut access key to close the search window
You can record a macro and view the generated code.
Invoke the Firnd Replace dialog box and then close it....
VB Code:
Option Strict Off
Option Explicit Off
Imports EnvDTE
Imports System.Diagnostics
Public Module RecordingModule
Sub TemporaryMacro()
DTE.ExecuteCommand("Edit.Find")
DTE.Windows.Item(Constants.vsWindowKindFindReplace).Close()
End Sub
End Module