Как отключить юникод в visual studio 2019
Здравствуйте, yozhik89, Вы писали:
Y>Всем привет! У меня MFC dialog based application. Я хочу сделать так, чтобы оно правильно работало со строками в любой стране, тоесть хочу подключить поддержку UNICODE.
Y>Использую Visual Studio 6.0
как бе шестой студии под руками нет, проверить не получается. а почему бы не перейти на более свежую версию, менее глючную и более удобную?
Здравствуйте, yozhik89, Вы писали:
Y>Здравствуйте, fuyant, Вы писали:
F>>http://mihai-nita.net/2006/07/23/visual-studio-unicode-projects/
F>>как бе шестой студии под руками нет, проверить не получается. а почему бы не перейти на более свежую версию, менее глючную и более удобную?
Y>та же проблема:
Y>LINK : fatal error LNK1104: cannot open file "mfc42ud.lib"
Y>что ето может быть? я и оставля и удалял _MBCS — ефек тот же
вы уверены, что при установке студии вы не отключали юникодные библиотеки?
попробуйте переставить студию или просто скопируйте нужны файлы с установочного диска
Попробуйте перейти на более верное решение: qt-creator + qt
avalon 1.0rc3 rev 306, zlib 1.2.3 (17.12.2009 01:06:14 MSK +03:00)(Qt 4.6.0)
Всем привет! У меня MFC dialog based application. Я хочу сделать так, чтобы оно правильно работало со строками в любой стране, тоесть хочу подключить поддержку UNICODE.
Использую Visual Studio 6.0
Вот как я ето делаю:
1. Захожу в Project->Settings:
2. Вкладка С/С++,
Category: Preprocessor.
Preprocessor definitions: дописываю _UNICODЕ, UNICODE
3. Вкладка Linker
Category: Output: дописываю wWinMainCRT
4. Жму ОК.
Запускаю проект, компилятор выкидает ошибку:
LINK : fatal error LNK1104: cannot open file "mfc42ud.lib"
Когда убираю из настроек проекта все предыдущие шаги для поддержки юникода, то все запускаеться отлично. В чем может быть проблема?
Для проверки испльзую я анси или юникод версию проверяю вот так:
та же проблема:
LINK : fatal error LNK1104: cannot open file "mfc42ud.lib"
что ето может быть? я и оставля и удалял _MBCS — ефек тот же
Здравствуйте, Sheridan, Вы писали:
S>А почему именно студия? Почему именно МФЦ?
S>Попробуйте перейти на более верное решение: qt-creator + qt
Ето моя курсовая работа + тестовое задание на работу. И вопрос поставлен четко: только МФЦ или винапи. Только С++. И только студия 6.0
Приветствую, yozhik89, вы писали:
y> Ето моя курсовая работа + тестовое задание на работу. И вопрос поставлен четко: только МФЦ или винапи. Только С++. И только студия 6.0
avalon 1.0rc3 rev 306, zlib 1.2.3 (17.12.2009 01:06:14 MSK +03:00)(Qt 4.6.0)
Здравствуйте, fuyant, Вы писали:
F>вы уверены, что при установке студии вы не отключали юникодные библиотеки?
F>попробуйте переставить студию или просто скопируйте нужны файлы с установочного диска
Я пошарился еще по гуглу, и вот что я нашел: ето проблема при установке вижуал студии. Там нужно было включить возможность подключения Юникода в проекты. Нужно переустанавливать студию, или найти и скопировать файлы, отображенные в ниже написаной статье:
Adding Unicode libraries to Your system
Introduction
I have seen comments on this subject from people with the same problem I have had, "Link Error: can't find mfc42ud.lib". I found this article in MSDN Library, it resolves this issue.
MSDN Home > MSDN Library > Visual Tools and Languages > Visual Studio 6.0 > Visual C and C++ 6.0 >
Unicode Topics
Home | Overview | How Do I | Sample
On Windows NT platforms, MFC supports the Unicode standard for encoding wide characters. Unicode is not presently supported on Windows 95.
Note The Unicode versions of the MFC libraries are not copied to your hard drive unless you select them during a Custom installation. They are not copied during other types of installation. If you attempt to build or run an MFC Unicode application without the MFC Unicode files, you may get errors.
To copy the files to your hard drive, rerun Setup, choose Custom installation, clear all other components except "Microsoft Foundation Class Libraries," click the Details button, and select both "Static Library for Unicode" and "Shared Library for Unicode." Or, click "Select All".
The Unicode versions of the MFC libraries are described below:
Static Link Libraries
Release Debug Description
UAFXCW.lib,
.pdb UAFXCWD.lib,
.pdb Unicode MFC static link library
Dynamic Link Libraries
Release Debug Description
MFC42U.lib,
.dbg, def, .dll, .map, .pdb, .prf MFC42UD.lib,
.def, .dll, .map, .pdb Unicode MFC import library
(see notes below for explanation of file extensions)
MFCD42UD.lib,
.def, .dll, .map, .pdb Unicode MFC import library for database
MFCN42UD.lib,
.def, .dll, .map, .pdb Unicode MFC import library for network (sockets)
MFCO42UD.lib,
.def, .dll, .map, .pdb Unicode MFC DLL for Active technologies
MFCS42U.lib,
.pdb MFCS42UD.lib,
.pdb Unicode MFC import library containing code that must be statically linked in an application or DLL
Import library files have the extension (.lib).
Dynamic link library files have the extension (.dll).
Module definition (.def) files are text files that contain statements for defining an .exe or .dll.
Map (.map) files are text files that contain information that the linker uses when linking a program.
Library (.lib) files are used in conjunction with the DLL versions of MFC. These files contain code that must be statically linked in the application or DLL.
Program database (.pdb) files contain debugging and project state information.
Debug (.dbg) files contain information (COFF FPO, and CodeView) that the Visual C++ Debugger uses.
For detailed information on naming conventions, see Naming Conventions for MFC DLLs and Library Naming Conventions.
For information on using Unicode with MFC, see International Programming Topics and Strings: Unicode and Multibyte Character Set (MBCS) Support.
Manage Your Profile |Legal |Contact Us |MSDN Flash Newsletter
�2004 Microsoft Corporation. All rights reserved. Terms of Use |Privacy Statement
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
About the AuthorRoger65
Читайте также:
- При включении компьютера черный экран с надписями биос
- Как посмотреть html код письма в outlook
- Устранение проблем препятствующих установке или удалению программ windows 10
- Программа copy my data как перенести с телефона на телефон
- Имя x86 не распознано как имя командлета функции файла сценария или выполняемой программы