J
Jeff_Relf
Hi Greg_Cox, Re: CodeWright, You wrote: <<
I'm unfamiliar with a debugger by them so I can't comment. >>
You used MicroSoft's debugger then, I assume, MS_DevStudio... Right ?
( or Visual_Studio )
Visual_Studio_Net_2003 allows On_The_Fly macros,
I hit F7 to start/stop recording and then F8 to play it.
The so_called quick_Macro can then be edited, if I want,
to create a VBA script ( to assign it to a key or toolbar icon ).
Holding down the Alt and the Shift keys and then moving the text cursor
( via the mouse or keys ) allows me to select a block of text,
....instead of sequential characters.
You can assign a name to your keybindings file, I call mine Key_Bindings.VSK
Below is the .BAT file I use to save off my Visual_Studio settings.
Save_Setngs.BAT:
C:
cd "C:\Documents and Settings\Owner\Application Data\Microsoft\VisualStudio\7.1"
REM Must exit VS to save CmdUI.PRF and Key_Bindings.VSK
XCopy /Y /F 1033\CmdUI.PRF F:\VS
XCopy /Y /F Key_Bindings.VSK F:\VS
XCopy /Y /F devenv.xml F:\VS
XCopy /Y /F "C:\__\Visual Studio Projects\VSMacros71\MyMacros\__.vsmacros" F:\VS
XCopy /Y /F C:\__\X\VS.REG F:\VS
XCopy /Y /F C:\__\X\VS.VB F:\VS
XCopy /Y /F C:\__\X\Save_Setngs.BAT F:\VS
XCopy /Y /F C:\__\X\Restore_Setngs.BAT F:\VS
XCopy /Y /F C:\__\X\Bit_Stream.TTF F:\VS
Pause
REM More info at:
REM http://blogs.msdn.com/jledgard/archive/2004/02/05/67869.aspx
Below is how I restore them to another machine, when I have the privileges.
Restore_Setngs.BAT:
XCopy /Y /F CmdUI.PRF "C:\Documents and Settings\BLab-242\Application Data\Microsoft\VisualStudio\7.1\1033"
REM Key_Bindings must be selected by hand.
XCopy /Y /F "Key_Bindings.VSK" "C:\Documents and Settings\BLab-242\Application Data\Microsoft\VisualStudio\7.1"
XCopy /Y /F devenv.xml "C:\Documents and Settings\BLab-242\Application Data\Microsoft\VisualStudio\7.1"
XCopy /Y /F __.vsmacros "C:\__\Visual Studio Projects\VSMacros71\MyMacros\__.vsmacros"
rem XCopy /Y /F __.vsmacros "C:\Documents and Settings\blab-242\My Documents\Visual Studio Projects\VSMacros71\MyMacros\__.vsmacros"
VS.REG
Pause
I'm unfamiliar with a debugger by them so I can't comment. >>
You used MicroSoft's debugger then, I assume, MS_DevStudio... Right ?
( or Visual_Studio )
Visual_Studio_Net_2003 allows On_The_Fly macros,
I hit F7 to start/stop recording and then F8 to play it.
The so_called quick_Macro can then be edited, if I want,
to create a VBA script ( to assign it to a key or toolbar icon ).
Holding down the Alt and the Shift keys and then moving the text cursor
( via the mouse or keys ) allows me to select a block of text,
....instead of sequential characters.
You can assign a name to your keybindings file, I call mine Key_Bindings.VSK
Below is the .BAT file I use to save off my Visual_Studio settings.
Save_Setngs.BAT:
C:
cd "C:\Documents and Settings\Owner\Application Data\Microsoft\VisualStudio\7.1"
REM Must exit VS to save CmdUI.PRF and Key_Bindings.VSK
XCopy /Y /F 1033\CmdUI.PRF F:\VS
XCopy /Y /F Key_Bindings.VSK F:\VS
XCopy /Y /F devenv.xml F:\VS
XCopy /Y /F "C:\__\Visual Studio Projects\VSMacros71\MyMacros\__.vsmacros" F:\VS
XCopy /Y /F C:\__\X\VS.REG F:\VS
XCopy /Y /F C:\__\X\VS.VB F:\VS
XCopy /Y /F C:\__\X\Save_Setngs.BAT F:\VS
XCopy /Y /F C:\__\X\Restore_Setngs.BAT F:\VS
XCopy /Y /F C:\__\X\Bit_Stream.TTF F:\VS
Pause
REM More info at:
REM http://blogs.msdn.com/jledgard/archive/2004/02/05/67869.aspx
Below is how I restore them to another machine, when I have the privileges.
Restore_Setngs.BAT:
XCopy /Y /F CmdUI.PRF "C:\Documents and Settings\BLab-242\Application Data\Microsoft\VisualStudio\7.1\1033"
REM Key_Bindings must be selected by hand.
XCopy /Y /F "Key_Bindings.VSK" "C:\Documents and Settings\BLab-242\Application Data\Microsoft\VisualStudio\7.1"
XCopy /Y /F devenv.xml "C:\Documents and Settings\BLab-242\Application Data\Microsoft\VisualStudio\7.1"
XCopy /Y /F __.vsmacros "C:\__\Visual Studio Projects\VSMacros71\MyMacros\__.vsmacros"
rem XCopy /Y /F __.vsmacros "C:\Documents and Settings\blab-242\My Documents\Visual Studio Projects\VSMacros71\MyMacros\__.vsmacros"
VS.REG
Pause