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
R

Raphael Kindt

@Raphael Kindt
About
Posts
144
Topics
63
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • [Windows SDK] Pipe status
    R Raphael Kindt

    Thanks for your reply... My problem is that I've a first process that writes data (raw image) to a pipe and a second process which connects to this pipe and reads data from the pipe. I want to use overlapped structure to let the first process write the next data without waiting until the second process read the old data. It's important for the first process to know when the pipe is full because at this time It can skip images. If you have any suggestions to do that... Thanks in advance. :)

    Hello World!!! :) from Raphaël

    C / C++ / MFC help tutorial question

  • [Windows SDK] Pipe status
    R Raphael Kindt

    Hello world! How to detect if a windows named pipe is FULL :confused: I use a overlapped structure and the GetOverlappedResult function (for asynchronous I/O). When my named pipe is full I want to wait free space to continue writing data (like a FIFO). But I don't know how to detect if my pipe is full? Thanks for any help, advices, etc... :)

    Hello World!!! :) from Raphaël

    C / C++ / MFC help tutorial question

  • Multilanguage calendar for MFC
    R Raphael Kindt

    Thanks a lot for yout reply. I have another question. which is the method's name to override? I'm looking for this method... But there is too much methods...

    Hello World!!! :) from Raphaël

    C / C++ / MFC csharp c++ question

  • Multilanguage calendar for MFC
    R Raphael Kindt

    That seems interesting... But only the application language must be change. Not all the Windows language. Could I use this method to only change my application language? Thanks for your reply.

    Hello World!!! :) from Raphaël

    C / C++ / MFC csharp c++ question

  • Multilanguage calendar for MFC
    R Raphael Kindt

    I know that. But the user must be able to change the language directly from the menu. At this time I'm writing new string ressource (DLL project) for each new language. When the user change the language I dynamically load the good ressource (inside DLL) for this language.

    Hello World!!! :) from Raphaël

    C / C++ / MFC csharp c++ question

  • Multilanguage calendar for MFC
    R Raphael Kindt

    Could you give me more informations? After subclassing, what must I do to translate the text inside the calendar? Thanks for the reply.

    Hello World!!! :) from Raphaël

    C / C++ / MFC csharp c++ question

  • Multilanguage calendar for MFC
    R Raphael Kindt

    Hi world... I want to change the CMonthCalCtrl language. Is this possible? Is there another calendar control where I could do that? I don't use dotNET framework but MFC (I know...) Thanks for any advice!

    Hello World!!! :) from Raphaël

    C / C++ / MFC csharp c++ question

  • Windows langages
    R Raphael Kindt

    Hi world! My question is very simple: How to know the windows langage installed on a PC? I use MFC71 with Visual Studio.NET Thanks very much for all advice :-) Hello World!!! :) from Raphaël

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

  • Multi-languages CMonthCalCtrl
    R Raphael Kindt

    Hi world... I want to change the CMonthCalCtrl language. Is this possible? I think not! Is there another calendar control where I could do that? Thanks for any advice! :-D Hello World!!! :) from Raphaël

    C / C++ / MFC question

  • Sequential file access R/W
    R Raphael Kindt

    Thanks a lot for this solution... I will test that now... Hello World!!! :) from Raphaël

    C / C++ / MFC question lounge

  • Sequential file access R/W
    R Raphael Kindt

    Hi world, My question is simple: How can I write file with a sequencial access type? I want this to accelerate the writing bandwidth of my HD. With a litle application (not open source) I obtain: - For a random writing access, my HD bandwidth is 5 MB/sec - For a sequencial writing access, 15 MB/sec Thanks for all answers... :) Hello World!!! :) from Raphaël

    C / C++ / MFC question lounge

  • HD diagnostic
    R Raphael Kindt

    Hello, world! I don't know where I must post this thread... Sorry if it's the wrong section. But my question is: I want to integrate an HD writing test to my application. This writing test gives an HD bandwidth information to the user. My application give an information to the user if this bandwidth is too small... The writing test must be done with a random access disk (classical access for most users)! Where can I found an open source project (or not) which does that? Thanks for all your answers :) Hello World!!! :) from Raphaël

    C / C++ / MFC question lounge

  • folder size limitation
    R Raphael Kindt

    Hi world, I'm want limiting a folder size. My application create some files inside this folder but I don't want exceed the desired size. Thus this application must delete older files when I want to add new file (to always respect the size limitation). Anybody have an idea to do that? Thank in advance... Hello World!!! :) from Raphaël

    C / C++ / MFC question

  • Object shared with several application...
    R Raphael Kindt

    Hi world! I'm looking for methods to share an object (C++) between several applications? I use VC6... Example: Application 1 write in my_sharing_object object. Application 2 read any attributs from my_sharing_object object (writed by the first application). Any idea? Thans in advance for your help. Hello World!!! :) from Raphaël

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

  • Adding multilanguage support
    R Raphael Kindt

    Hi world... What is the most useful way to change language in an application? I've read we can do that with explicit link for DLL (one DLL for each languages ressource). Example: - exported from french.dll file:

    extern "C" __declspec(dllexport) char* get_text(int id_text);

    - int the application:

    typedef char* (MY_FUNCTION)(int);
    HINSTANCE hInstance;
    MY_FUNCTION *pFunction;
    VERIFY(hInstance = ::Loadlibrary("c:\\winnt\\system32\\french.dll"));
    VERIFY(pFunction = (MY_FUNCTION*) ::GetProcAddress(hInstance, "get_text"));

    int id_text = 5427
    char* good_translation = (pFunction*)(id_text);

    Is that a good solution? Thanks for your suggestions... Hello World!!! :) from Raphaël

    C / C++ / MFC question tutorial

  • multilanguage DLL
    R Raphael Kindt

    Hi world... What is the most useful way to change language in an application? I've read we can do that with explicit link for DLL (one DLL for each languages ressource). Example: - exported from french.dll file:

    extern "C" __declspec(dllexport) char* get_text(int id_text);

    - int the application:

    typedef char* (MY_FUNCTION)(int);
    HINSTANCE hInstance;
    MY_FUNCTION *pFunction;
    VERIFY(hInstance = ::Loadlibrary("c:\\winnt\\system32\\french.dll"));
    VERIFY(pFunction = (MY_FUNCTION*) ::GetProcAddress(hInstance, "get_text"));

    char* good_language = (pFunction*)(1054);

    Is that a good solution? Thanks for your suggestions... Hello World!!! :) from Raphaël

    C / C++ / MFC question tutorial

  • YUV image format
    R Raphael Kindt

    Hi world; Anybody know how to display a YUV (or YCrCb) 16 bits image format? Because I grab image from a PAL-M camera and the image format is 16 bits YCrCb... :confused: I use the GDI! Currently I can dispay B&W (8 bits) and RGB format (32 bits) from others cameras without problems... Thanks for your help... Hello World!!! :) from Raphaël

    C / C++ / MFC graphics help tutorial question

  • total mouse control
    R Raphael Kindt

    thank you very much... Next time I will seek first in CP! :-D Hello World!!! :) from Raphaël

    C / C++ / MFC question tutorial

  • total mouse control
    R Raphael Kindt

    I already do that but it seems don't work... Moreover MSDN says: You should use global hooks only for debugging purposes; otherwise, you should avoid them. Global hooks hurt system performance and cause conflicts with other applications that implement the same type of global hook. where can I find an example using a DLL? Thanks for your help! Hello World!!! :) from Raphaël

    C / C++ / MFC question tutorial

  • total mouse control
    R Raphael Kindt

    hi world I want to get all mouse messages towards my application... I mean when the mouse move outside the window of my application, my application receive mouse messages nevertheless (and thus mouse coordinates too)! I already use Set/Get/ReleaseCapture and SetWindowsHookEx but when the mouse is outside my application I couldn't receive mouse message... My question: How to receive ALL mouse message towards my application? Even if the mouse moves outside the main window of my application... Thanks in advace... Hello World!!! :) from Raphaël

    C / C++ / MFC question tutorial
  • Login

  • Don't have an account? Register

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