Ribbon Editbox Format Control

Paul Sansom

Board Regular
Joined
Jan 28, 2013
Messages
178
Office Version
  1. 2021
  2. 2016
Platform
  1. Windows
Hi
Is there a way to control the format of a Ribbon Editbox.
I want to display values all right aligned and to 3 decimal places?

My Editboxes are populating OK but the responses are all left aligned and no fixed decimal values

Cheers Paul
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
[Note: Remove the underscore (_) character from each occurrence of on_load in the following code.]

For your XML code, first make sure that you include an on_Load callback for your customUI tag, for example...


HTML:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" on_Load="on_Load">

Then, make sure that you add the getText and onChange callbacks for your edit box, for example...


HTML:
<editBox id="Editbox1" label="Editbox1" getText="Editbox1_getText" onChange="Editbox1_onChange"/>

Then, add the following VBA callback code to a regular module in your workbook...


Code:
Private myRibbon As IRibbonUI


Private textValue As String


Public Sub on_Load(ribbon As IRibbonUI)
'
' Code for on_Load callback. Ribbon control customUI
'
    Set myRibbon = ribbon
    textValue = ""
End Sub


Public Sub Editbox1_getText(control As IRibbonControl, ByRef returnedVal)
'
' Code for getText callback. Ribbon control editBox
'
    returnedVal = Format(textValue, "0.000") 'or Format(textValue, "#,##0.000")
End Sub


Public Sub Editbox1_onChange(control As IRibbonControl, Text As String)
'
' Code for onChange callback. Ribbon control editBox
'
    textValue = Text
    
    myRibbon.InvalidateControl control.ID
End Sub

To right-align text, try adding the appropriate spaces before your value. For example, to add 3 spaces before your value...

Code:
returnedVal = "   " & Format(textValue, "0.000")

Hope this helps!
 
Upvote 0
Many thanks

I am sure that
Code:
returnedVal = "   " & Format(textValue,"0.000"
is going to do it

As always great response...... Paul
 
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top