How to update CurrencyEdit popup size based on its Font size?
In CurrencyEdit control, it is possible to update its Popup size based on Font size.
Following code examples demonstrates the same.
C#
//Update CurrencyEdit popup based on Font size
this.currencyEdit1.Font = new Font("Microsoft Sans Serif", 12);
VB
'Update CurrencyEdit popup based on Font size
Me.currencyEdit1.Font = New Font("Microsoft Sans Serif", 12)

Figure 1. Update CurrencyEdit Popup size based on Font size with image.
Sample Links:
C#:How to update CurrencyEdit popup size based on Font size C#
VB: How to update CurrencyEdit popup size based on Font size VB