digitaldrew
Well-known member
- Joined
- Nov 10, 2012
- Messages
- 167
- Programming Experience
- Beginner
From my understanding, globalizing your VB application should convert times and dates in other countries to whichever country you specify in the Culture Info. Is this not correct?
I've got the following lines located in my Form1_Load..But it doesn't seam like the cultureinfo is actually being set. Is there some way I can verify this or is there something I'm doing wrong?
I've got the following lines located in my Form1_Load..But it doesn't seam like the cultureinfo is actually being set. Is there some way I can verify this or is there something I'm doing wrong?
VB.NET:
'=========================Line Needed To Globalize App============================
Thread.CurrentThread.CurrentCulture = New Globalization.CultureInfo("en-US")
Thread.CurrentThread.CurrentUICulture = New Globalization.CultureInfo("en-US")
'=================================================================================