我收到错误了......
类型'System.BadImageFormatExpection'的未处理异常 发生在filename.exe中 附加信息:无法加载文件或程序集'System.Data,version = 4.0.0.0, Cultural = 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家庭(32位)测试运行我的应用程序。我的笔记本电脑上有Visual Studio 2010,C#。我将我的平台目标设置为x86。我已经映射了网络驱动器。
任何人都可以帮助我。
提前感谢任何可以帮助我的人
但是,如果我不被允许在这里提出这个问题,请告诉我。