我在VS 2010 sap crystalreports中遇到麻烦,使用c#制作一个Windows应用程序.
我使用以下代码得到以下错误:
CrystalReport1 cr1 = new CrystalReport1();
cr1.SetDataSource(dt1); //Error
Run Code Online (Sandbox Code Playgroud)
Could not load file or assembly 'file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win64_x64\dotnet1\crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified.
我有一张桌子,边框宽度是1.
如何在所有屏幕分辨率下将高度调整为100%?或者使用jQuery如何动态更改表高度?
我是网络应用程序的新手
请帮忙?...
拉杰什
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
</head>
<script src="./Scripts/jquery-1.4.1.js" type="text/javascript">
jQuery(document).ready(function () {
jQuery('#SprImg').attr("height", jQuery(window).height());
});
</script>
<body>
<table id="Table1" cellpadding="0" cellspacing="0" runat ="server" width="100%" border="0" align="left">
<tr>
<td id="LeftPane" align="left" valign="top" width="175" runat="server" ></td>
<td id="RightPane" align="left" width="*.*" runat="server" valign="top">
<img id="SprImg" src="./Image/login.gif" alt="" />
</td>
</tr>
</table>
Run Code Online (Sandbox Code Playgroud)