Forum: C++ Jul 7th, 2008 |
| Replies: 5 Views: 6,488 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... |
Forum: C++ Jul 4th, 2008 |
| Replies: 1 Views: 454 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... |
Forum: C++ Jun 29th, 2008 |
| Replies: 1 Views: 387 Below is the fragment of code from the boost library (http://www.boost.org)documentation:
#include <boost/assign/list_of.hpp> // for 'list_of()'
#include <boost/assert.hpp>
#include <list>... |
Forum: C++ Jun 29th, 2008 |
| Replies: 1 Views: 310 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... |
Forum: C++ Jun 15th, 2008 |
| Replies: 9 Views: 1,326 The Source Insight (http://www.sourceinsight.com/) can help in understand the meaning of each defined symbol, find references etc. It support C/C++ and can make this work faster. |
Forum: C Jun 12th, 2008 |
| Replies: 6 Views: 729 Do you mean this correction?
#include<stdio.h>
main()
{
int m,n,o;
m=5;
for(n=0;n<11;n=n+1)
{
o=m*n; |
Forum: C++ Jun 12th, 2008 |
| Replies: 7 Views: 2,988 The call vDirectories.at(nThreadNo) will return the reference to the element of the vector. If you will get it address &vDirectories.at(nThreadNo) and convert to the void pointer... |
Forum: C++ Jun 8th, 2008 |
| Replies: 4 Views: 436 Hello,
At the site http://wascana.sourceforge.net/ there is the C++ compiler for Windows (MinGw) and Integrated Development Environment (Eclipse) packed in a single package. Download link... |