Userform UI Language Customization

yinkajewole

Active Member
Joined
Nov 23, 2018
Messages
281
I have some userforms created in English, how do I code it such that using an option button, I can switch / change all the text to another language?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
There is no simple option. You'd have to create a table of the correct text for each control so that you can switch between them.
 
Upvote 0
I mean that you will need a list of the controls and what their text should be.
 
Upvote 0
No, not really.

If you make a list in a two column range with the control name in the first column and the text you want in the next column, then you need a loop something like this:

Code:
for each cell in range("A2:A10")
me.control(cell.value).caption = cell.offset(, 1).Value
next

If you have different types of controls (I've assumed labels and buttons) you'd need to adjust for that.
 
Upvote 0
can't the text be extracted from a text file instead of worksheet?
by the way, how do I address those ones in the msgbox?
 
Upvote 0
Yes it can, it just makes the code more complicated.

You'll have to deal with those individually.
 
Upvote 0
Again, no. I'm afraid that's above and beyond the kind of thing I do on forums like this, as I don't have that kind of time.
 
Upvote 0

Forum statistics

Threads
1,214,534
Messages
6,120,084
Members
448,943
Latest member
sharmarick

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