小编Jul*_*Van的帖子

Visual Studio 2010在启动时崩溃,即使在安全模式下也是如此

我在虚拟机(VM)中安装了Visual Studio 2010 Premium,直到今天,我卸载了Office 2010试用版,安装了Office 2010 Professional并创建了我的VM快照.

现在,当我打开Visual Studio时,界面会出现一两秒钟后消失.当我打开一个解决方案(.sln)文件(它在加载解决方案后崩溃)或刚刚打开Visual Studio 2010(即使在安全模式下)时,问题就出现了.

我该如何解决?

Here is the log:

    <?xml-stylesheet type="text/xsl" href="ActivityLog.xsl"?>
<activity>
  <entry>
    <record>1</record>
    <time>2011/10/03 13:41:20.894</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2010 version: 10.0.30319.1</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2011/10/03 13:41:21.234</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in User Groups: Administrators Users</description>
  </entry>
  <entry>
    <record>3</record>
    <time>2011/10/03 13:41:21.304</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Available Drive Space: C:\ drive has 11464269824 bytes</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2011/10/03 13:41:21.334</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Internet Explorer Version: 8.0.6001.19120</description>
  </entry>
  <entry>
    <record>5</record>
    <time>2011/10/03 13:41:21.725</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>.NET Framework …
Run Code Online (Sandbox Code Playgroud)

crash visual-studio-2010

7
推荐指数
2
解决办法
9176
查看次数

电子表格比较(Office 2013)自动化从.NET应用程序或VSTO加载项

是否可以通过嵌入一些Microsoft程序集从.NET应用程序或VSTO Excel加载项自动化Office 2013 的新电子表格比较工具?

一个类似的问题被要求进行VBA编程,答案是否定的.

我设法在命令行中执行应用程序"C:\ Program Files(x86)\ Microsoft Office\Office15\DCF\SPREADSHEETCOMPARE.EXE",文本文件作为输入参数,在单独的行中包含两个工作簿路径,但它将是更容易直接从代码中调用方法,就像Excel的其他功能一样.

excel vsto

5
推荐指数
1
解决办法
5180
查看次数

SignalR:无法使用完整的IP地址连接到http:// localhost:8080自托管服务器

我正在使用以下代码创建Signal R自托管服务器:

internal class Config
{
    internal static string serverurl = null;
    internal static Microsoft.AspNet.SignalR.HubConfiguration hubconfiguration = null;
    internal static SignalRHub Hub { get; set; }
    internal static void StartServer()
    {
        serverurl = "http://localhost:8080";
        // In this method, a web application of type Startup is started at the specified URL (http://localhost:8080). 
        {
            Microsoft.Owin.Hosting.WebApp.Start<Startup>(serverurl);
            Log.AddMessage("Server running on " + serverurl); 
        }
        catch(Exception ex)
        {
            Log.AddMessage("An error occurred when starting Server: " + ex);
        }
    }
}

class Startup
{
    // the …
Run Code Online (Sandbox Code Playgroud)

signalr signalr-hub

5
推荐指数
1
解决办法
1万
查看次数

标签 统计

crash ×1

excel ×1

signalr ×1

signalr-hub ×1

visual-studio-2010 ×1

vsto ×1