Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for jov0708

I want to compile a Visual C++ project made by another person and then the following error appears: LINK : fatal error LNK1104: cannot open file "uafxcw.lib" What may be the cause of this problem and any suggestions on solving it? Thanks. Jov Edit/Delete Message

Member Avatar for Nick Evan
0
151
Member Avatar for jov0708

i would like to copy the contents of a byte array to a long variable. my code looks like this: [code] long key = 0; for (i = 0; i < 8; i++) { key <<= 8; key |= (long)(buffer[i]); //<- this line causes the problem }[/code] however, when i …

Member Avatar for TimeFractal
0
1K
Member Avatar for jov0708

i wrote a code to get hard disk info and used FindFirstVolume(). however, the console-based application was ok but when i made an MFC application doing the same thing, it did not compile correctly. i think the problem is with my redeclaration of _WIN32_WINNT in the MFC application. this is …

Member Avatar for jov0708
0
495