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
M

Malli_S

@Malli_S
About
Posts
222
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • SetWindowsHookEx
    M Malli_S

    What error code do you get?

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC c++

  • How to change tab event of property sheet
    M Malli_S

    What is the question? Please go through the guidelines HOW-TO-ASK-A-QUESTION[^] before posting the question.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC debugging tutorial

  • Mothers Day
    M Malli_S

    Quote:

    I just got married 2 weeks ago

    There you are !!! May be that's why you missing your mom.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    The Lounge

  • Structure Fraction With Switch
    M Malli_S

    To get any kind of help, please post what are all things you've tried or where you stuck with code/logic.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC performance

  • ON_COMMAND macro in MFC - opinions / explanations please.
    M Malli_S

    CP seems to be new to him...

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC c++ discussion

  • When clicked a button on any application, play sound
    M Malli_S

    Please verify that the Hook got installed properly. Once the hook is installed, you should be able to get the messages. When the mouse event is received, you can check the window handle. Using that window handle, identify the class type of the window.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC question c++

  • When clicked a button on any application, play sound
    M Malli_S

    You'll have to use the concept of 'hook'. Please refer to hook details here. You can use this[^] article for your reference.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC question c++

  • Lining up the Decimal Points
    M Malli_S

    But at my end I'm getting proper output. Have a look at this[^].

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC question c++

  • Late night coding
    M Malli_S

    OK.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    The Lounge html javascript com question

  • Late night coding
    M Malli_S

    That explains. :thumbsup: But painting stopped at around 600.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    The Lounge html javascript com question

  • IT Support
    M Malli_S

    :thumbsup:

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    The Weird and The Wonderful sysadmin help

  • Late night coding
    M Malli_S

    After certain count it stopped the painting.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    The Lounge html javascript com question

  • how to lock function used by thread?
    M Malli_S

    Why don't you try Thread Synchronization mechanisms? Following may help you. Managed Thread Synchronization[^] How to create a Simple Lock Framework for C++ Synchronization[^]

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    Managed C++/CLI tutorial question

  • sort click colomn title
    M Malli_S

    It seems that you're missing 'break' for

    case LVN_GETDISPINFO:

    switch block.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    Windows API css question

  • Proper array memory management in C++
    M Malli_S

    Apart from the solution that Richard has given, I'd like to suggest you to go through the code snippet from WHILE block and ensure that the array index variable 'counter' is increased properly whenever an image is selected. Because, looking at the code snippet you gave, the index variable 'counter' is not incremented immediately after allocation index element (or you didn't include that part while pasting the code). Looking at the logic you explained, it seems that you may not be deleting the image data in the while loop. Or are you? If the user has the choice of deselecting the image, you should be able to delete the respective indexed image item, and should maintain the empty slot index data. That involves extra bookkeeping. I would suggest to give a try using STL container classes. For that, this[^][^] may help you. If possible, provide the full WHILE loop code snippet. That will help to find out memory leak (as your app is ending up much memory).

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC c++ data-structures performance help tutorial

  • WNetGetConnection API behaves wrongly when UAC is enabled
    M Malli_S

    On my machine, the code seems to be working properly in both the scenario. Please ensure that you've not set user specific rights to the locally shared folder.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC help sysadmin json question

  • Lining up the Decimal Points
    M Malli_S

    Check if this is helpful.

    {
    cout << fixed;
    for( int i = 0; i<10; i++ ) {
    double f1 = (int)(i/20);
    double f2 = 3.1415*i;
    double f3 = 3.1415*(f2+3);
    std::cout << std::setfill (' ') << std::setw (10);
    cout.width( 10 );
    cout.precision( 4 );
    cout << f1 << " ";
    cout.width( 10 );
    cout << f2 << " ";
    cout.width( 10 );
    cout << f3 << endl;
    }

    	getch();
    }
    

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC question c++

  • Socket Communication - Server with 2 different clients
    M Malli_S

    You need not to anything different at client side. The required capability needs to be implemented at server side. Your server should be able to server multiple request/connections. In your case, when server accepts the first connection, it should spawn the thread to handle the requests from the connected client and the main thread should continue listening of the socket for any new connection. Sample 1.[^] Sample 2.[^]

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC question c++ sysadmin

  • Regarding insert query of sqlite3 database
    M Malli_S

    What error code does sqlite3_prepare16_v2() is returning? Also check whether you're using sqlite's all the 'V2' interfaces consistently (as I see you using sqlite_prepare16_V2()). For error code details have a look at this[^].

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC database help sqlite question

  • how to get self in c++ 21day book source code ?
    M Malli_S

    Also some books have CDs with them. Check whether the book you're referencing provides one.

    [Delegates]      [Virtual Desktop]      [Tray Me !]
    -Malli...! :rose:****

    C / C++ / MFC c++ com adobe 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