Krento 2.0.956.28 release

Krento 2.0.956.28 is available for download from http://www.krento.net
This is bugs fixing release. More details is available on the Krento forum.

If you can't access krento.net site try another address: http://users.telenet.be/serhiy.perevoznyk/krento.html

Comments

  1. Hi I have a question to ask you

    How can we format a cell like make it bold or give a background color using his write cell function?

    public void WriteCell(int row, int col, string value)
    {
    ushort[] clData = { 0x0204, 0, 0, 0, 0, 0 };
    int iLen = value.Length;
    byte[] plainText = Encoding.ASCII.GetBytes(value);
    clData[1] = (ushort)(8 + iLen);
    clData[2] = (ushort)row;
    clData[3] = (ushort)col;
    clData[5] = (ushort)iLen;
    WriteUshortArray(clData);
    writer.Write(plainText);
    }

    Regarding you article...http://www.codeproject.com/KB/office/biffcsharp.aspx?msg=2968337

    Can you help???

    ReplyDelete
  2. Hi,

    I am planning to update the article and add some additional formating and colors support. I let you know when it will be available

    ReplyDelete
  3. That would be gr8. Pls let me know as I am eager to put this functionality in my application. Or if u can gv out any pointers tht would help too...

    ReplyDelete
  4. I updated the ExcelWriter library, you can download the new version

    ReplyDelete

Post a Comment

Popular posts from this blog

Quricol - QR code generator library

Smir - backup and restore Windows desktop icons position

EIDNative Library 2.0 released