| bio | website | hexadigm.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 9 months |
| seen | 29 mins ago | |
| stats | profile views | 82 |
I'm the author of TranSolution, a localization product for Microsoft Visual Studio developers. My product makes the job of translating your ".resx" files extremely easy. See http://www.hexadigm.com for complete details. If you want to know a little more about me personally, see the "About Us" page on my site.
|
Mar 5 |
answered | .NET WinForms localization - replacing ComponentResourceManager |
|
Jan 22 |
comment |
.NET localization tools Ok, np. A new version will be released very shortly however, with some new features in the translator's version. Contact me directly if you prefer to test with the beta release, since this version will soon replace the existing version. Any further issues should be discussed offline (since this isn't the appropriate place). |
|
Jan 22 |
answered | .NET localization tools |
|
Jan 19 |
awarded | Yearling |
|
Jan 18 |
answered | Reset control positions after localization |
|
Oct 30 |
comment |
Localization in Visual Studio 2008: What's my mistake? Just as I thought. Glad things are working again. |
|
Oct 30 |
answered | Localization in Visual Studio 2008: What's my mistake? |
|
Sep 19 |
answered | What is the standard way to name a file based on CultureInfo? |
|
Sep 17 |
comment |
What do I do with translated .Resx files for localization? It's based on the current value of "System.Threading.Thread.CurrentThread.CurrentUICulture". If you want to take this offline and email me at support@hexadigm.com, I can send you a longer explanation. It's was already pre-written (for a customer of mine) but because there are a couple of references to my own commercial localization app (nothing promotional though - it answers what you're asking), I don't want to post it here in case it gets red-flagged as inappropriate. |
|
Aug 17 |
comment |
Visual Studio 2010 doesn't generate Resource (Resx) designer code if file is localized NP. Note (FYI only) that you can also use the "Resources.Resx" file that's automatically created under the "Properties" folder. If you don't see it, then right-click the project in Solution Explorer, select "Properties" and take a look at the "Resources" tab in the resulting window (running down the left-hand side). |
|
Aug 17 |
comment |
Visual Studio 2010 doesn't generate Resource (Resx) designer code if file is localized Ok, try it the way I described however and it should work. |
|
Aug 17 |
answered | Visual Studio 2010 doesn't generate Resource (Resx) designer code if file is localized |
|
Jul 20 |
comment |
Which C++ IDE vendor for Server and clients GUI application? @user1092875 Well, FWIW, the native MSFT tools for unmanaged C++ are mostly old now but they still work of course. "Old" doesn't always equate to "inferior" but things are much easier in the modern world of .NET. I'm a C++ veteran, and believe me, .NET and C# are the easier and safer way to go for the typical application. The biggest problem with C++ and the older tools in general is that they're highly-prone to errors unless you're very experienced. Most companies who choose to use it are asking for a lot of (expensive) trouble so make sure you really need it before going down this avenue. |
|
Jul 20 |
comment |
C : Pointer for two dimension array @Malcom Ok, I see now. I didn't make the connection at first but it would still be (very) surprising to discover it's not sound. While dirty IMHO (for real-world code), it should nevertheless work based on everything I've ever read. The op can consult my own post here if they want to know how to pass the array's size in: stackoverflow.com/questions/9672731/… |
|
Jul 20 |
comment |
Which C++ IDE vendor for Server and clients GUI application? @user1092875 That will work but there's something seriously wrong with this picture. The powers that be are forcing you to use C++ but they're then leaving it to developers such as yourself to figure out which tools to use. What's the rationale behind this so-called "business decision" if they don't understand what technology should even be used for their own project. Relying on the feedback here is dangerous since nobody knows what your requirements are. |
|
Jul 20 |
comment |
C : Pointer for two dimension array @SteveJessop Do you have a link to James' post on that issue. It surprises me, since most would agree with you that "data2D[0]" is correct (or so most have been taught, since it returns an array of integers and like any array, it decays into a pointer to its first element, an "int") |
|
Jul 13 |
answered | Compiler error when using typedefs, multidimensional arrays, and pointers |
|
Jul 10 |
awarded | Commentator |
|
Jul 10 |
comment |
What does the explicit keyword in C++ mean? Just an FYI that when calling "print(3)" in your example, the function needs to be "print(const MyString &"). The "const" is mandatory here because 3 is converted to a temporary "MyString" object and you can't bind a temporary to a reference unless it's "const" (yet another in a long list of C++ gotchas) |
|
Jun 27 |
answered | C# Forms App Localization |