I have the below input mask which take in the date format: 21/10/98
00/00/00;0;_
But i need to be in the below format : 21/10 (without year)
This syntax of input mask shown below
00/00;0;_
is not giving the right answer.
Please help
More clarification:
If we right click on the text box of vba form and take the input mask property. there is option to fill input mask which will mask the input in particular format. If i put the above code 00/00/00;0;_ now it will take DD/MM/YY format but i donot want year so i put 00/00;0;_ , but its still taking year.. this is my problem