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

Search:

Type: Posts; User: senkyoshi

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    458

    Re: Memory watching

    Thanks for the information. While I look for those things does anybody else have any ideas? How about Arrays that are really large. Could those cause memory leaks?

    Some More background about...
  2. Replies
    3
    Views
    458

    Memory watching

    I am having memory leaks in a program that I am working on. This not my original program. It was handed over to me because the other guy could not finish it. Now I am going through it and finding...
  3. Replies
    1
    Views
    587

    Insert at beginning of a file

    I have a file full of data(binary). I would like to insert some more data at the beginning of the same file.I know how to get the pointer to the beginning of the data file but is there a way to...
  4. Replies
    8
    Views
    1,565

    Re: Windows XP or WIndows 98? quick question

    Sorry, I've never read any 50's detective novels. Do you suggest any?
    I asked my question because I needed to give an answer to a superior (manager) if we would need to maintain two copies of the...
  5. Replies
    8
    Views
    1,565

    Re: Windows XP or WIndows 98? quick question

    Hey fellow Geek. I was planning on testing it before I gave it to the user. Just checking if anyone ever had any issues with doing this. Thanks for your input.
  6. Replies
    8
    Views
    1,565

    Re: Windows XP or WIndows 98? quick question

    Thanks for your answers Folks! I am trying to use only functions that are compatible for both.
  7. Replies
    8
    Views
    1,565

    Windows XP or WIndows 98? quick question

    I am writting a program that will run on both Windows 98 and Windows XP. I am writting and compiling it on Windows XP Visual Studio 6.0. Does it matter to the Windows 98 machine if I compile The...
  8. Replies
    3
    Views
    10,145

    Re: memcpy is reverse?

    Thanks guys. I thought I could do it myself. I was just wondering if there was a clean one liner like memcpy. Thanks again!
  9. Replies
    3
    Views
    10,145

    memcpy is reverse?

    Hello,

    I would like to copy memory from one location to another like memcpy but I want the data to be reversed.
    Ex: mem0,mem1,mem2...mem100 = before moving data
    mem100,mem99,mem98,...mem0...
  10. Replies
    11
    Views
    2,331

    Re: Can I disable the mouse?

    Wow! awesome guys.

    I got it to work with both ClipCursor and BlockInput. Decisions, decisions. I will probably go with BlockInput because it takes less lines of code.

    Thanks again guys!
  11. Replies
    11
    Views
    2,331

    Re: Can I disable the mouse?

    I tried using "BlockInput" and when I compile I get the errors:

    error C2039: 'BlockInput' : is not a member of '`global namespace''

    error C2065: 'BlockInput' : undeclared identifier

    any...
  12. Replies
    11
    Views
    2,331

    Re: Can I disable the mouse?

    szz,

    I was actually in the middle of reading that post that you made a link to when you posted. My only problem with it is that I need the handle to the window being clicked on. The window that...
  13. Replies
    11
    Views
    2,331

    Re: Can I disable the mouse?

    Mistersulu, good question. I wasnt being very specific was I. I am actually doing two mouse clicks.

    mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
    mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0,...
  14. Replies
    11
    Views
    2,331

    Can I disable the mouse?

    I do a mouse move and click in my program.

    SetCursorPos(nScreenXLocation + 470, nScreenYLocation + 75);//modified
    mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);

    My problem is that a...
  15. Replies
    3
    Views
    625

    Re: Changing stack order

    In the language that the parent program is in there is no way to continue it's message loop after spawning the child process. It would be great to have the child process change the order in the...
  16. Replies
    3
    Views
    625

    Changing stack order

    I have a program that calls an external application that brings up a window. The first program is not written in C++ that external application is. When the second program's window opens it is on...
  17. Thread: DLL problems

    by senkyoshi
    Replies
    9
    Views
    892

    Re: DLL problems

    Well, Target was correct but start in was blank. I didnt even see the Start in before. You learn something new everyday. I typed in the path for the dll and executable into "start in" and it works...
  18. Thread: DLL problems

    by senkyoshi
    Replies
    9
    Views
    892

    Re: DLL problems

    Thanks for the input everybody. Unfortunately the program that calls the DLL was not developed under Visual C++ but the DLL was developed under Visual C++.
    I just found that if I place the DLL on...
  19. Thread: DLL problems

    by senkyoshi
    Replies
    9
    Views
    892

    DLL problems

    I created a program that uses a DLL that I also created. I put both program and DLL on a XP machine (not the one that I developed on) in the same directory. I also add a shortcut to the program on...
  20. Replies
    2
    Views
    569

    Re: "GHOSTING" PROBLEM

    The first application needs to wait for the external program before it moves on and I am not launching the external program from a c++ application. It is from an IDL display program from from RSI. ...
  21. Replies
    2
    Views
    569

    "GHOSTING" PROBLEM

    I have a problem that some people I have talked to refer to as a "ghosting" problem.
    I have a program that calls an external program that opens a window on top of the first application's window. ...
  22. Replies
    8
    Views
    4,184

    Re: set minimum size of dialog box

    It would be great if I could but I can't. I will keep trying different things. Thanks!
  23. Replies
    8
    Views
    4,184

    Re: set minimum size of dialog box

    "Have you changed any styles for the frame ? "

    Nope. Not that I know of.

    "How are you checking if it is called ? "

    I put a breakpoint in the function to see if it stops inside of it. Also,...
  24. Replies
    8
    Views
    4,184

    Re: set minimum size of dialog box

    Paul, that looks like what I want to do. However, I am having a problem. The OnGetMinMaxInfo() function is never getting called. In my MainFrm.cpp I add the following code:
    ...
  25. Replies
    8
    Views
    4,184

    set minimum size of dialog box

    I have noticed that there is a minimum size that a user can make a dialog box. Is there a way to set my own minimum values for a dialog box I create so a user cannot make it really tiny. I still...
Results 1 to 25 of 105
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured