Archive: License Key Multi Window - how to?


License Key Multi Window - how to?
I'm designing using MUI and I have a need for custom window that prompts for license key. I would like to do the multiple window look (a window for each char of a key) and once they enter a single char in a window it would auto tab to the next window. Window's installer and other do this.

Looking for ideas and examples on how to do this, if it's doable using NSIS.

Thanks in Advance..


http://nsis.sf.net/File:PassDialog.zip

Stu


Thanks. I actually have it all written and working except for the tabbing feature, where it will auto tab to the next window when a charactoer is entered. I looked at the PassDialog code and implementing this functionality didn't jump out.
Since I have my version working, it would be nice to go with that. If someone can show me how to do the auto-tabbing functionality, that would be great.
But I also understand not re-inviting the wheel also :)


if you're already getting notifications whenever the user enters a character, then you can just check the number of characters entered and if it matches the amount required for the field, then send a a WM_SETFOCUS message to the next control?


PassDialog already does that. You enter the right number of characters and it jumps to the next box.

Stu


Thanks, works great!!!