Posts

Showing posts from January, 2011

KRENTO APLICACION PARA WINDOWS

Image

Code 39 barcode in C#

Some time ago I published the EAN 13 barcode generator source code. Now in addition to it made I simple Code 39 generator. using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; namespace Karna.Barcode { public class Code39 { static readonly string star = "*"; private Image image; private string barcodeId; private int width; private int height; public Code39(Image image) { this.image = image; this.width = 210; this.height = 146; } public int Width { get { return this.width; } set { this.width = value; } } public int Height { get { return this.height; } set { this.height = value; } } public string BarcodeId { get { return barcodeId; }

winapi - why is my Win32 gdi+ game unusably slow on Windows 7? - Stack Overflow

winapi - why is my Win32 gdi+ game unusably slow on Windows 7? - Stack Overflow

building libpng in visual studio 2008 « Bobobobo’s Weblog

building libpng in visual studio 2008 « Bobobobo’s Weblog