VBA "Skins"; VBA "Translations"

E

Ed

Are there any sources out there that

(1) provide skins to VBA user forms to allow a more 'modern' (textured,
'spiffy') look.

(2) allow on-the-fly language conversion capability for each msgbox or input
box that resides in my project?

Ed (in Virginia)
 
J

Jonathan West

Ed said:
Are there any sources out there that

(1) provide skins to VBA user forms to allow a more 'modern' (textured,
'spiffy') look.

No. Unless you colour the forms yourself, they follow the current Windows
colour scheme
(2) allow on-the-fly language conversion capability for each msgbox or
input box that resides in my project?

You would need to code that yourself. Not too hard to do, so long as you go
about it systematically from the beginning. In essence, you need a function
whose arguments are language and phrase ID, and whose return value is the
appropriate phrase in that langauge. You then use that function in place of
all string literals when doing message box and inputbox calls.
 
Top