property Expression.FormatNumbers as String
Specifies the HTML format that's applied to numbers.

TypeDescription
String A string expression that defines the HTML expression being used when control displays numbers.  
By default, the FormatNumbers property is "<fgcolor=000080> </fgcolor>". By default the numbers get colored in blue. Use the FormatNumbers to define the appearance for the numbers in the control. If the FormatNumbers property is empty no format is applied to numbers in the control. 

You can use any of the following properties to format:

The FormatNumbers supports the following HTML tags: 

The following sample shows how you can show the numbers in bold:

VBA (MS Access, Excell...)

With Expression1
	.FormatNumbers = "<b> </b>"
	.Expression = "value + 100"
End With

VB6

With Expression1
	.FormatNumbers = "<b> </b>"
	.Expression = "value + 100"
End With

VB.NET

With Expression1
	.FormatNumbers = "<b> </b>"
	.Expression = "value + 100"
End With

VB.NET for /COM

With AxExpression1
	.FormatNumbers = "<b> </b>"
	.Expression = "value + 100"
End With

C++

/*
	Copy and paste the following directives to your header file as
	it defines the namespace 'EXPRESSIONLib' for the library: 'Expression 1.0 Control Library'

	#import <Expression.dll>
	using namespace EXPRESSIONLib;
*/
EXPRESSIONLib::IExpressionPtr spExpression1 = GetDlgItem(IDC_EXPRESSION1)->GetControlUnknown();
spExpression1->PutFormatNumbers(L"<b> </b>");
spExpression1->PutExpression(L"value + 100");

C++ Builder

Expression1->FormatNumbers = L"<b> </b>";
Expression1->Expression = L"value + 100";

C#

expression1.FormatNumbers = "<b> </b>";
expression1.Expression = "value + 100";

JScript/JavaScript

<BODY onload="Init()">
<OBJECT CLASSID="clsid:B33F5489-49AC-4155-98E7-9BBFC57FF019" id="Expression1"></OBJECT>

<SCRIPT LANGUAGE="JScript">
function Init()
{
	Expression1.FormatNumbers = "<b> </b>";
	Expression1.Expression = "value + 100";
}
</SCRIPT>
</BODY>

VBScript

<BODY onload="Init()">
<OBJECT CLASSID="clsid:B33F5489-49AC-4155-98E7-9BBFC57FF019" id="Expression1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Expression1
		.FormatNumbers = "<b> </b>"
		.Expression = "value + 100"
	End With
End Function
</SCRIPT>
</BODY>

C# for /COM

axExpression1.FormatNumbers = "<b> </b>";
axExpression1.Expression = "value + 100";

X++ (Dynamics Ax 2009)

public void init()
{
	;

	super();

	expression1.FormatNumbers("<b> </b>");
	expression1.Expression("value + 100");
}

Delphi 8 (.NET only)

with AxExpression1 do
begin
	FormatNumbers := '<b> </b>';
	Expression := 'value + 100';
end

Delphi (standard)

with Expression1 do
begin
	FormatNumbers := '<b> </b>';
	Expression := 'value + 100';
end

VFP

with thisform.Expression1
	.FormatNumbers = "<b> </b>"
	.Expression = "value + 100"
endwith

dBASE Plus

local oExpression

oExpression = form.EXPRESSIONACTIVEXCONTROL1.nativeObject
oExpression.FormatNumbers = "<b> </b>"
oExpression.Expression = "value + 100"

XBasic (Alpha Five)

Dim oExpression as P

oExpression = topparent:CONTROL_ACTIVEX1.activex
oExpression.FormatNumbers = "<b> </b>"
oExpression.Expression = "value + 100"

Visual Objects


oDCOCX_Exontrol1:FormatNumbers := "<b> </b>"
oDCOCX_Exontrol1:Expression := "value + 100"

PowerBuilder

OleObject oExpression

oExpression = ole_1.Object
oExpression.FormatNumbers = "<b> </b>"
oExpression.Expression = "value + 100"

Visual DataFlex

Procedure OnCreate
	Forward Send OnCreate
	Set ComFormatNumbers to "<b> </b>"
	Set ComExpression to "value + 100"
End_Procedure

XBase++

#include "AppEvent.ch"
#include "ActiveX.ch"

PROCEDURE Main
 	LOCAL oForm
	LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
	LOCAL oExpression

	oForm := XbpDialog():new( AppDesktop() )
	oForm:drawingArea:clipChildren := .T.
	oForm:create( ,,{100,100}, {640,480},, .F. )
	oForm:close  := {|| PostAppEvent( xbeP_Quit )}

	oExpression := XbpActiveXControl():new( oForm:drawingArea )
	oExpression:CLSID  := "Exontrol.Expression.1" /*{B33F5489-49AC-4155-98E7-9BBFC57FF019}*/
	oExpression:create(,, {10,60},{610,370} )

		oExpression:FormatNumbers := "<b> </b>"
		oExpression:Expression := "value + 100"

	oForm:Show()
	DO WHILE nEvent != xbeP_Quit
		nEvent := AppEvent( @mp1, @mp2, @oXbp )
		oXbp:handleEvent( nEvent, mp1, mp2 )
	ENDDO 
RETURN