顯示具有 Visual Studio 標籤的文章。 顯示所有文章
顯示具有 Visual Studio 標籤的文章。 顯示所有文章

2013年7月24日 星期三

巴比倫Icon(Babel Icons)

開發Visual Studio 時總會想要找官方的Icon, 這裡就是了 http://msdn.microsoft.com/en-us/library/bb166402(v=VS.90).aspx

2013年7月6日 星期六

VS2010出現無法Attach Debug

最近幾天出現這樣的訊息

Attaching the Script debugger to process '[21368] iexplore.exe' on machine 'CLICKAPNB6' failed. A debugger is already attached.

找不到原因, 後來google一下(Attaching the Script debugger to process failed. A debugger is already attached)找到也有人在問

答案是, 到命令模式下

regsvr32.exe "%ProgramFiles(x86)%\Common Files\Microsoft Shared\VS7Debug\msdbg2.dll"
就可以deubg了

2013年3月13日 星期三

關於VS2010 Setup Project的問題

我有建一個多個project的安裝檔案(Molds), 引入了約5、6個Projects, 剛建好時似乎是OK的, 但是經過一段時間(專案維護), 出現下列錯誤:

Unable to update the dependencies of the project cannot be determined

這個問題其它是專案增加(Add Project output)時的依存性(dependencies)檢查出問題, 微軟有hotfix http://support.microsoft.com/kb/2286556?wa=wsignin1.0

在connect也有https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=30681

我現在的作法是不用它的Add Project output 的功能, 自己找檔案(dll) 加入.

就解決了.