Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
2k views

Where do Java and .NET string literals reside?

A recent question about string literals in .NET caught my eye. I know that string literals are interned so that different strings with the same value refer to the same object. I also know that a ...
6
votes
3answers
201 views

printf() debugging library using string table “decoder ring”

I'm writing to see if any of you have ever seen or heard of an implementation of the idea I'm about to describe. I'm interested in developing a printf-style debugging library for an embedded target. ...
2
votes
1answer
55 views

Any Working code for cross platform message catalog without having to duplicate the message strings?

On linux, gencat works beautifully with .msg file with gencat, catopen, catgets and catclose On Windows, mc or rc file's stringtable works beautifully with LoadString. Just wondering if there is any ...
2
votes
2answers
94 views

Can I bind my HTML elements' text to an object of strings?

I'm making a web application using jQuery. All the elements of the web applications are created using jQuery (var $header = $("<div>");). I already have an object called stringtables where I ...
1
vote
2answers
60 views

VC++ 10 MFC: What is the correct way to do localization

I am a .NET guy who is having to do some work on an MFC app. The app is a VS2008 MFC executable which I have converted to VS2010. The original developers did localisation by specifying the name of a ...
0
votes
2answers
674 views

Windows Form with String Table

I have Normal Windows Form (WinForm) C# (.Net 3.5) application, this application has label with text and menus and etc... also this application display sometimes Message Boxes to the user, and write ...