Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Tooko
  • Order by date
  1. Tooko

    Simple Mouse

    I have two questions. One, when I created a program using DirectDraw, I couldn't hide the mouse. Any suggestions? Secondly, is there a simple function that returns the X/Y location of the mouse? Preferable in POINT form? MBDYProductions - "Freedome in gaming shouldn't be an extra"
  2. Tooko

    include file loops

    You could predefine all the functions from the headers in a file compiled before, and then include both the files. e.g. (MainFile.cpp) void SomeFunc(int SomeParam1, float SomeParam2); etc #include "SomeFile.cpp" (SomeFile.cpp) void SomeFunc(int SomeParam1, float SomeParam2) {...
  3. Tooko

    DirectDraw

    How can I load graphic files (besides bmp) into a LPDIRECTDRAWSURFACE7? MBDYProductions - "Freedome in gaming shouldn't be an extra"
  4. Tooko

    simple program i need done for school need some quick help

    Maybe. MBDYProductions - "Freedome in gaming shouldn't be an extra"
  5. Tooko

    A few unknown errors...

    I have tried and tried to compile a program using the timeGetTime() functions, but mmsystem compiles with 43 errors and 1 warning. I have defined WIN32_LEAN_AND_MEAN and included winmm.lib and windiws.h but alas, no luck. Any help?
  6. Tooko

    keyboard input

    You could use either DirectInput but that takes a bit of reading. On the other hand, you could try the old Dos way of using _getch().
  7. Tooko

    Best Visual C++ Book?

    Teach Yourself Visual C++ in 21 days. Maybe even Teach yourself DirectX7 in 24 hours. The second one is a little advanced though...
  8. Tooko

    VC++ - Cant compile, the file "-.cpp"

    If your using a character (eg -) in the filename, some programs delete these 'unknown' characters. If this happens, the "cpp" might be used as the filename. Hence not compiling. A solution? Try renaming it from the stupid (no offense) - and create something desciptive.
  9. Tooko

    simple program i need done for school need some quick help

    Shouldn't you do your schoolwork yourself? Isn't this like... cheating? Remember. Your only cheating on yourself. He he he!!!
  10. Tooko

    Start an .exe from within another .exe (MFC)

    Use the WinExec() function. It takes only two parameters. The first one of the filename and directory (if not in the same folder) and the second is the window style. I use something like SM_SHOW or WM_SHOW. I can't remember which one...
  11. Tooko

    the most accurate system time

    Have you tried the Performance Counter functions? I was told that had a resolution of 3ms. Or course, it's hardware (well, the performance counter is) so you might not have it.
  12. Tooko

    Move program from Pc to Pc

    So... it's working now? If not, are you sure the editer is the same version? If you installed a patch or any other addon to one of them it might make version confliction. That happened to me...
  13. Tooko

    Move program from Pc to Pc

    Do you mean you have moved the source code (cpp, h etc files) or just the exe (and dll's if needed) I think you mean the source code...

Part and Inventory Search

Back
Top