|
import library What you are describing is a system configuration issue. In other words, you're source code is dependent on some 3rd party library that is installed on the system. Since that is the case, you don't want to reference it from your project settings because that would mean hard-coding an absolute search path into... 30 May 2008 20:32
C++ application: Access to Excel Hi I have a C++ application and don't use MFC! I like to have access to an Excel document (open the document and read the value of cells). - How can I do that? - Is that possible? - I have found the sample's with MFC. Is there also a possibility without MFC? Thanks. Regards Hans ... 30 May 2008 11:07
Multi line macro I need some help with a multi-line macro that converts milliseconds to system clock ticks. The formula (hope the view is OK) reduces to N x T / 1000 where N is milliseconds desired and T is ticks per second. If the result is zero ( the product of N x T is less than 1000) I need it to be changed to 1. The followin... 30 May 2008 15:49
How to get the memory usage of a process Hi, I want to get the memory usage (both physical and virtual) and handle usage of my application. Is there any API function to achieve this? I tried with GetProcessMemoryInfo(), but it gives only the PagefileUsage. Is this is same as virtual memory size? Does anybody know how windows task manger shows all t... 30 May 2008 06:12
wizard won't allow out and retval argument types When I add a method to an interface in an ATL project, I am not allowed to select the out and retval checkboxes to create those types of arguments. They are grayed out. Why is that? Can someone give me an explanation? Daniel ... 30 May 2008 02:38
show disassembly Hi, I was debugging the below code step by step: ---------------------------------------------------------------------------- #include <iostream> using namespace std; void main(void) { int myArray[7]={6,3,5,7,1,2,4}; int sizeOfArray; sizeOfArray=sizeof(myArray)/sizeof(int); int * mySortedArray; my... 31 May 2008 12:29
nested private class with custom operator delete Hi! Compiling the code below I've got such diagnostic: C:\App>cl cl15.cpp Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86 Copyright (C) Microsoft Corporation. All rights reserved. cl15.cpp cl15.cpp(5) : error C2248: 'A::B' : cannot access private class declared in class 'A... 29 May 2008 17:27
set_terminate handler for uncaught exception in MSDEV Dear experts, Is it a standard behavior that set_terminate handler function gets called if an exception is thrown and not caught anywhere in the program? I am using VS2005. I installed a handler in set_terminate() to keep track of crashes and normal termination. If the handler function is the part of exe ... 29 May 2008 13:51
Can i get certifications details on vc++ Hi I am looking for writing certifications on vc++ is there any certifications exists on vs2005 Please if any one know the details let me know the details. Thanks and regards Ravaishanker Maduri Hyderabad,AP,India ... 29 May 2008 05:57
SET data structure in mfc sorry for my previous post. plese ignore that. Hi all, I have mfc application. I cannot user set container class. It gave thousands of warnings. what is similar class for std::set in MFC? Can I use cmapwordtoptr for this? Requirement: I just want to store integers, and fast retrieving. It should ... 29 May 2008 04:23 |