I want to define numeric textbox, but I want to paste to definition my InputMask
I'm trying:
Code: Select all
cMyFormat := "999 999.999"
@ 30,250 TEXTBOX T_Ilosc ;
Value 1 ;
NUMERIC ;
FONT "Arial" SIZE 9;
WIDTH 120 HEIGHT 20;
RIGHTALIGN ;
INPUTMASK cMyFormat
I've tried to use &cMyFormat
but it still causes errors.
I've tried with Format but witout good results, too.
Is it possible to change textbox' inputmask while application's running?
Marek