- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
8 Posted Topics
Re: On the folder "C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\vcredist_x86" on the PC with installed Visual Studio 8 placed the file "vcredist_x86.exe" (for VS 2008 installation there are similar redistributable package). Sometimes running this installer on the machine without installed development environment can bring better results than copying the required MFC and … | |
Re: Most likely the 'work number' for the contact can be obtained by methods 'get_BusinessTelephoneNumber' or 'get_Business2TelephoneNumber' of the object with the 'IContact' interface. You can try corresponding 'put_***' methods to verify the approach. | |
Re: Below is the fragment of code from the [URL="http://www.boost.org"]boost library [/URL]documentation: [CODE]#include <boost/assign/list_of.hpp> // for 'list_of()' #include <boost/assert.hpp> #include <list> #include <stack> #include <string> using namespace std; using namespace boost::assign; // bring 'list_of()' into scope { const list<int> primes = list_of(2)(3)(5)(7)(11); BOOST_ASSERT( primes.size() == 5 ); BOOST_ASSERT( primes.back() == 11 … | |
Re: If you will search the MSDN for the phrase "Windows Messenger Client Reference" you will get a list interfaces to communicate with the MSN messenger. Most likely you will need to get an instance of the "Messenger" object from the function "CoCreateInstance". The Messenger object will provide you the way … | |
Re: The [URL="http://www.sourceinsight.com/"]Source Insight[/URL] can help in understand the meaning of each defined symbol, find references etc. It support C/C++ and can make this work faster. | |
Re: The call [CODE]vDirectories.at(nThreadNo)[/CODE] will return the reference to the element of the vector. If you will get it address [CODE]&vDirectories.at(nThreadNo)[/CODE] and convert to the void pointer [CODE](void*)&vDirectories.at(nThreadNo)[/CODE] the call should be accepted by the compiler. You can convert the passed pointer back in the thread function [CODE] DWORD WINAPI MultiReader::ReaderThread(LPVOID … | |
Re: Do you mean this correction? [CODE]#include<stdio.h> main() { [INDENT]int m,n,o; m=5; for(n=0;n<11;n=n+1) { [INDENT]o=m*n; printf("Multiples of %d and %d are %d",m,n,o);[/INDENT] }[/INDENT] }[/CODE] | |
Re: Hello, At the site [URL="http://wascana.sourceforge.net/"]http://wascana.sourceforge.net/[/URL] there is the C++ compiler for Windows (MinGw) and Integrated Development Environment (Eclipse) packed in a single package. [URL="http://sourceforge.net/project/showfiles.php?group_id=199497"]Download link[/URL]. |
The End.