vs10发布 winform后运行不了

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.IO;
using System.Reflection;

namespace VOCsample
{
static class Program
{
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
try
{
BindExceptionHandler();//绑定程序中的异常处理

        //以下是创建数据库、程序入口等代码

        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new VOCsample());
        }
        catch (Exception ex)
        {
        }
    }
     /// <summary>
    /// 绑定程序中的异常处理
    /// </summary>
    private static void BindExceptionHandler()
    {
        //设置应用程序处理异常方式:ThreadException处理
        Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
        //处理UI线程异常
        Application.ThreadException  += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
        //处理未捕获的异常
        AppDomain.CurrentDomain.UnhandledException  += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
    }
    /// <summary>
    /// 处理UI线程异常
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
    {
        //LogHelper.Instance.ErrorLog(null, e.Exception as Exception);
        LogHelper.Instance.WriteLog(e);
    }
    /// <summary>
    /// 处理未捕获的异常
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
    {
        //LogHelper.ErrorLog(null, e.ExceptionObject as Exception);
                    LogHelper.Instance.WriteLog(e);
    }
}

}
我在环境上可以正常运行。但是在本机发布之后,运行不了。双击没反应。求大神帮忙。而且我的错误日志也没有错误提示。现在是不知道怎么去找到问题。

看你的配置文件,相关的dll库是否复制过去,,net框架库是否正确安装。

你说的。我都是对的啊。就是运行不了。也不报错。

Application.Run(new VOCsample());

这个 VOCsample 是一个form 类吗?
查看你贴的代码里 这个是namespace VOCsample 啊!