visual-c++-2008-express

Version resource in DLL not visible with right-click

谁说我不能喝 提交于 2019-12-28 15:26:39
问题 I'm trying to do something which is very easy to do in the regular MSVC, but not supported easily in VC++ Express. There is no resource editor in VC++ Express. So I added a file named version.rc into my DLL project. The file has the below content, which is compiled by the resource compiler and added to the final DLL. This resource is viewable in the DLL using reshacker, though not when right-clicking the DLL in Windows Explorer. What is missing from my RC file to make it appear when right

Version resource in DLL not visible with right-click

丶灬走出姿态 提交于 2019-12-28 15:25:05
问题 I'm trying to do something which is very easy to do in the regular MSVC, but not supported easily in VC++ Express. There is no resource editor in VC++ Express. So I added a file named version.rc into my DLL project. The file has the below content, which is compiled by the resource compiler and added to the final DLL. This resource is viewable in the DLL using reshacker, though not when right-clicking the DLL in Windows Explorer. What is missing from my RC file to make it appear when right

Conditional Debug on Visual C++ 2008 Express

跟風遠走 提交于 2019-12-11 12:51:41
问题 Is there a way to debug code on Visual C++ 2008 Express, such as I can watch a variable for certain value(s) and, when it assumes this value, to break? For instance, I want to break when x becomes 5 . In gdb I would set a breakpoint then a condition that x == 5 . How can I do it (if possible) on Visual C++ 2008 Express? 回答1: Although built in support for it is missing in the express editions, there is another way around it. I found this on another answer for a similar question. #if DEBUG if(

cannot compile allegro using visual c++

南楼画角 提交于 2019-12-11 00:32:40
问题 I just downloaded the allegro library I make a new empty project then add a source file I add this line of code: #include <allegro.h> I compile and get the following error: c:\allegro\include\allegro5\internal\alconfig.h(28) : fatal error C1083: Cannot open include file: 'allegro5/platform/alplatf.h': No such file or directory so I go into alconfig.h and change: #include "allegro5/platform/alplatf.h" to: #include "../../allegro5/platform/alplatf.h.cmake" it now gives me this error: c:\allegro

Cannot Open File atls.lib

て烟熏妆下的殇ゞ 提交于 2019-12-07 04:56:42
问题 I have atls.lib in my hard drive, but I can't link it into my Visual Studio project. I know that atls.lib is an ATL specific library file, and I have all the ATL files/headers/libraries. However, I still can't link them. LINK : fatal error LNK1104: cannot open file 'atls.lib' Can anyone help a helpless programmer? Thank you very much. 回答1: It seems that the library directory has not been added. In Project Properties, Linker, General options, add the directory where atls.lib resides to the

Cannot Open File atls.lib

ぃ、小莉子 提交于 2019-12-05 09:11:52
I have atls.lib in my hard drive, but I can't link it into my Visual Studio project. I know that atls.lib is an ATL specific library file, and I have all the ATL files/headers/libraries. However, I still can't link them. LINK : fatal error LNK1104: cannot open file 'atls.lib' Can anyone help a helpless programmer? Thank you very much. It seems that the library directory has not been added. In Project Properties, Linker, General options, add the directory where atls.lib resides to the Additional Library Directories field. In my case the problem was missing ATL/MFC libraries for x64, I had to

C++ FTP Library? [closed]

南笙酒味 提交于 2019-11-29 20:28:48
I am looking for an FTP Library for C++ to do basic ftp functions like authenticate, change directory, upload files, etc. but I can't seem to find one. I've searched over Google, Sourceforge, and CodeProject (well, there's one complete FTP CLIENT project for Win95 in CodeProject, however I don't need the entire ftp client..), but I only found C# FTP libraries. Could you guys please suggest me a good one? or maybe an alternative? Thanks. fyi: Microsoft Visual C++ 2008 Express Edition is my only IDE, and I prefer precompiled static library (*.lib) that can be statically linked (if any) drowneath