PDA

View Full Version : Help with dialog action, please


cpell
12-25-2005, 11:24 PM
I have a problem with dialog action.

When i write this action in onclick botton:

result = Dialog.MaskedInput("Serial", " ", "235A3-0B012-29533571", "", MB_ICONINFORMATION, " ");


The dialog show me 235 3-0B012-29533571 without A, i dont know why is that result, if i write "235a3-0B012-29533571" all is ok, but i need 235A3-0B012-29533571

Could you help with this problem?

Thanks!!!

yosik
12-26-2005, 12:20 AM
From the help file:

Input Mask
A
Alphanumeric character (0-9 and a-Z). For every A in the input mask, the user will be able to enter any letter from a to Z or any digit between 0 and 9. To display a literal "A", use \A instead.

Hope that helps

Yossi

Corey
12-26-2005, 12:24 AM
Nice. Thanks Yossi. :yes