Software Development Network Logo
  • Smart Device
  • Architecture
  • SQL Server
  • Visual Studio
  • .NET Development
  • Visual J#
  • Windows Vista
  • VS Team System
  • Visual C#
  • Microsoft ISV
  • Game Technologies
  • Visual FoxPro
  • Visual Basic
  • VS Express Editions
  • Windows Forms

Software Development Network >> Visual C++

Visual C++

New Question

Creating views for static splitter
RegularExpressions namespace seems to have moved in VC 2005
From CImage object to Bitmap object
Question about CString::find()
Visual C++ 2005 express and PSDK instalation
Thread safety and atomicity of byte operations
GDI Plus
problem having vc7.1 and vc 8.0 express on same machine
Interesting little problem
Integer to Bit conversion

Top Answerers

Shubhendu Ganguly
JunJie1800
Marcus2
Neil Cowburn - MVP
Adam Rogas
Tami19813
Andrew87
Clark008
Dana Pellerin
tReXx
LizaJet Installer for
Only Title

Answer Questions

  • noelc Cast Notation and Introduction of safe_cast<>

    Diving into the .NET framework 2.0, I found today one of those amazing conceptual articles that make me venerate some people at Microsoft. All this knowledge of the language implementation and whereabouts always make me feel small in front of a huge building. Well so, the article is called "Cast Notation and Introduction of safe_cast<>" in the " Visual C++ Concepts: Porting and Upgrading" section. It really interested me and clarified ple ...Show All

  • Robert Horvick Problem with timeSetEvent() for over 16 concurrent timers

    Hello, After using 16 concurrent accurate multimedia timers with the timeSetEvent() API, the 17th call fails! It seems that its impossible to launch over 16 concurrent timers (I'm using VC6 on WinXP/2003). Please help! Thanks. I can also use the CreateTimerQueueTimer() APIs... BUT they are not as accurate as the timeSetTimer()! Is there any way to set the 16 cincurrent timers limitation to a larger number ...Show All

  • Yes! Getting a C++ Compiler without an IDE

    Hi. Can anyone tell me how I can compile a source without getting an IDE The IDE would take up too much space on my hard-drive for the use I would get from it. I get some source occaisonally, but don't have the compiler. OK, how do you use the thing The Digital Pioneer try to find "Microsoft .NET Framework version 2.0 Software Development Kit (SDK)". Usually, the SDKs of pri ...Show All

  • Sz&amp;#225;sz Bence Structure member definition not recognized

    Hi, I have the following structures: struct ObjCol { char szColName[64]; // column name ColType colType; // type of data ulong ulSize; // size }; typedef enum { TYPE_INTEGER, TYPE_STRING, TYPE_BOOL, TYPE_RAW, TYPE_EXT_TIME, TYPE_EXT_DATE, TYPE_EXT_TIMESTAMP, TYPE_CONV_UL_TIME, TYPE_CONV_UL_DATE, TYPE_CONV_UL_TIMESTAMP } ColType; and I call a method which initializes the ObjCol structure. I call it from MC++ pr ...Show All

  • Sharmil Problem Using ExitWindowsEx

    Hello, after getting an answer about how to close the system, I have a different problem. I wrote the following code: #include "stdafx.h" #include <windows.h> int _tmain( int argc, _TCHAR* argv[]) {     ExitWindowsEx(EWX_FORCE,     SHTDN_REASON_FLAG_PLANNED);     return 0; }   I get the following errors: >error LNK2019: unresolved external symbol __imp__ExitWindowsEx@8 refer ...Show All

  • Carlos De Matos C99 standard snprintf() function ?

    Hello, Is there any direct equivalent of the C99-standard snprintf() function is the CRT (C99 standard: always null-terminated, always returns the size of the whole string regarless of the buffer size, accepts null buffer: May be used to get the size of the string before allocating a buffer) And if there isn't any, is it planned to add one Thank you, but this is not what i was looking for . Is there ...Show All

  • yimin chen Adding bitmaps

    How do I add bitmaps to a Visual Studios 2005 C++ program without using The Windows Forms interface or express edition. After adding a bitmap as a resource is there a way to insert the bitmap. Use Bitmap::FromResource() to load the bitmap from a .NET resource, then use Bitmap.GetHbitmap() to create a bitmap you can use with GDI (BitBlt etc) . Cast the IntPtr returned by Bitmap.GetHbitmap() to a HBITMAP handle. ...Show All

  • Timothy Coe porting expression templates to generics

    I'm trying to port simple expression template to generics but I get this errors (The code is shown below): (1) left of '.Apply' must have class/struct/union (2) left of '.GetRowNum' must have class/struct/union (3) 'return' : cannot convert from 'Expression<Lhs,Rhs>' to 'Expression<Lhs,Rhs>' Cannot copy construct struct 'Expression<Lhs,Rhs>' due to ambiguous copy constructors or no available copy constructor ...Show All

  • Lenn Newbie question about const

    Hi, I am newbie in VC++ and come across something that I dont quite understand but it should be pretty simple. During function prototyping what difference does the keyword const make for example DWORD GetPlatformID() const; versus DWORD GetPlatformID(); Thanks a bunch Thanks a lot for such a quick response. What exactly do you mean when you say " won't change an instance of the class" Is there a function that could change ins ...Show All

  • Toontje How to Get SPY++ for desktop based application in vsts

    I am new to visual studio team system 2005 I want to install spy++ for windows application not remote spy I try hard but I do not reach to any result please help That what I belive in , but belive me I try more than 4 times to reinstall VSTS and in each time I have never found spy++ I use VSTS Beta 2 Thanks for your responce Thank you very much Ayman's right.  Spy++ mi ...Show All

  • Sean A. Inheritance loses public function from base class?

    I don't think C++ works like C# or Java in this regard, so I got a bit confused. :-) I've made a custom class based on the MFC UI class CTreeCtrl to add a Set/GetItemData for strings in addition to DWORD's. Now, everything seemed to have went fine, just that the existing SetItemData(HTREEITEM hItem, DWORD dwData) function in the base CTreeCtrl class is lost when using my new class. I sure have the SetItemData(HTREEITEM, const CString& sData ...Show All

  • Sergey Kononov C4533 warning, "initialization skipped by goto"

    Is this warning buggy in MSVC 7.1 or is it just a stupid warning In the example given here: http://msdn2.microsoft.com/library/f7687yks.aspx It makes sense because the condition, (1) will always be true and the goto will always skip the initialization. But the following code gives me the same C4533 warning and it makes absolutely no sense why it should. #include <iostream> using namespace std; struct TOILET {   &n ...Show All

  • Adebee AFX_ODBC_CALL is out_of_date

    Hi, Excepted from afxdb.h of VC++ 2003 // ODBC helpers // return code left in 'nRetCode' // This MACRO is now out-of-date (kept for backward compatibility) #define AFX_ODBC_CALL(SQLFunc) \ do \ { \ } while ((nRetCode = (SQLFunc)) == SQL_STILL_EXECUTING) // Not really required, but kept for compatibilty #define AFX_SQL_SYNC(SQLFunc) \ do \ { \ nRetCode = SQLFunc; \ } while (0) // Now out-of-date (prs not used) but kept for compatib ...Show All

  • Mega_bit_dk How to use Microsoft Active Accessibility ?

    Dear Sir, I want to get the handle of Textbox present in the web page. I came to know that it can be accessed using Microsoft Active Accessibility. I want to know that, Microsoft Active Accessibility programs can be written in C language. If possible please give me web Address. I am using NT 4.0 it is possible to write the Microsoft Active Accessiblity or what platform i have to write the programs. Please let me know any other inf ...Show All

  • basin Mixing Managed and Unmanaged C++

    Hi All, I'm a beginner in this managed C++. Currently, all of our existing system is coded in unmanaged C++ w/ OpenGL. Then, at the moment, there is a need to produce a binary file that is readable both in current C++ and C# (using BinaryReader). With this requirement, I ASSUME that I need to code that file function in managed C++ inside the current system. However, there are a lot of errors coming out as soon as I switch the /clr switch o ...Show All

424344454647484950515253545556575859

©2008 Software Development Network

powered by phorum