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
A

Anand Todkar

@Anand Todkar
About
Posts
37
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • InterlockedIncrement usage
    A Anand Todkar

    InterlockedIncrement This API increments the variable value by 1, in addition to this, it also gives thread safety while incrementing so that we need not to write thread synchronization code just to increment counter. Now this behaviour you can use where ever you find it useful.

    Thanks, Anand.

    ATL / WTL / STL json question

  • Replace values
    A Anand Todkar

    Loop in X to Y, where X = first command line Value(Convered to Int) Y = Last command line Value (Converted to Int) output = Y - X - 260; Thanks Anand

    Thanks, Anand.

    C / C++ / MFC help tutorial

  • How to call C# APIs from C++
    A Anand Todkar

    You need to expose it as COM and then as how you invoke the COM component from C++, you have to call that component. Framework creates CCW wrapper for you which makes COM call from C++ to C# easier.

    Thanks, Anand.

    C / C++ / MFC csharp c++ tutorial

  • Converting the language of an application to any other language
    A Anand Todkar

    Do we really require to change the project settings to UNICODE? I dont think so, we can very well support all languages (including east asian languages) in MBCS also. Please correct me if I am wrong.

    Thanks, Anand.

    C / C++ / MFC question c++

  • Problems with English MFC app on Chinese Windows
    A Anand Todkar

    He he, that's great :-)

    Thanks, Anand.

    C / C++ / MFC help c++ testing beta-testing question

  • Problems with English MFC app on Chinese Windows
    A Anand Todkar

    Robin, Its good if you build your application using Unicode character set, hopefully this will solve the problem.

    Thanks, Anand.

    C / C++ / MFC help c++ testing beta-testing question

  • Tab order in MFC dialog with CTabCtrl
    A Anand Todkar

    Andreas, You can hold Ctrl+D and you will see the tab order of all controls with their numbers. Now to modify it, click on control on which you want a tab to start at first, now go on clicking on controls as per your need and the tab order will get set for you. Alternately, you can also modify the .rc file of your application to set the tab order but that is a tricky and dangereous way of doing it. Better to follow the first approach and the Visual Studio will make things for you. :)

    Thanks, Anand.

    C / C++ / MFC question c++ help

  • Memory allocation problem in C++ (memory Leak)
    A Anand Todkar

    Maximum of 2GB memory can be given to a process at a time (in 32-bit OS), once it goes beyond that limit, the program will not work. Now first check if you want all these 800 immages to be in memory at a time, if no then see that you are freeing up the unnecesssary memory. If you are facing difficulty in tracing that you are freeing up the memory correctly or not then you can use any memory leak detection tool to verify that. One of popular freeware is LeakDiag. Hope this will help you. :)

    Thanks, Anand.

    ATL / WTL / STL help c++ data-structures performance

  • ComboBox sorting
    A Anand Todkar

    Great, I also faced the same problem but i remember it gets fixed by some flags, please refer to article again and the additional flags. Keep it up.

    Thanks, Anand.

    C / C++ / MFC algorithms help

  • ComboBox sorting
    A Anand Todkar

    If i undrstood you correctly, you want an Auto Complete functionality which we see many times in web based applications (In Google Search if we typed "as" then strings starting with "as" will appear in drop down automatically). For this to achieve, refer here[^], see if this is useful any way. Good Luck.

    Thanks, Anand.

    C / C++ / MFC algorithms help

  • Creating Resource only DLL and using it in code
    A Anand Todkar

    Thanks Sandeep, I got exactly what I wanted :)

    Thanks, Anand.

    C / C++ / MFC c++ help question learning

  • Creating Resource only DLL and using it in code
    A Anand Todkar

    Hi All, I have to create project using VC++, where the resources will be in separate DLL and that resource DLL should be used at run time according to the language selected. Could some one help me guiding in the same?

    Thanks, Anand.

    C / C++ / MFC c++ help question learning

  • Exporting MAKE file through Visual Studio 2003
    A Anand Todkar

    Want to build projects through Clearmake, and for that, we need MAKE files.

    Thanks, Anand.

    C / C++ / MFC visual-studio csharp question

  • Exporting MAKE file through Visual Studio 2003
    A Anand Todkar

    Yes, I am in need to create MAKE files for around 50 projects which are in VS 2003, and manually creating the files will take time.

    Thanks, Anand.

    C / C++ / MFC visual-studio csharp question

  • Exporting MAKE file through Visual Studio 2003
    A Anand Todkar

    Hi, Does any one have a good idea of exporting MAKE file through Visual Studio 2003?? I use to export MAKE files through Visual Studio 6.0 but now we dont have that option available in 2003. Please tell me if any other way of exporting the file in VS 2003.

    Thanks, Anand.

    C / C++ / MFC visual-studio csharp question

  • How to detect if another process is running and bring it to the foreground ?
    A Anand Todkar

    Thanks mark, it works.

    Thanks, Anand.

    C / C++ / MFC tutorial question

  • How to detect if another process is running and bring it to the foreground ?
    A Anand Todkar

    Any idea how to detect if another executable of same application is running and bring it to the foreground ? Thanks in advance

    Thanks, Anand.

    C / C++ / MFC tutorial question

  • Getting current logged in user
    A Anand Todkar

    How to get the current logged in user ? Any idea ? Thanks in advance.

    Thanks, Anand.

    C / C++ / MFC tutorial question

  • where are dialog box saved on disk
    A Anand Todkar

    neha.agarwal27 wrote:

    No it is not working properly

    Then there must be some specifice problem to your project, ideally it should work.

    Thanks, Anand.

    C / C++ / MFC

  • where are dialog box saved on disk
    A Anand Todkar

    When we create any dialog, when we use some controls on that dialog the implementation for that dialog is inside our MFC DLLs, also if we have some custom controls then implementation for it is in that particular DLLs, as the dialog is not external dependancy (unlike BMPs), it is inside the application itself, and the information related to that dialog is given in resource file, using Resource file information the compiler takes the corresponding resources and renders dialog accordingly. Wht you must have missed is to copy the resouce file properly. Copy it again and compile it .. Hopefully it should work then.

    Thanks, Anand.

    C / C++ / MFC
  • Login

  • Don't have an account? Register

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