我收到一个错误...
filename.exe 中出现“System.BadImageFormatExpection”类型的未处理异常附加信息:无法加载文件或程序集“System.Data,版本= 4.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089”或其依赖项。该模块应包含一个程序集清单......
错误指向一个名为 Program.cs 的文件...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace MALHRManagementSystem
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmLogin()); // error pointing at this line
}
}
}
我已将我的 MS Access 2003 文件存储在我的 Windows 7 PC(64 位)中。我正在尝试从我的笔记本电脑 vista home(32 位)上测试运行我的应用程序。我的笔记本电脑上有 Visual Studio 2010、C#。我将平台目标设置为 x86。我已经映射了网络驱动器。
谁能帮助我。
提前感谢任何可以在这里帮助我的人
但是,如果我不允许在这里问这个问题,请告诉我。