cyhong Posted January 3, 2017 Posted January 3, 2017 I need to when TUniNumberEdit value is 0 display blank,thanks Quote
mhmda Posted January 3, 2017 Posted January 3, 2017 A server side solution: procedure TMainForm.UniNumberEdit1Change(Sender: TObject); begin if SameText(UniNumberEdit1.Text,'0') then UniNumberEdit1.Text:=''; end; You can also implement this in ClientSide using client side events. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.