Hi -- I know that I can get the month name for a date, e.g.:

Dim myMonth As String = MonthName(Month(myDate))

which gives me January, February, etc.

What I need is to *also* get the month name in French, for a bilingual app I'm working on. Note that the app decides the language to display based on values supplied to the program, not the current locale settings.

Is there a simple, canned way to do this or should I use a lookup array for the month names? Or, something else?