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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

Amar Sutar

@Amar Sutar
About
Posts
57
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to add a application entry in Windows Firewall Exception list?
    A Amar Sutar

    I want to add my application in windows firewall exception list on Windows Vista. Amar :)

    C / C++ / MFC tutorial question

  • [Message Deleted]
    A Amar Sutar

    Handle NM_CLICK for list view and in that function set the item's state. void OnNMClickListView(NMHDR *pNMHDR, LRESULT *pResult) { LPNMLISTVIEW pNMLV = reinterpret_cast(pNMHDR); if(pNMLV && pNMLV->iItem != -1) m_lstView.SetItemState(pNMLV->iItem, LVIS_SELECTED, LVIS_SELECTED); *pResult = 0; } Regards, Amar :)

    C / C++ / MFC

  • Interfacing webcam to C++ program to manipulate the images in real time
    A Amar Sutar

    See http://www.codeproject.com/KB/directx/LiveVideo.aspx[^] Regrads, Amar :)

    C / C++ / MFC c++

  • Need Help on Internet Programing
    A Amar Sutar

    See this article http://support.microsoft.com/?kbid=165298[^] Use SendRequest to pass the parameters. :) Amar

    C / C++ / MFC help php

  • CInternetSession Problem
    A Amar Sutar

    Yes it is a Valid URL.

    C / C++ / MFC help question

  • CInternetSession Problem
    A Amar Sutar

    GetLastError() returns error code 12002.

    C / C++ / MFC help question

  • CInternetSession Problem
    A Amar Sutar

    Hi, I am writing an appliction which downloads MJPEG stream from IP camera. My application supports many IP cameras at a time. So i need to download several URL at a time from single instance. But the problem is when I add my fifth camera my application gets hanged. So is there any limit on how many URLs we can open using CInternetSession's OpenURL method? From my application I am able to open upto 4 URLs for one instance. For fifth URL my application give "timeout" exception. Code: CStdioFile* m_pFile[5]; CInternetSession m_inetSession[5]; for(int iIndex = 0; iIndex < 5; ++iIndex) { m_pFile[iIndex] = m_inetSession[iIndex].OpenURL (cstrUrl, 1, INTERNET_FLAG_TRANSFER_BINARY | INTERNET_FLAG_RELOAD); . . } Thanks in Advance. Amar :)

    C / C++ / MFC help question

  • link error with DirectShow
    A Amar Sutar

    Add Strmiids.lib and Quartz.lib in Additional Dependencies. See http://msdn2.microsoft.com/en-us/library/ms787647.aspx Amar:)

    C / C++ / MFC debugging help question announcement

  • BitMap button
    A Amar Sutar

    See this link http://msdn2.microsoft.com/en-us/library/a3y45xs0(VS.80).aspx and read To include a bitmap-button control in a dialog box Amar:)

    C / C++ / MFC c++ graphics

  • API used to files name inside a folder
    A Amar Sutar

    You can use CFileFind(MFC) or WIN32_FIND_DATA(WIN32). Amar:)

    C / C++ / MFC json

  • Passing values from one exe to another exe
    A Amar Sutar

    Hi, 1. If variable is required before starting another exe then pass that variable as command line. 2. If you want to pass variable after starting another exe then use Inter Process Communication such as WM_COPYDATA, Pipes and Shared Memory. Amar:)

    C / C++ / MFC question help

  • What is Data Execution Prevention?
    A Amar Sutar

    What is DEP and how to write DEP compatible program? :)Amar.

    C / C++ / MFC question tutorial

  • Direct X SDK
    A Amar Sutar

    Yes it is a correct version. After installing it compile baseclasses from DRIVE\DXSDK\Samples\C++\DirectShow\BaseClasses :)Amar

    C / C++ / MFC

  • Direct X SDK
    A Amar Sutar

    Download from http://www.microsoft.com/downloads/details.aspx?FamilyId=124552FF-8363-47FD-8F3B-36C226E04C85&displaylang=en> this link :)Amar

    C / C++ / MFC

  • Video Display
    A Amar Sutar

    http://www.codeproject.com/directx/LiveVideo.asp CCaptureVideo class is useful from above code... :)Amar

    C / C++ / MFC help lounge

  • How Can I Read Data From Sound Card With Line ?
    A Amar Sutar

    Use mixer control for accessing Line In from Sound card. For more help see http://msdn2.microsoft.com/en-us/library/ms705739.aspx :)Amar

    C / C++ / MFC c++ question

  • disabling maximize option in sdi window
    A Amar Sutar

    Add cs.style ^= WS_MAXIMIZEBOX; in PreCreateWindow method of CMainFrame BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CFrameWnd::PreCreateWindow(cs) ) return FALSE; cs.style ^= WS_MAXIMIZEBOX; return TRUE; } :)Amar

    C / C++ / MFC tutorial

  • video streaming
    A Amar Sutar

    Use IWMWriterNetworkSink interface to stream video(in windows media format). For more details about this interface see http://msdn2.microsoft.com/En-US/library/aa390099.aspx wmvnetwrite sample application is available in Windows Media Format SDK 9.5 :)Amar -- modified at 6:07 Tuesday 29th May, 2007

    C / C++ / MFC sysadmin question

  • Motion Detection
    A Amar Sutar

    See http://www.codeproject.com/cs/media/Motion_Detection.asp. :) Amar

    C / C++ / MFC c++

  • How to provide tooltip for toolbar on ATL control?
    A Amar Sutar

    I create a composite control and add a toolbar on it. For that toolbar, how should I provide Tooltip? Thanks in advance. Regards Amar.:)

    ATL / WTL / STL c++ tutorial question
  • Login

  • Don't have an account? Register

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