all groups > dotnet internationalization > june 2007
Multi-byte characters?
Posted by Bob Altman at 6/23/2007 4:05:18 PM
If I create a new Win32 Console project (unmanaged C++, Visual Studio 2005),
and add the following to the main program:
// Add this above the main routine
#include <windows.h> // Add this at the top of the file
// Add this to the main routine
MessageBox(NULL, "A", "B", MB_OK);
... more >>
Constructor on type 'System.Windows.Forms.SplitterPanel' not found
Posted by Henry99 at 6/20/2007 12:58:03 AM
Hi there,
I've used Winres.exe already a couple of times successfully.
This time there is this error message:
Error - Failed to load the resource due to the following error:
System.MissingMethodException: Constructor on type
'System.Windows.Forms.SplitterPanel' not found.
at System.Run... more >>
Difficult internationalization problem to solve
Posted by UW at 6/15/2007 9:05:00 AM
I am working on internationalizing legacy VB component which was ported out to
VB.Net This code base is very old and it does something no body recommends
in the data service component. Changing the way it works is not an option
so no point discussing that here.
The problem is SQL quer... more >>
Check languages available for application
Posted by Michael Nesslinger at 6/8/2007 12:00:00 AM
I have an application that for now supports just two languages. Later
there will be more languages available. I need a way to check at runtime
what languages are available.
One quite time-consuming way would be to get all cultures and test for
each one if it is available. That leads to the ne... more >>
Switch language at runtime - best practice
Posted by Michael Nesslinger at 6/6/2007 5:27:15 PM
I have a desktop application that supports different languages via the
mechanism provided by the .Net Framework. I can choose the language when
starting the program or use the system language and all dialogs and
windows are displayed in the correct language. It worked fine for now.
But now i... more >>
Display leading zeros cultural setting in .Net framework
Posted by Edward Diener at 6/2/2007 12:44:32 PM
In the control panel applet for Regional and Language Options, under
Regional Options, in the Customize... dialog, Numbers tab, there is an
option for Display Leading Zeros. This is a setting related to a
particular culture ( which encapsulates a locale ID ) in dotnet, and a
particular loca... more >>
|