Question: How can I display a number without a decimal point in SalesLogix?
Answer: The best way to achieve this is to:
– Use a Text control (or a label, but not the Numeric Control)
– On the Binding, add a Formatting string and use the following one: “#,##0”
E.g.:
WebEntityBinding myCtrlBinding = new WebEntityBinding(“MyNumber”, myControl, “Text”, “{0:#,##0}”, “0”);



