Hi When I use of crystal report (sap 13) and .netframework 4 in my application(c#-VS2010) I will be faces with this error : Could not load file or assembly 'file:///C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet1\crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified. But when I choose .NetFramework 3.5 , it works fine. Thanks very much
armm1388
Posts
-
Error When use of crystal report (sap crystal 13) and .netframework 4 in my application(c#-VS2010) -
Use propaganda in my site (VS2010 – C#)Hi Almost in all web sites in internet there is a propaganda at left or right top corner of the web site. Now I want to Use propaganda in my site (VS2010 – C#). HOW CAN I DO IT? Thanks very much
-
Limit size of pictures for upload in my web site (VS2010 – C#)Hi How can I Limit size of pictures for upload in my web site (VS2010 – C#)? Thanks very much
-
Don’t Export Persian fields finely from ASP.NET to Excel (VS2010 – C#)Hi I export my GrideView from asp.net to excel but the fields which contain Persian character don’t export finely (VS2010 – C#). HOW CAN I DO IT? My code is : HttpContext.Current.Response.Clear(); HttpContext.Current.Response.AddHeader("content-disposition", string.Format("attachment;filename={0}.xls", "Exported")); HttpContext.Current.Response.Charset = ""; HttpContext.Current.Response.ContentType = "application/ms-excel"; using (StringWriter sw = new StringWriter()) { using (HtmlTextWriter htw = new HtmlTextWriter(sw)) { // Create a table to contain the grid Table table = new Table(); foreach (GridViewRow row in GridView1.Rows) { table.Rows.Add(row); } // render the table into the htmlwriter table.RenderControl(htw); // render the htmlwriter into the response HttpContext.Current.Response.Write(sw.ToString()); HttpContext.Current.Response.End(); } } Thanks very much
-
Connect to another pcI have username and password of another pc and I want to connect to that pc from my pc. How can I do this by programming c# or vb.net or Delphi