Imagine that there's no german-language satellite library for our application, and that we execute the following:
VB will just fallback to the neutral culture (e.g. "en-US") - and no any exception will be thrown! Besides, if we then execute the following line of code:
- we'll see "de-DE", although our GUI will be seen in American English!
I can't find a way to detect that this resource fallback happens. I need that because it'll be nice to react by requesting the missing satellite DLL from my application server, instead of silently switching to the neutral culture.
Any ideas?
Code:
My.Application.ChangeUICulture("de-DE")
Code:
MsgBox(My.Application.UICulture)
I can't find a way to detect that this resource fallback happens. I need that because it'll be nice to react by requesting the missing satellite DLL from my application server, instead of silently switching to the neutral culture.
Any ideas?