c# - Report does not execute on computers other than my own -


my application not work on computer own. when open exe bin folder on computer brings report , can run no problem. when go computer crashes , displays error:

problem event name:        clr20r3 problem signature 01:      crystaltest.exe     problem signature 02:      1.0.0.0     problem signature 03:      57d0272d     problem signature 04:      crystaldecisions.shared     problem signature 05:      13.0.17.2096 problem signature 06:      576134be problem signature 07:      69d problem signature 08:      1 problem signature 09:      system.typeinitialization os version:                6.1.7601.2.1.0.256.48 locale id:                 1033 additional information 1:  0a9e additional information 2:  0a9e372d3b4ad19135b953a78882e789 additional information 3:  0a9e additional information 4:  0a9e372d3b4ad19135b953a78882e789 

i created new c# windows form application project, added existing crystal report new item, added crystalreportviewer form, , added code:

private void crystalreportviewer1_load(object sender, eventargs e) {     clinicletter rpt = new clinicletter();     crystalreportviewer1.reportsource = rpt; } 

the project properties target framework 4.5. computer uses:

  • windows 7
  • visual studio 2015
  • crystal reports xi release 2 .net 2005 server
  • sap crystal reports runtime engine .net framwork (64-bit)
  • sap crysalt reports, version microsoft visual studio
  • crystal reports viewer 2011 sp4

the computer doesn’t work uses:

  • windows 7
  • sap crystal reports runtime engine .net framwork (64-bit)
  • crystal reports viewer 2011 sp4
  • microsoft .net framework 4.6.1

i figured out issue. looked @ reference paths crystal reports .net framework, , application using 32-bit folder directory. computer had 64 bit installed.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -