因此,我得到了这个文件,该文件应该将access数据库转换为SQL (对于名为PROFFIX的特定程序,但这并不重要.)。但是,如果我试图运行它,它会产生以下错误:
Fehler beim Starten von PROFFIX dbConvert!(运行PROFFIX dbConvert时出错)
System.IO.FileLoadException: Could not load file or assembly
'DevComponents.DotNetBar2, Version=10.3.0.4, Culture=neutral,
PublicKeyToken=7eb7c3a35b91de04' or one of its dependencies. The located
assembly's manifest definition does not match the assembly reference.
(Exception from HRESULT: 0x80131040)
File name: 'DevComponents.DotNetBar2, Version=10.3.0.4, Culture=neutral,
PublicKeyToken=7eb7c3a35b91de04'
at dbconvert.frmHaupt.InitializeComponent()
at dbconvert.frmHaupt..ctor()
at dbConvert.pxDbConvertFkt.Main()
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure
logging.
To turn this feature off, remove the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog].谁知道这个DevComponents.DotNetBar2到底出了什么问题,我在哪里能找到这个问题的解决方案?
发布于 2013-09-27 01:19:56
您的应用程序所用控件的版本与可执行文件附带的控件版本不相同,或者根本没有包含DotNetBar。您必须始终在您的可执行版本中包含与应用程序编译的DotNetBar完全相同的版本。.NET框架总是绑定到编译程序集应用程序的确切版本。
发布于 2018-11-23 09:39:53
即使您已经拥有它的dll文件,但是您应该从DotNetBar安装http://www.devcomponents.com/dotnetbar/download.aspx模块
但目前的版本不是10.3.0.4。
你可以通过谷歌找到它,或者要求他们或我。
https://stackoverflow.com/questions/15041635
复制相似问题