Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #25.0K
Ranked #3K
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 7
c x 1

8 Posted Topics

Member Avatar for integer*09

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 …

Member Avatar for shijobaby
0
771
Member Avatar for Prathvi

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.

Member Avatar for writem
0
73
Member Avatar for adarshcu

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 …

Member Avatar for writem
0
119
Member Avatar for FTProtocol

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 …

Member Avatar for writem
0
69
Member Avatar for phalaris_trip

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.

Member Avatar for TacklesMcCaw
0
395
Member Avatar for Cybulski

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 …

Member Avatar for Cybulski
0
880
Member Avatar for awi123

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]

Member Avatar for Aia
0
112
Member Avatar for sameeha

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].

Member Avatar for m4design
0
118

The End.