Jump to content

How to set TUniNumberEdit Zero Display blank


cyhong

Recommended Posts

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...