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

MF

@MF
About
Posts
11
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • POSTing binary data with HTTPS through wininet...
    M MF

    You should have a custom header. eg Content-Length: HttpSendRequest will not generate the content-length for you.

    C / C++ / MFC help c++ sysadmin security regex

  • SetThreadLocale
    M MF

    Localization / Internationization is not a simple task. It will be more complex if your application is not UNICODE app & need to support asian languages (eg. Traditional/Simplified Chinese / Japanese / Korea). Use SetThreadLocale() is fine if it solves your problem. But in my experience, it didn't. MS Press has a good book for that but I cannot find the name. There is a new book "Internationalization and Localization Using Microsoft .Net" which I havn't read.

    C / C++ / MFC help design json tutorial question

  • memory usage keeps going up when retrieving webcam image
    M MF

    Memory Leakage is caused by

    khrstopher wrote:

    delete frame;

    you should use delete []frame; :omg:

    C / C++ / MFC c++ java delphi database performance

  • Using the Library
    M MF

    You have to import the typelib of the testcom.dll into your project.

    C / C++ / MFC help com tutorial

  • Hyper Threading or Multi processor issue
    M MF

    I think your application didn't have proper sync. on the thread. The problem may not be hitted in single CPU machine. It seemed to be a deadlock on the threads.

    C# help csharp c++ asp-net tutorial

  • help needed for VS2005 add-in using native c++
    M MF

    I have tried a product called 'Visual Watch' which provides such functionalities. But it doesn't support VS 2005 yet.

    C / C++ / MFC visual-studio c++ help announcement csharp

  • Splitter between two panels
    M MF

    You havn't described "How it doesn't work". I has used it and everything is expected.

    C# help tutorial

  • Fundamentals
    M MF

    If you search "internal access modifier" in VS, you can find : <--- internal : Access is limited to the current assembly. private : Access is limited to the containing type. -->

    .NET (Core and Framework) question

  • Unregister Class function
    M MF

    If you search the "UnregisterClass" in VS, you can find the following in the Remark. <--- Before calling this function, an application must destroy all windows created with the specified class. All window classes that an application registers are unregistered when it terminates. --> If you have tried to unregister the class within the WM_DESTROY msg handler of the window instance, it should be failed.

    C / C++ / MFC help tutorial

  • detecting memory leaks?
    M MF

    In your application, (if it is a MFC application, add the following in the InitInstance()) _CrtSetBreakAlloc(715); it will break when it tries to allocation the leakage memory and you can find the source code. Details can be "Memory Leak Detection" in VS.

    C / C++ / MFC performance tutorial question code-review

  • What is the size of an integer?
    M MF

    In Win32, sizeof(int) is 4 bytes.

    C / C++ / MFC question c++ com data-structures
  • Login

  • Don't have an account? Register

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