English 中文(简体)
我想在文稿中形成条码。 我如何这样做?
原标题:I want to generate barcodes in a Word document. How do I do this?

我有EAN-8标准条码信息储存在亚洲开发银行。 我试图以MS Word文件格式编写一份报告。 要求是,我使用从非行储存的胎儿在文件中建立条码。 我正在使用VB.net(NET Framework 2.0)。

我没有在MSDN中发现任何预报结果? 如何落实这一要求? 问 题 是否有样本?

问题回答

解决你的问题可能比较复杂,但简单的做法是在你内部使用<>Barcode Font。 语言文件。

If you search for barcode fonts you should find a bunch of fonts including EAN8. In some cases you ll have to pay a licence but I believe there are free versions too.

此外,你还必须努力如何与贵产品一道分配。

可以通过条码自动代表条码信息。 具体来说,我个人使用的是WASP/a>条条码。

You can generate a barcode image using Barcode.dll barcode component:

Dim barcode As BaseBarcode
barcode = BarcodeFactory.GetBarcode(Symbology.EAN8)

barcode.Number = "1234567"
barcode.ChecksumAdd = true

Dim bitmap As Bitmap
bitmap = barcode.Render()

  You can also save it to a file or use to create report
barcode.Save("c:\barcode.gif", ImageType.Gif)

请注意,Barcode.dll是商业产品一的产物。





相关问题
Is Shared ReadOnly lazyloaded?

I was wondering when I write Shared ReadOnly Variable As DataType = New DataType() Or alternatively Shared ReadOnly Variable As New DataType() Is it lazy loaded or as the instance initializes? ...

Entertaining a baby with VB.NET

I would like to write a little application in VB.NET that will detect a baby s cry. How would I get started with such an application?

Choose Enter Rather than Pressing Ok button

I have many fields in the page and the last field is a dropdown with list of values. When I select an item in a dropdown and press Enter, it doesn t do the "Ok". Instead I have to manually click on Ok ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

Set Select command in code

On button Click I want to Set the Select command of a Gridview. I do this and then databind the grid but it doesn t work. What am i doing wrong? protected void bttnView_Click(object sender, ...

Hover tooltip on specific words in rich text box?

I m trying to create something like a tooltip suddenly hoovering over the mouse pointer when specific words in the richt text box is hovered over. How can this be done?

热门标签