Error using QRCodeEncoder

Hi,

i've downloaded the QRCode Library. Now i'm compiling the sample app and when i try to encode the standard text to an Image i getting the following error:

IndexOutOfRangeException in QRCodeEncoder.cs - Line 778 (code see below)

while (i2 < maxDataCodewords)
{
rsTemp[rsBlockNumber][j] = codewords[i2];
j++;
if (j >= (rsBlockOrder[rsBlockNumber-1] & 0xFF) - rsEccCodewords) <-- HERE IS THE ERROR
{
j = 0;
rsBlockNumber++;
}
i2++;
}

can some one help me please :)

Another question at last, why is ther no compiled version of the dll ???

i am usin c# 2008 Express and sorry for my bad english

Coolzero