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

Search:

Type: Posts; User: delta_L

Search: Search took 0.01 seconds.

  1. help needed, problems in launching htmlHelp files from program

    This may not be a very "visual c++" problem, but I couldn't find a better place to post it.

    I have built a .chm file using HTML Help workshop. The help window is like the standard help window type...
  2. Thread: about #include

    by delta_L
    Replies
    38
    Views
    3,695

    Re: about #include

    In fact, there was an interesting example i encountered for this #include problem.

    I was using multi-media timer in my mfc code. When I first included necessary headers in the .cpp file, the...
  3. Thread: about #include

    by delta_L
    Replies
    38
    Views
    3,695

    Re: about #include

    thanks a lot for the points.
  4. Thread: about #include

    by delta_L
    Replies
    38
    Views
    3,695

    about #include

    in object oriented programming, what is the difference between putting all #include in the header file and put some #include in the implementation file.

    can somebody give a small lecture on this?...
  5. how to find the minimum covering radius for a set of scattered points

    anyone can recommend any tool to do that?

    thanks a lot
  6. Replies
    5
    Views
    2,329

    Re: resource compile error RC2104

    hi, Mick:

    I have some further doubts. how do i know what files are corrupt? I think there are more than one file like this.

    Is there some automatic repair tools built inside Visual C++?
    ...
  7. Replies
    5
    Views
    2,329

    Re: resource compile error RC2104

    size / modify date seems to be fine. 32k, it's not empty, modify date sometime old.
  8. Replies
    5
    Views
    2,329

    resource compile error RC2104

    The error message says the key name ID_FILE_NEW is not defined.

    Even if I create a new empty project using the wizard, the error still comes.

    MSDN help says I should open...
  9. Replies
    12
    Views
    4,267

    Brian: Thanks for pointing out the problem. I...

    Brian:

    Thanks for pointing out the problem. I think your suggestion is quite probable. I didn't have much window programming experience. didn't have time to have a systematic study also for the...
  10. Replies
    12
    Views
    4,267

    the problem is solved

    it was not because of the namespace problem.

    the problem is with WndProc callback function
    this is the wrong code:


    LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM...
  11. Replies
    12
    Views
    4,267

    the timer thing is still not working. but i found...

    the timer thing is still not working. but i found the possible problem.
    i used a vector to contain directdraw surface objects.
    i declared as follows std::vector
    otherwise the compiler always...
  12. Replies
    12
    Views
    4,267

    this is useful for debugging.:) thanks for all...

    this is useful for debugging.:)
    thanks for all the suggestion, i will try out on Monday. hehe
  13. Replies
    12
    Views
    4,267

    well.. it is not so easy to make it small... my...

    well.. it is not so easy to make it small... my code is a bit messy. :P but the problem i need to solve is very simple.
    I have a fullscreen directdraw program. I want to paint to the primary surface...
  14. Replies
    12
    Views
    4,267

    if i remove the colon, it also works the same way.

    if i remove the colon, it also works the same way.
  15. Replies
    12
    Views
    4,267

    how to get timer event in win32 application

    I am writing a program in plain win32 (no mfc).
    I set the timer but it looks like timer callback function is never envoked.

    below is the piece of code related

    ::SetTime(hWnd,0, 1000,...
  16. thanks for the very good reply

    it was very good explanation. So namespace is something like a directory. hehe If I create a class and I don't put any namespace statement anywhere in the code, does it automatically get grouped in...
  17. can somebody explain to me sth about namespace

    i have always been confused about namespace. In my own programms, i have never used it.
    is it something like a family of classes?
  18. Replies
    4
    Views
    669

    when is the signal or interrupt for frame refresh?

    i am also working on directdraw recently, having lot of problems.
    for your problem above, can you try to use some color keying?
    not sure whether it is a good method.
  19. well.. the problem to share is programming is not...

    well.. the problem to share is programming is not always as easy as gluing pieces of sample programs together.

    I did that and everything else was fine except this problem. I did a lot of changes...
  20. refresh Directdraw surface synchronized with LCD screen refresh signal

    i am doing some time dithering work with LCD panel.
    Does LCD also refresh its screen at regular intervals like what CRT does?
    Is it possible to detect something like Vertical Blank signal and do...
  21. thanks for your reply. i was not very sure what...

    thanks for your reply. i was not very sure what the problem really was. first time programed with MFC.

    the problem is solved now.
  22. Replies
    3
    Views
    789

    thanks for the reply. I found the problem. it is...

    thanks for the reply.
    I found the problem. it is because of some memory problem. i deleted some memory which i shouldn't.
    it works now.
  23. Replies
    3
    Views
    789

    what does OpenDocumentFile() do?

    at the end of OnFileOpen message handler, i wrote the command of OpenDocumentFile(filename).

    during runtime, I got errors. My application is single document.

    Does OpenDocumentFile create a new...
  24. Replies
    1
    Views
    796

    it looks like the compiler doesn't recognize the...

    it looks like the compiler doesn't recognize the type LPDIRECTDRAW7. is it because the correct header files are not found?

    u can check if u have placed the lastest header file in the top most of...
  25. what does OpenDocumentFile() do?

    at the end of OnFileOpen message handler, i wrote the command of OpenDocumentFile(filename).

    during runtime, I got errors. My application is single document.

    Does OpenDocumentFile create a new...
Results 1 to 25 of 25





Click Here to Expand Forum to Full Width

Featured