Click here to Skip to main content
15,915,093 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Translation Pin
David Crow11-Jun-03 4:22
David Crow11-Jun-03 4:22 
GeneralRe: Translation Pin
sardinka11-Jun-03 5:09
sardinka11-Jun-03 5:09 
GeneralRe: Translation Pin
David Crow11-Jun-03 5:29
David Crow11-Jun-03 5:29 
GeneralRe: Translation Pin
sardinka11-Jun-03 6:06
sardinka11-Jun-03 6:06 
GeneralRe: Translation Pin
David Crow11-Jun-03 7:39
David Crow11-Jun-03 7:39 
General__pctype & ___mb_cur_max Pin
Andrew Hoole9-Jun-03 6:00
Andrew Hoole9-Jun-03 6:00 
GeneralRe: __pctype & ___mb_cur_max Pin
Joaquín M López Muñoz9-Jun-03 7:47
Joaquín M López Muñoz9-Jun-03 7:47 
GeneralRe: __pctype & ___mb_cur_max Pin
Sardaukar9-Jun-03 21:58
Sardaukar9-Jun-03 21:58 
If all this is in V6... I don't know settings in V7, then:

Probably you have checked in project settings "Ignore default libraries". Try to add in libraries section libcd.lib (for debug builds) or libc.lib (release).

The best way to detect such missing link symbols - at least for me - is to copy the offending symbol name, modify project settings to:

- uncheck "Ignore default libraries"
- check in Link --> Customize --> Print Progress messages

and rebuild all.

The linked with produce a verbose output wher you can search for the symbol. Usually, it will look like this:

[Unsuccesful build]
xxxxxxxx.obj : error LNK2001: unresolved external symbol _yyyyyyy

[Rebuild with ignore default lib. off]
Searching <your-lib-path>\<libname>.lib:
Found __yyyyyyy
Referenced in xxxxxxxx.obj
Loaded DDDDDDDD.lib(DDDDDDDD.dll)

Now you see that the missing lib is DDDDDDDD.lib; put back your project settings, add the new lib to Link section and rebuild.

Usual trap libraries:
- CRT: libc.lib (C), libcp.lib (C++), libcmt.lib (C multithread), libcpmt.lib (C++ MT)
- msvcrt.lib
(add a 'd' for debug builds, so Release uses libc.lib, Debug uses libcd.lib etc.)

- COM support classes (_com_error) in comsupp.lib
- Common dialogs in commdlg32.lib
- shell API (shlwapi.lib)

just to point some of (my Smile | :) ) usual mistakes.
GeneralNetWork Diagram in View Pin
sulaxan9-Jun-03 5:47
sulaxan9-Jun-03 5:47 
GeneralJustifying text Pin
Anonymous9-Jun-03 5:41
Anonymous9-Jun-03 5:41 
GeneralRe: Justifying text Pin
AparnaBollapalli31-Oct-09 23:47
AparnaBollapalli31-Oct-09 23:47 
Generalsize of integer and pointer on a machine Pin
Omar Alvi9-Jun-03 4:51
Omar Alvi9-Jun-03 4:51 
GeneralRe: size of integer and pointer on a machine Pin
valikac9-Jun-03 6:33
valikac9-Jun-03 6:33 
GeneralRe: size of integer and pointer on a machine Pin
Omar Alvi9-Jun-03 18:40
Omar Alvi9-Jun-03 18:40 
GeneralRe: size of integer and pointer on a machine Pin
valikac9-Jun-03 18:51
valikac9-Jun-03 18:51 
GeneralRe: size of integer and pointer on a machine Pin
Omar Alvi9-Jun-03 19:18
Omar Alvi9-Jun-03 19:18 
GeneralRe: size of integer and pointer on a machine Pin
Ryan Binns9-Jun-03 23:15
Ryan Binns9-Jun-03 23:15 
GeneralPanning -Zooming-Centering 2d shapes Pin
ninpo9-Jun-03 4:50
ninpo9-Jun-03 4:50 
QuestionHow to import the addressbook of the Cuteftp to my program? Pin
kindows9-Jun-03 4:38
kindows9-Jun-03 4:38 
QuestionWhich API can set a image file as wallpaper? Pin
white jungle9-Jun-03 4:35
white jungle9-Jun-03 4:35 
AnswerRe: Which API can set a image file as wallpaper? Pin
Ryan Binns9-Jun-03 4:43
Ryan Binns9-Jun-03 4:43 
AnswerRe: Which API can set a image file as wallpaper? Pin
kindows9-Jun-03 4:44
kindows9-Jun-03 4:44 
AnswerRe: Which API can set a image file as wallpaper? Pin
Sardaukar9-Jun-03 22:02
Sardaukar9-Jun-03 22:02 
GeneralBasic understanding question... Pin
CherezZaboro9-Jun-03 4:32
CherezZaboro9-Jun-03 4:32 
GeneralRe: Basic understanding question... Pin
valikac9-Jun-03 6:35
valikac9-Jun-03 6:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.