Tuesday, December 11, 2012
SVN - trunk, tag, branch & merge (interesting)
http://weblogs.asp.net/bsimser/archive/2008/05/06/day-to-day-with-subversion.aspx
Thursday, December 6, 2012
Using arrow keys in kornshell
Use this tip to enable your arrow keys. #!/bin/ksh # file: enable-arrow # source in current environment with # command: # . enable-arrows # set -o emacs # Note: these are the actual control # characters. In vi, type i ctrl-v # then ctrl-P (if u want a ctrl-p) alias _A=^P alias _B=^N alias _D=^B alias _C=^F alias __A=^P alias __B=^N alias __D=^B alias __C=^F
Wednesday, September 29, 2010
set up SVN on windows
http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html
Monday, August 9, 2010
multi svn
sc create svn binpath= "C:\SVN\bin\svnserve.exe --service -r d:\projects" displayname= "Subversion" depend= Tcpip start= auto
net start svn
net start svn
Wednesday, February 17, 2010
Wednesday, September 2, 2009
R6034 C++ Runtine Error
Msg:
---------------------------
Microsoft Visual C++ Runtime Library
---------------------------
Runtime Error!
Program: E:\WINDOWS\system32\regsvr32.exe
R6034
An application has made an attempt to load the C runtime library incorrectly.
Please contact the application's support team for more information.
---------------------------
OK
---------------------------
Reason:
It happened because two Run-Time DLLs were referenced in my DLL by some reason! Inside of the DLL there are two Run-Time DLLs : 'msvcr80d.dll' and 'msvcr80.dll', and the 2nd one is the reason of that run-time problem.
Solution:
Use Dependency Walker to check which module has msvcr80.dll
Add 'msvcrt.lib' to the list of ignored libraries for DEBUG-configuration:
[Configuration Properties] -> [Linker] -> [Input] -> 'Ignore Specific Library' - msvcrt.lib
---------------------------
Microsoft Visual C++ Runtime Library
---------------------------
Runtime Error!
Program: E:\WINDOWS\system32\regsvr32.exe
R6034
An application has made an attempt to load the C runtime library incorrectly.
Please contact the application's support team for more information.
---------------------------
OK
---------------------------
Reason:
It happened because two Run-Time DLLs were referenced in my DLL by some reason! Inside of the DLL there are two Run-Time DLLs : 'msvcr80d.dll' and 'msvcr80.dll', and the 2nd one is the reason of that run-time problem.
Solution:
Use Dependency Walker to check which module has msvcr80.dll
Add 'msvcrt.lib' to the list of ignored libraries for DEBUG-configuration:
[Configuration Properties] -> [Linker] -> [Input] -> 'Ignore Specific Library' - msvcrt.lib
Subscribe to:
Posts (Atom)