バーコードを含む画像を表示するために VB.net で Crystal レポートを使用したいのですが、プロジェクトに crdb_adoplus.dll の参照を追加したにもかかわらず、アプリケーションを実行すると、レポートをロードする前に次の例外が発生します。
例外: ファイルまたはアセンブリ 'crdb_adoplus, Version=9.1.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' またはその依存関係の 1 つを読み込めませんでした。厳密な名前の検証に失敗しました。(HRESULT からの例外: 0x8013141A)
そして、ここに私のコードがあります:
Private Sub Frm_Reporting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
CrystalReportViewer1.ReportSource = Nothing
Dim rptbarcode As RptPacking
rptbarcode = New RptPacking
Dim xrep As DataSet1
xrep = New DataSet1
Dim row As DataRow
Dim MyImg As Image = Nothing
Try
btnEncode(MyImg, BarcodeText)
row = xrep.Tables("DataTable1").NewRow
Dim ms As New MemoryStream()
MyImg.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg)
Dim ii As Byte()
ii = ms.ToArray()
xrep.Tables("DataTable1").Rows.Add(ii)
rptbarcode.Load("GSMProduction.RptPacking.rpt")
rptbarcode.SetDataSource(xrep.Tables("DataTable1"))
CrystalReportViewer1.ReportSource = rptbarcode
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
Private Sub btnEncode(ByRef pic As Image, ByVal txtData As String)
Dim W As Integer = 160
Dim H As Integer = 110
Dim b As BarcodeLib.Barcode
Dim type As BarcodeLib.TYPE = BarcodeLib.TYPE.UNSPECIFIED
type = BarcodeLib.TYPE.CODE128
b = New BarcodeLib.Barcode()
Try
If type <> BarcodeLib.TYPE.UNSPECIFIED Then
b.IncludeLabel = True
'===== Encoding performed here =====
pic = b.Encode(type, txtData, W, H)
'CType(Frm, frm_submitentery).pic_img.Image = pic.Image
'===================================
End If
Catch ex As Exception
'try
MessageBox.Show(ex.Message)
'catch
End Try
End Sub
事前にご提案いただきありがとうございます。