how can I create input mask for invoice number for an example 07-08000-427 where 07-08000 is constant and 427 is changes.
I would like write only number who is changes.
how can I create input mask for invoice number for an example 07-08000-427 where 07-08000 is constant and 427 is changes.
I would like write only number who is changes.
Hi
You can put the first part on a label:
Expand|Select|Wrap|Line Numbers
InvoiceLabel.Caption = "07-08000-"
and place the label to the left of a textbox which you will use for the last three digits
how can I create input mask for invoice number for an example 07-08000-427 where 07-08000 is constant and 427 is changes.
I would like write only number who is changes.
Assuming tha last 3 digits are required, the exact Input Mask is: "07-08000-"000