Day: February 23, 2007

  • Getting closer to 1.0

    Today I corrected a bunch of remaining issues with LogonSwitcher. The logon preview now shows the password box correctly, the main logon list has better looking borders, etc. I tested a little bit more under VPC to make sure it applies a full logon (not only a new background) I also added some new logons using nice…

  • Updating resources files with BMP and PNG files (with managed code)

    This only concerns Bitmap resources (RT_BITMAP). Updating others type of resources is easier and doesn’t require specific code. BMP files Inserting BMP files is quite easy. You only have to remove the header and you are good to go. int BMP_HEADER_BYTES = 14; FileStream stream = new FileStream(file,   FileMode.Open, FileAccess.Read, FileShare.Read); BinaryReader reader =…