CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ajaywinds

Page 1 of 5 1 2 3 4

Search: Search took 0.09 seconds.

  1. Thread: Mpeg-4 vki?

    by ajaywinds
    Replies
    0
    Views
    857

    Mpeg-4 vki?

    What is the difference between MPEG-4 and MPEG-4 VKI version?
  2. Replies
    1
    Views
    3,692

    NetFileEnum and GetLastError 997

    I have an MFC dialog base application.
    It uses NetFileEnum to get the all open files.
    NetFileEnum() returned NERR_Success, but the bufptr is NULL. Also when I checked the GetLastError(), it...
  3. Re: can someone PLEASE tell me how to start windows calculator and close it with C++

    Use ShellExecute
    http://msdn.microsoft.com/en-us/library/bb762153(VS.85).aspx

    or CreateProcess
    http://msdn.microsoft.com/en-us/library/ms682425.aspx
  4. Replies
    7
    Views
    1,116

    Re: handles and computer performance

    If your application is a long running application, then handle leak is serious problem. In Windows if the handle count exceeds above a certain limit( not sure about the exact limit count ), there is...
  5. Thread: CComboBox

    by ajaywinds
    Replies
    5
    Views
    979

    Re: CComboBox

    Please declare the ComboBox as a member variable.
  6. Replies
    1
    Views
    774

    Semi transparaent brush

    Hi,

    I wants to create a semi transparent brush to paint over a dialog. Could you pls suggest some solutions in such a way that, I can change the transparency of brush with a variable.
    I am...
  7. Replies
    0
    Views
    974

    AlphaBlend and CButton

    hi,


    Could you please help me to alpha blend a CButton.
    I tried in enabled ownerdraw property and override CButtonEx::DrawItem() and Alphablend call succeded but no change in the GUI.
  8. Replies
    0
    Views
    854

    Multiline Column title in listview

    Hi,
    Could any one please tell how can I set multi-line column title in a listView with report style?


    Regards,
    aks
  9. Replies
    1
    Views
    2,276

    Get First Frame of AVI/MPG file

    I need to get the first frame of AVI and MPG files as Bitmap/Image( for displaying as thumbinail ).
    Please suggest a method.
  10. Replies
    4
    Views
    9,542

    Re: Gdiplus::Image:FromFile holds the file

    I tried the CFile::Open( ) from different application and the error occurs.
    And if I delete the m_pImg object then InDraw will fail.
  11. Replies
    1
    Views
    1,353

    Gdiplus::Image:FromFile holds the file

    I use GDI+ for displaying an image file.

    1. Getting m_pImg = Gdiplus::Image::FromFile( m_fileName ); on browse button click
    2. And drawing the image in OnDraw()
    m_pGr->DrawImage( m_pImg,...
  12. Replies
    4
    Views
    9,542

    Gdiplus::Image:FromFile holds the file

    I use GDI+ for displaying an image file.

    1. Getting m_pImg = Gdiplus::Image::FromFile( m_fileName ); on browse button click
    2. And drawing the image in OnDraw()
    m_pGr->DrawImage( m_pImg,...
  13. Replies
    0
    Views
    621

    OleContainer call failed

    deleted
  14. Replies
    17
    Views
    6,605

    Re: Problem with CArray inside a structure

    As Philip said implement a default constructor, Copy Constructor and assignment operator in your structure.
  15. Replies
    0
    Views
    707

    build order in .dsw /make ALL

    i have 4 dsps in one dsw, all have both release and debug versions

    dsp1( uniCode Min Dependency Release/ unicode debug)
    dsp2( Release/debug)
    dsp3( Release/debug)
    dsp4( Release/debug)

    dsp1...
  16. Replies
    0
    Views
    613

    internet access

    Hi,

    In my PC I would like to get the applications, which accessing internet. Could u please help me to solve this with vc++.


    Regards,
    Ajay
  17. Replies
    5
    Views
    864

    Re: rebasing and memory allocation

    hey JVene,

    thanks for the reply.
    Yes am researching into the things pro's do to handle large memory application needs.

    In http://www.ddj.com/windows/184416272?pgno=1, I read that

    When...
  18. Replies
    5
    Views
    864

    Re: rebasing and memory allocation

    but something is mentioned here: https://www.ittvis.com/services/techtip.asp?ttid=3346
  19. Replies
    5
    Views
    864

    rebasing and memory allocation

    Hi,

    Is there any relation between rebasing and memory allocation?
  20. Re: sendASPI32Command returns SS_ASPI_IS_BUSY

    ya, I tried to resend the command.. but the same error occured....
  21. sendASPI32Command returns SS_ASPI_IS_BUSY

    Hi,

    I am using sendASPI32Command for writing data to CD. But for a particular size of data sendASPI32Command returns SS_ASPI_IS_BUSY error. The error occurs when writes the last track data.
    Could...
  22. sendASPI32Command returns SS_ASPI_IS_BUSY

    Hi,
    I am using sendASPI32Command for writing data to CD. But for a particular size of data sendASPI32Command returns SS_ASPI_IS_BUSY error. The error occurs when writes the last track data....
  23. Replies
    3
    Views
    850

    Re: bkock a user from accessing a fil

    Hi,
    I deveolped an application to display the files on my machine which are being accessed by another machines.

    So with my application I can know which machine access which file in my machine....
  24. Replies
    3
    Views
    850

    Re: bkock a user from accessing a fil

    any one please help
  25. Replies
    5
    Views
    781

    Re: flickering problrm

    Hi Marc ,
    thats right...
    actually I need a smooth transtion from first window to second window. When the second screen starts to display a flickering occurs( even if the back grounds are same). I...
Results 1 to 25 of 113
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured