Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

dfields326

@dfields326
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Destructors in STL?
    D dfields326

    Use auto_ptr<> will delete them for you #include using std::wcout; using std::endl; using std::vector; class Foo { public: Foo(int index) : m_index(index) { wcout << L"Creating Foo #" << m_index << endl; } ~Foo() { wcout << L"Destroying Foo #" << m_index << endl; } private: int m_index; }; int _tmain(int argc, _TCHAR* argv[]) { vector< std::auto_ptr< Foo* > > pFooList; for (int i = 0; i < 10; ++i) { pFooList.push_back( std::auto_ptr< Foo* >(new Foo(i))); } /* no need to delete, std::auto_ptr takes care if it for you. //see #include for (int i = 0; i < 10; ++i) { delete pFooList[i]; } */ return 0; } :cool:

    ATL / WTL / STL question c++

  • SendMessage()
    D dfields326

    Try This put the address of the string in a DWORD and passes as the LPARAM; DWORD pdwAddress =(DWORD)&myString; SendMessage(MY_MESSAGE, 0, pdwAddress); void CMainFrm::OnMyMessage( WPARAM wParam, LPARAM lParam ) { CString s; s = *(CString *)lParam; }

    C / C++ / MFC

  • Tapi Programming
    D dfields326

    from what I have read and heard that TurboPower software Asyc Professional is a excellent 3rd part ActiveX or Delphi/C++ Builder VCL component http://www.turbopower.com/products/APAX/ About the only other one out there is SaxComm Objects 7.0 and 8.0 Have used SaxComm Objects 6.0 and 7.0. Well the 6.0 version (non-tapi) control was not bad at all. The 7.0 version I had nearly reverse engineer the ocx file to make it work. Using Duel Interfaces MFC/ATL. thats my 2cents worth on 3rd part TAPI components

    The Lounge help question learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups