⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 toggle devstudio scc.vbs

📁 ResOrg 图形化管理Vc项目的资源ID的工具的源代码。 ResOrg - Manage and Renumber Resource Symbol IDs Introduction The
💻 VBS
字号:
set shell = CreateObject("WScript.Shell")
key =  "HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\ProviderRegKey"
currentSCCP = shell.RegRead(key)
if currentSCCP = Empty then 
	intButton = shell.Popup("Integration is currently disabled, enable it?", 0, "Visual Studio SourceSafe integration", 4 + 32)
	if intButton = 6 then 
		shell.RegWrite key, "Software\Microsoft\SourceSafe"
		shell.Popup "Integration is now enabled" + vbcrlf + "Visual Studio should now be restarted.", 5, "Visual Studio SourceSafe integration", 0
	end if
else 
	intButton = shell.Popup("Integration is currently enabled, disable it?", 0, "Visual Studio SourceSafe integration", 4 + 32)
	if intButton = 6 then 
		shell.RegWrite key, ""
		shell.Popup "Integration is now disabled." + vbcrlf + "Visual Studio should now be restarted.", 5, "Visual Studio SourceSafe integration", 0
	end if
end if

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -