바탕화면 보기 단축키, 단축 아이콘

단축키
윈도우키 + D
윈도우키 + M

단축 아이콘
[Shell]
Command=2
IconFile=explorer.exe,3
[Taskbar]
Command=ToggleDesktop

by 라파엘 | 2010/05/25 18:41 | Windows | 트랙백 | 덧글(0)

SVN Diff Merge Tool

External Diff Tool
"C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe" /base:"%base" /mine:"%mine"

External Merge Tool
"C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe" /base:"%base" /theirs:"%theirs" /mine:"%mine" /merged:"%merged"

by 라파엘 | 2010/05/19 15:52 | Tool | 트랙백 | 덧글(0)

Macros for Build Commands and Properties

MacroDescription
$(RemoteMachine)Set to the value of the Remote Machine property on the Debug property page. See Changing Project Settings for a C/C++ Debug Configuration for more information.
$(ConfigurationName)The name of the current project configuration (for example, "Debug").
$(PlatformName)The name of current project platform (for example, "Win32").
$(ParentName)(Deprecated.) Name of the item containing this project item. This will be the parent folder name, or project name.
$(RootNameSpace)The namespace, if any, containing the application.
$(IntDir)Path to the directory specified for intermediate files relative to the project directory. This path should have a trailing slash. This resolves to the value for the Intermediate Directory property.
$(OutDir)Path to the output file directory, relative to the project directory. This path should have a trailing slash. This resolves to the value for the Output Directory property.
$(DevEnvDir)The installation directory of Visual Studio 2010 (defined as drive + path); includes the trailing backslash '\'.
$(InputDir)(Deprecated; migrated.) The directory of the input file (defined as drive + path); includes the trailing backslash '\'. If the project is the input, then this macro is equivalent to $(ProjectDir).
$(InputPath)(Deprecated; migrated.) The absolute path name of the input file (defined as drive + path + base name + file extension). If the project is the input, then this macro is equivalent to $(ProjectPath).
$(InputName)(Deprecated; migrated.) The base name of the input file. If the project is the input, then this macro is equivalent to $(ProjectName).
$(InputFileName)(Deprecated; migrated.) The file name of the input file (defined as base name + file extension). If the project is the input, then this macro is equivalent to $(ProjectFileName).
$(InputExt)(Deprecated; migrated.) The file extension of the input file. It includes the '.' before the file extension. If the project is the input, then this macro is equivalent to $(ProjectExt).
$(ProjectDir)The directory of the project (defined as drive + path); includes the trailing backslash '\'.
$(ProjectPath)The absolute path name of the project (defined as drive + path + base name + file extension).
$(ProjectName)The base name of the project.
$(ProjectFileName)The file name of the project (defined as base name + file extension).
$(ProjectExt)The file extension of the project. It includes the '.' before the file extension.
$(SolutionDir)The directory of the solution (defined as drive + path); includes the trailing backslash '\'.
$(SolutionPath)The absolute path name of the solution (defined as drive + path + base name + file extension).
$(SolutionName)The base name of the solution.
$(SolutionFileName)The file name of the solution (defined as base name + file extension).
$(SolutionExt)The file extension of the solution. It includes the '.' before the file extension.
$(TargetDir)The directory of the primary output file for the build (defined as drive + path); includes the trailing backslash '\'.
$(TargetPath)The absolute path name of the primary output file for the build (defined as drive + path + base name + file extension).
$(TargetName)The base name of the primary output file for the build.
$(TargetFileName)The file name of the primary output file for the build (defined as base name + file extension).
$(TargetExt)The file extension of the primary output file for the build. It includes the '.' before the file extension.
$(VSInstallDir)The directory into which you installed Visual Studio 2010. This property contains the version of the targeted Visual Studio, which might be different that the host Visual Studio. For example, when building with $(PlatformToolset) = v90, $(VSInstallDir) contains the path to the Visual Studio 2008 installation.
$(VCInstallDir)The directory into which you installed Visual C++ 2010. This property contains the version of the targeted Visual C++, which might be different that the host Visual Studio. For example, when building with $(PlatformToolset) = v90, $(VCInstallDir) contains the path to the Visual C++ 2008 installation.
$(FrameworkDir)The directory into which the .NET Framework was installed.
$(FrameworkVersion)The version of the .NET Framework used by Visual Studio. Combined with $(FrameworkDir), the full path to the version of the .NET Framework use by Visual Studio.
$(FrameworkSDKDir)The directory into which you installed the .NET Framework. The .NET Framework could have been installed as part of Visual Studio 2010 or separately.
$(WebDeployPath)The relative path from the web deployment root to where the project outputs belong. Returns the same value as RelativePath.
$(WebDeployRoot)The absolute path to the location of <localhost>. For example, c:\inetpub\wwwroot.
$(SafeParentName)(Deprecated.) The name of the immediate parent in valid name format. For example, a form is the parent of a .resx file.
$(SafeInputName)(Deprecated.) The name of the file as a valid class name, minus file extension.
$(SafeRootNamespace)(Deprecated.) The namespace name in which the project wizards will add code. This namespace name will only contain characters that would be permitted in a valid C++ identifier.
$(FxCopDir)The path to the fxcop.cmd file. The fxcop.cmd file is not installed with all Visual C++ editions.

by 라파엘 | 2010/05/06 11:12 | Tool | 트랙백 | 덧글(0)

Mapping Deprecated Functions

The following table lists all duplicated functionality that was introduced in ODBC 3.x.
ODBC 2.x functionODBC 3.x function
SQLAllocConnectSQLAllocHandle
SQLAllocEnvSQLAllocHandle
SQLAllocStmtSQLAllocHandle
SQLBindParamSQLBindParameter
SQLColAttributesSQLColAttribute
SQLErrorSQLGetDiagRec
SQLFreeConnectSQLFreeHandle
SQLFreeEnvSQLFreeHandle
SQLFreeStmtwith an Option of SQL_DROPSQLFreeHandle
SQLGetConnectOptionSQLGetConnectAttr
SQLGetStmtOption
SQLInstallTranslator
SQLGetStmtAttr
SQLInstallTranslatorEx
SQLParamOptionSQLSetStmtAttr
SQLSetConnectOptionSQLSetConnectAttr
SQLSetParamSQLBindParameter
SQLSetScrollOptionsSQLSetStmtAttr
SQLSetStmtOptionSQLSetStmtAttr
SQLTransactSQLEndTran
Even though this function did not exist in ODBC 2.x, it is in the Open Group and ISO standards.

ODBC API Reference
SQLAllocConnect Function
SQLAllocEnv Function
SQLAllocHandle Function
SQLAllocStmt Function
SQLBindCol Function
SQLBindParameter Function
SQLBrowseConnect Function
SQLBulkOperations Function
SQLCancel Function
SQLCancelHandle Function
SQLCloseCursor Function
SQLColAttribute Function
SQLColAttributes Function
SQLColumnPrivileges Function
SQLColumns Function
SQLConnect Function
SQLCopyDesc Function
SQLDataSources Function
SQLDescribeCol Function
SQLDescribeParam Function
SQLDisconnect Function
SQLDriverConnect Function
SQLDrivers Function
SQLEndTran Function
SQLError Function
SQLExecDirect Function
SQLExecute Function
SQLExtendedFetch Function
SQLFetch Function
SQLFetchScroll Function
SQLForeignKeys Function
SQLFreeConnect Function
SQLFreeEnv Function
SQLFreeHandle Function
SQLFreeStmt Function
SQLGetConnectAttr Function
SQLGetConnectOption Function
SQLGetCursorName Function
SQLGetData Function
SQLGetDescField Function
SQLGetDescRec Function
SQLGetDiagField Function
SQLGetDiagRec Function
SQLGetEnvAttr Function
SQLGetFunctions Function
SQLGetInfo Function
SQLGetStmtAttr Function
SQLGetStmtOption Function
SQLGetTypeInfo Function
SQLMoreResults Function
SQLNativeSql Function
SQLNumParams Function
SQLNumResultCols Function
SQLParamData Function
SQLParamOptions Function
SQLPrepare Function
SQLPrimaryKeys Function
SQLProcedureColumns Function
SQLProcedures Function
SQLPutData Function
SQLRowCount Function
SQLSetConnectAttr Function
SQLSetConnectOption Function
SQLSetCursorName Function
SQLSetDescField Function
SQLSetDescRec Function
SQLSetEnvAttr Function
SQLSetParam Function
SQLSetPos Function
SQLSetScrollOptions Function
SQLSetStmtAttr Function
SQLSetStmtOption Function
SQLSpecialColumns Function
SQLStatistics Function
SQLTablePrivileges Function
SQLTables Function

by 라파엘 | 2010/05/04 12:31 | Database | 트랙백 | 덧글(0)

◀ 이전 페이지          다음 페이지 ▶