cancel
Showing results for 
Search instead for 
Did you mean: 

Any method to mask the "Total" in the form of Delivery?

Former Member
0 Kudos

I have tried to create a picture box to mask the "Total" value (UI),when I resize the form , the picture box become transparent!!! Is it prossible to mask a field in the form using UI?

Accepted Solutions (1)

Accepted Solutions (1)

rasmuswulff_jensen
Active Contributor
0 Kudos

Just access the total textfield and make it visible = false;


oForm.Items.Item("29").Visible = false; //The field
oForm.Items.Item("30").Visible = false; //The label

If that doesn't work try setting the left property to something that will never come into view no matter how large you make the window... Something like this


oForm.Items.Item("29").Left = 5000; //The field
oForm.Items.Item("30").Visible = 5000; //The label

Former Member
0 Kudos

Thx~~~~

That's all what I need!!!

Answers (0)