Skip to content

Latest commit

 

History

History
77 lines (63 loc) · 3.41 KB

File metadata and controls

77 lines (63 loc) · 3.41 KB
title String Editor | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
f1_keywords
vc.editors.string.F1
dev_langs
C++
helpviewer_keywords
String editor
string tables
string tables, String editor
string editing
string editing, string tables
resource editors, String editor
strings [C++], editing
ms.assetid f71ab8de-3068-4e29-8e28-5a33d18dd416
caps.latest.revision 15
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr

String Editor

A string table is a Windows resource that contains a list of IDs, values, and captions for all the strings of your application. For example, the status-bar prompts are located in the string table.

While developing an application, you can have several string tables — one for each language or condition. However, an executable module has only one string table. A running application can reference several string tables if you put the tables into different DLLs.

String tables make it easy to localize your application into different languages. If all strings are in a string table, you can localize the application by translating the strings (and other resources) without changing source code. This is usually more desirable than manually finding and replacing various strings in source files.

Using the String editor, you can:

For information on adding resources to managed projects (those that target the common language runtime), please see Resources in Desktop Apps in the .NET Framework Developer's Guide. For information on manually adding resource files to managed projects, accessing resources, displaying static resources, and assigning resources strings to properties, see Walkthrough: Localizing Windows Forms and Walkthrough: Using Resources for Localization with ASP.NET.

Requirements

Win32

See Also

Resource Editors
Strings
About Strings