<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Barcode Rendering Framework</title><link>http://barcoderender.codeplex.com/project/feeds/rss</link><description>The bar-code rendering framework quite simply encapsulates the native rendering of barcode symbologies without requiring third-party fonts. The framework makes it easy to define new symbologies and use the resultant images from web or forms applications in a variety of usage scenarios.</description><item><title>Closed Issue: Problem with Code128 barcode [8069]</title><link>http://barcoderender.codeplex.com/workitem/8069</link><description>I&amp;#39;m trying to render the value &amp;#34;45870200000020000050009&amp;#34; using Code128, but the generated imaged can&amp;#39;t be read by any reader. Any hints&amp;#63;&amp;#63;&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:13 GMT</pubDate><guid isPermaLink="false">Closed Issue: Problem with Code128 barcode [8069] 20130516111913A</guid></item><item><title>Closed Issue: Error in Code25 Interleaved ? [8820]</title><link>http://barcoderender.codeplex.com/workitem/8820</link><description>Thank you for providing this tool. Comparing the output from this tool for &amp;#34;1234567895&amp;#34; gives a complete different result as listed on&lt;br /&gt;&amp;#160;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;en.wikipedia.org&amp;#47;wiki&amp;#47;Interleaved_2_of_5&lt;br /&gt;&amp;#160;&lt;br /&gt;Also trying &amp;#34;03239950&amp;#34; against the testpage&lt;br /&gt;&amp;#160;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.spatula.net&amp;#47;proc&amp;#47;barcode&amp;#47;i25.src&lt;br /&gt;&amp;#160;&lt;br /&gt;gives a complete different result. Am I totally wrong here&amp;#63;&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:13 GMT</pubDate><guid isPermaLink="false">Closed Issue: Error in Code25 Interleaved ? [8820] 20130516111913A</guid></item><item><title>Closed Issue: Error in code 128 [10019]</title><link>http://barcoderender.codeplex.com/workitem/10019</link><description>When I try to get the Barcode in code 128 for strings like D1-21-1-210-10028436 there is a problem I &amp;#96;m getting non-printable characteres in the fifth position.&lt;br /&gt;I think the problem is in Code128.cs&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;        private string GetSetBlock&amp;#40;string text, out int set, out string subBlock&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47; Needed to ensure glyphs allocated.&lt;br /&gt;            GetGlyphs&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;            BlockParserState state &amp;#61; BlockParserState.Free&amp;#59;&lt;br /&gt;            int index&amp;#59;&lt;br /&gt;            for &amp;#40;index &amp;#61; 0&amp;#59; index &amp;#60; text.Length&amp;#59; &amp;#43;&amp;#43;index&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                &amp;#47;&amp;#47; Check for Set C&lt;br /&gt;                &amp;#47;&amp;#47; NOTE&amp;#58; This check eliminates two digits per iteration&lt;br /&gt;                if &amp;#40;char.IsDigit&amp;#40;text&amp;#91;index&amp;#93;&amp;#41; &amp;#38;&amp;#38;&lt;br /&gt;                    index &amp;#60; &amp;#40;text.Length - 1&amp;#41; &amp;#38;&amp;#38;&lt;br /&gt;                    char.IsDigit&amp;#40;text&amp;#91;index &amp;#43; 1&amp;#93;&amp;#41;&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#43;&amp;#43;index&amp;#59;&lt;br /&gt;                    if &amp;#40;state &amp;#61;&amp;#61; BlockParserState.Free&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        state &amp;#61; BlockParserState.UseSetC&amp;#59;&lt;br /&gt;                        continue&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                    else if &amp;#40;state &amp;#61;&amp;#61; BlockParserState.UseSetC&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        continue&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;                &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;               ....&lt;br /&gt;&amp;#160;&lt;br /&gt;When you are already using another set you get directly to a break and you have already added 1 to de index.&lt;br /&gt;So I think the solution is adding and else like this&lt;br /&gt;&amp;#160;&lt;br /&gt;        private string GetSetBlock&amp;#40;string text, out int set, out string subBlock&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47; Needed to ensure glyphs allocated.&lt;br /&gt;            GetGlyphs&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;            BlockParserState state &amp;#61; BlockParserState.Free&amp;#59;&lt;br /&gt;            int index&amp;#59;&lt;br /&gt;            for &amp;#40;index &amp;#61; 0&amp;#59; index &amp;#60; text.Length&amp;#59; &amp;#43;&amp;#43;index&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                &amp;#47;&amp;#47; Check for Set C&lt;br /&gt;                &amp;#47;&amp;#47; NOTE&amp;#58; This check eliminates two digits per iteration&lt;br /&gt;                if &amp;#40;char.IsDigit&amp;#40;text&amp;#91;index&amp;#93;&amp;#41; &amp;#38;&amp;#38;&lt;br /&gt;                    index &amp;#60; &amp;#40;text.Length - 1&amp;#41; &amp;#38;&amp;#38;&lt;br /&gt;                    char.IsDigit&amp;#40;text&amp;#91;index &amp;#43; 1&amp;#93;&amp;#41;&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#43;&amp;#43;index&amp;#59;&lt;br /&gt;                    if &amp;#40;state &amp;#61;&amp;#61; BlockParserState.Free&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        state &amp;#61; BlockParserState.UseSetC&amp;#59;&lt;br /&gt;                        continue&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                    else if &amp;#40;state &amp;#61;&amp;#61; BlockParserState.UseSetC&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        continue&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                    &amp;#47;&amp;#47;This is the else I m adding to substract in case there is another set selected&lt;br /&gt;                    else&lt;br /&gt;                        index--&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;           ....&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:12 GMT</pubDate><guid isPermaLink="false">Closed Issue: Error in code 128 [10019] 20130516111912A</guid></item><item><title>Closed Issue: Wrong BitEncoding at Code128.cs [10515]</title><link>http://barcoderender.codeplex.com/workitem/10515</link><description>The correct bit encoding for &amp;#39;C&amp;#39; &amp;#40;char 35&amp;#41; is 10001000110 &amp;#40;0x446&amp;#41;. This is causing the creation of unreadable Code 128 barcodes. I will continue to use the framework in production, so I will correct and report any other problem found.&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:12 GMT</pubDate><guid isPermaLink="false">Closed Issue: Wrong BitEncoding at Code128.cs [10515] 20130516111912A</guid></item><item><title>Closed Issue: Error code 128 [11794]</title><link>http://barcoderender.codeplex.com/workitem/11794</link><description>Good morning,&lt;br /&gt;&amp;#160;&lt;br /&gt;While testing, I discovered that the bar codes beginning with 47 with the code 128 symbology give false results and not read. If I find more mistakes, I will inform.&lt;br /&gt;&amp;#160;&lt;br /&gt;Here I leave some examples&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;47008&lt;br /&gt;47162 &lt;br /&gt;47100 &lt;br /&gt;47162 &lt;br /&gt;&amp;#160;&lt;br /&gt;Thank you very much for this framework&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:12 GMT</pubDate><guid isPermaLink="false">Closed Issue: Error code 128 [11794] 20130516111912A</guid></item><item><title>Closed Issue: Another Code128 encoding error [12507]</title><link>http://barcoderender.codeplex.com/workitem/12507</link><description>I&amp;#39;ve been using Code128 for a while now in production. I&amp;#39;ve found just one more error. Please correct this&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#40;Code128.cs&amp;#41;&lt;br /&gt;new Code128Glyph &amp;#40;&amp;#39;O&amp;#39;, &amp;#39;O&amp;#39;, &amp;#40;char&amp;#41;47, 0x476&amp;#41;&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:12 GMT</pubDate><guid isPermaLink="false">Closed Issue: Another Code128 encoding error [12507] 20130516111912A</guid></item><item><title>Closed Issue: Example of bug in Code 128 generator [13955]</title><link>http://barcoderender.codeplex.com/workitem/13955</link><description>Create file barcode.ashx &amp;#60;&amp;#37;&amp;#64; WebHandler Language&amp;#61;&amp;#34;VB&amp;#34; Class&amp;#61;&amp;#34;barcode&amp;#34; &amp;#37;&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;Imports System&lt;br /&gt;Imports System.Data.Linq&lt;br /&gt;Imports System.Drawing&lt;br /&gt;Imports System.Drawing.Imaging&lt;br /&gt;Imports System.IO&lt;br /&gt;Imports System.Web&lt;br /&gt;Imports Zen.Barcode&lt;br /&gt;&amp;#160;&lt;br /&gt;Public Class barcode &amp;#58; Implements IHttpHandler&lt;br /&gt;    &lt;br /&gt;&amp;#9;Public Sub ProcessRequest&amp;#40;ByVal context As HttpContext&amp;#41; Implements IHttpHandler.ProcessRequest&lt;br /&gt;&amp;#9;&amp;#9;Const text As String &amp;#61; &amp;#34;LD000324704&amp;#34;&lt;br /&gt;&amp;#9;&amp;#9;Const Resolution As Integer &amp;#61; 1&lt;br /&gt;&amp;#9;&amp;#9;Const Height As Integer &amp;#61; 75&lt;br /&gt;&amp;#9;&amp;#9;&lt;br /&gt;&amp;#9;&amp;#9;Dim Response As HttpResponse &amp;#61; context.Response&lt;br /&gt;&amp;#9;&amp;#9;Response.BufferOutput &amp;#61; True&lt;br /&gt;&amp;#9;&amp;#9;Response.ContentType &amp;#61; &amp;#34;image&amp;#47;png&amp;#34;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#9;&amp;#9;Dim pict As Byte&amp;#40;&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;Using ms As New MemoryStream&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;Using Image As Image &amp;#61; BarcodeDrawFactory.GetSymbology&amp;#40;BarcodeSymbology.Code128&amp;#41;.Draw&amp;#40;text, Height, Height, &amp;#40;Resolution &amp;#43; 1&amp;#41; &amp;#42; 2, &amp;#40;Resolution &amp;#43; 1&amp;#41; &amp;#42; 3&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;Image.Save&amp;#40;ms, ImageFormat.Png&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;End Using&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;pict &amp;#61; ms.ToArray&lt;br /&gt;&amp;#9;&amp;#9;End Using&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#9;&amp;#9;Response.OutputStream.Write&amp;#40;pict, 0, pict.Length&amp;#41;&lt;br /&gt;&amp;#9;End Sub&lt;br /&gt; &lt;br /&gt;    Public ReadOnly Property IsReusable&amp;#40;&amp;#41; As Boolean Implements IHttpHandler.IsReusable&lt;br /&gt;        Get&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;Return True&lt;br /&gt;        End Get&lt;br /&gt;    End Property&lt;br /&gt;End Class&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;Create page Test.htm&amp;#60;&amp;#33;DOCTYPE html PUBLIC &amp;#34;-&amp;#47;&amp;#47;W3C&amp;#47;&amp;#47;DTD XHTML 1.0 Transitional&amp;#47;&amp;#47;EN&amp;#34; &amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;TR&amp;#47;xhtml1&amp;#47;DTD&amp;#47;xhtml1-transitional.dtd&amp;#34;&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#60;html xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;1999&amp;#47;xhtml&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;head&amp;#62;&lt;br /&gt;    &amp;#60;title&amp;#62;&amp;#60;&amp;#47;title&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;head&amp;#62;&lt;br /&gt;&amp;#60;body&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;img alt&amp;#61;&amp;#34;&amp;#34; src&amp;#61;&amp;#34;barcode.ashx&amp;#34; width&amp;#61;&amp;#34;220px&amp;#34; height&amp;#61;&amp;#34;75px&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;body&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;html&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;Open this page in browser and print it. I have 5 different types of scanners like Symbol and Cipher and no one of them can not read this printed barcode.&lt;br /&gt;I generated this barcode by DevExpress which this scanners read OK. It&amp;#39;s easy to see a little difference in these barcodes.&lt;br /&gt;You can find these test barcodes as PNG here http&amp;#58;&amp;#47;&amp;#47;cid-e9a4711d718d8369.office.live.com&amp;#47;browse.aspx&amp;#47;Bugs&amp;#47;Barcode&amp;#37;20render&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:11 GMT</pubDate><guid isPermaLink="false">Closed Issue: Example of bug in Code 128 generator [13955] 20130516111911A</guid></item><item><title>Closed Issue: Code128 barcodes missing characters when scanned. [14801]</title><link>http://barcoderender.codeplex.com/workitem/14801</link><description>I support a custom C&amp;#35; WinForms application that uses Zen.Barcode.Core to generate barcode images in Code128.  When the application was first created it only needed to create barcodes of serial numbers in the following formats&amp;#58; 99999999-9 and 99-99999XX-999.  In these formats I do not believe any issues were encountered.  Requirements changed and the data formats became 99999999-99 and X99-99999XX-999.  Now the barcodes for both of these data formats are not generated correctly.  If I have a serial number of 01234567-89 the barcode when scanned will return the text 01234567-8, and a serial number of A01-23456BC-789 when scanned will return the text A0-23456BC-789.  I have used the included BarcodeRender WinForms application to confirm it is an issue with the Barcode Rendering Framework.  The custom application I support uses version 2.0.3.0 of the framework and separately I have confirmed that these issues still exist in version 2.1.0.0 of the framework.  Please see attached jpg image.&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:11 GMT</pubDate><guid isPermaLink="false">Closed Issue: Code128 barcodes missing characters when scanned. [14801] 20130516111911A</guid></item><item><title>Closed Issue: SSRS Control not usable on Footers and Headers [15346]</title><link>http://barcoderender.codeplex.com/workitem/15346</link><description>Hi,&lt;br /&gt;&amp;#160;&lt;br /&gt;I&amp;#39;m getting an error when attempting to use the Barcode Item in the header or footer of an SSRS report.  We want to use it for forms and documents like Invoices, Purchase Orders, etc. where we would print barcodes but want them to appear on every page.  Is there any way to circumvent this&amp;#63;&lt;br /&gt;&amp;#160;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:11 GMT</pubDate><guid isPermaLink="false">Closed Issue: SSRS Control not usable on Footers and Headers [15346] 20130516111911A</guid></item><item><title>Closed Feature: Add scale property to 1D barcode metrics [18407]</title><link>http://barcoderender.codeplex.com/workitem/18407</link><description>Add Scale property to barocde metrics for 1D codes that scales the barcode width and height.&lt;br /&gt;</description><author>DementedDevil</author><pubDate>Thu, 16 May 2013 11:19:10 GMT</pubDate><guid isPermaLink="false">Closed Feature: Add scale property to 1D barcode metrics [18407] 20130516111910A</guid></item><item><title>New Post: Code 128 "A"</title><link>http://barcoderender.codeplex.com/discussions/443204</link><description>&lt;div style="line-height: normal;"&gt;Is there anyway I can guarantee that a Code 128 barcode is generated using type &amp;quot;A&amp;quot;, with the SSRS component?&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;/div&gt;</description><author>cameronam</author><pubDate>Fri, 10 May 2013 05:59:28 GMT</pubDate><guid isPermaLink="false">New Post: Code 128 "A" 20130510055928A</guid></item><item><title>New Post: Code 128 "A"</title><link>http://barcoderender.codeplex.com/discussions/443204</link><description>&lt;div style="line-height: normal;"&gt;Is there any way I can guarantee that a Code 128 barcode is generated using type &amp;quot;A&amp;quot;, with the SSRS component?&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;/div&gt;</description><author>cameronam</author><pubDate>Fri, 10 May 2013 05:59:28 GMT</pubDate><guid isPermaLink="false">New Post: Code 128 "A" 20130510055928A</guid></item><item><title>New Post: parentheses in barcode in MVC?</title><link>http://barcoderender.codeplex.com/discussions/438781</link><description>&lt;div style="line-height: normal;"&gt;What do I need to do to get the tool to render a barcode that contains parentheses in MVC?  It works when parentheses are not included, but fails with them. &lt;br /&gt;
4153343288000 works.&lt;br /&gt;
(415)33(4}3288000  dos not work.&lt;br /&gt;
&lt;/div&gt;</description><author>kdavm</author><pubDate>Tue, 02 Apr 2013 12:10:08 GMT</pubDate><guid isPermaLink="false">New Post: parentheses in barcode in MVC? 20130402121008P</guid></item><item><title>New Post: parentheses in barcode in MVC?</title><link>http://barcoderender.codeplex.com/discussions/438781</link><description>&lt;div style="line-height: normal;"&gt;What do I need to do to get the tool to render a barcode that contains parentheses in MVC?  It works when parentheses are not included, but fails with them. &lt;br /&gt;
4153343288000 works.&lt;br /&gt;
(415)33(4}3288000  dos not work.&lt;br /&gt;
&lt;/div&gt;</description><author>kdavm</author><pubDate>Tue, 02 Apr 2013 12:10:08 GMT</pubDate><guid isPermaLink="false">New Post: parentheses in barcode in MVC? 20130402121008P</guid></item><item><title>Created Issue: Help with barcode [19537]</title><link>http://barcoderender.codeplex.com/workitem/19537</link><description>Hello , &lt;br /&gt;&lt;br /&gt;Can I merge the code with barcode image &amp;#63;&lt;br /&gt;</description><author>biswajitbose</author><pubDate>Thu, 28 Mar 2013 13:18:50 GMT</pubDate><guid isPermaLink="false">Created Issue: Help with barcode [19537] 20130328011850P</guid></item><item><title>New Post: How i can display the text below the barcode ? </title><link>http://barcoderender.codeplex.com/discussions/437790</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
How i can display the text below the Barcode (128) ? &lt;br /&gt;
&lt;br /&gt;
Many Thanks and Best Regards. &lt;br /&gt;
&lt;/div&gt;</description><author>aalabed</author><pubDate>Sun, 24 Mar 2013 09:02:01 GMT</pubDate><guid isPermaLink="false">New Post: How i can display the text below the barcode ?  20130324090201A</guid></item><item><title>New Post: How i can display the text below the barcode ? </title><link>http://barcoderender.codeplex.com/discussions/437790</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
How i can display the text below the Barcode (128) ? &lt;br /&gt;
&lt;br /&gt;
Many Thanks and Best Regards. &lt;br /&gt;
&lt;/div&gt;</description><author>aalabed</author><pubDate>Sun, 24 Mar 2013 09:02:01 GMT</pubDate><guid isPermaLink="false">New Post: How i can display the text below the barcode ?  20130324090201A</guid></item><item><title>New Post: Datamatrix support...</title><link>http://barcoderender.codeplex.com/discussions/405446</link><description>&lt;div style="line-height: normal;"&gt;I've used this barcode control for ssrs with DataMatrix support. It is able to &lt;a href="http://www.avapose.com/dotnet_barcode_reporting_service/datamatrix_generator.shtml" rel="nofollow"&gt;generate DataMatrix in SSRS&lt;/a&gt; as an integrated component!&lt;br /&gt;
&lt;/div&gt;</description><author>michmar1</author><pubDate>Wed, 13 Mar 2013 08:21:52 GMT</pubDate><guid isPermaLink="false">New Post: Datamatrix support... 20130313082152A</guid></item><item><title>New Post: Barcodes appear in preview of BIDS, but not when deployed..</title><link>http://barcoderender.codeplex.com/discussions/434725</link><description>&lt;div style="line-height: normal;"&gt;Within SSRS 2008r2, I have reporting services installed to a second instance of SQL on a secondary HD.  I am developing the report on the server within BIDS and the barcodes generate perfectly within preview.  When the report is deployed, however, the barcodes are missing.  I have copied the Zen.Barcode.Core.dll and Zen.Barcode.SSRS.dll into the ReportServer/Bin folder of the second instance without luck.  Any help would be greatly appreciated. Thanks, - Jon&lt;br /&gt;
&lt;/div&gt;</description><author>jonfehringer</author><pubDate>Wed, 27 Feb 2013 17:27:21 GMT</pubDate><guid isPermaLink="false">New Post: Barcodes appear in preview of BIDS, but not when deployed.. 20130227052721P</guid></item><item><title>New Post: Barcodes appear in preview of BIDS, but not when deployed..</title><link>http://barcoderender.codeplex.com/discussions/434725</link><description>&lt;div style="line-height: normal;"&gt;Within SSRS 2008r2, I have reporting services installed to a second instance of SQL on a secondary HD.  I am developing the report on the server within BIDS and the barcodes generate perfectly within preview.  When the report is deployed, however, the barcodes are missing.  I have copied the Zen.Barcode.Core.dll and Zen.Barcode.SSRS.dll into the ReportServer/Bin folder of the second instance without luck.  Any help would be greatly appreciated. Thanks, - Jon&lt;br /&gt;
&lt;/div&gt;</description><author>jonfehringer</author><pubDate>Wed, 27 Feb 2013 17:27:21 GMT</pubDate><guid isPermaLink="false">New Post: Barcodes appear in preview of BIDS, but not when deployed.. 20130227052721P</guid></item></channel></rss>