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

Michael S Scherotter

@Michael S Scherotter
About
Posts
11
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Finding bottlenecks in development system
    M Michael S Scherotter

    I already have my team use that book like it were the bible. I just want to know which hardware factor is the bottleneck in my build times: Memory, Processor, or Hard drive Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    IT & Infrastructure performance question workspace

  • Finding bottlenecks in development system
    M Michael S Scherotter

    Does anyone have any suggestions to find out what is limiting my build times: Processor, Disk, or Memory on Windows 2000? I am trying to put together configuration for development systems using MSVC 6.0 and want to know if anyone has found specific performance monitor stats are helpful. Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    IT & Infrastructure performance question workspace

  • File properities on Win2k
    M Michael S Scherotter

    Thank you. How can you enumerate the streams on a file? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    System Admin question

  • File properities on Win2k
    M Michael S Scherotter

    What are the APIs for accessing these streams? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    System Admin question

  • Windows 2000 NTFS Custom File attributes
    M Michael S Scherotter

    Right click on any file in Windows 2000 NTFS and you get a summary tab. In that summary tab, you can attach any number of attributes to the file including Author, Subject, Category, etc. You can do this to any file, not just compound document files. What are the Win32 APIs to programatically get and set these attributes in C/C++? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    System Admin c++ question

  • OpenGL drawing
    M Michael S Scherotter

    Only redraw the scene when something changes. If you still need a frame every second, do a ::BitBlt() each second. Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    C / C++ / MFC graphics c++ game-dev question

  • OS problem
    M Michael S Scherotter

    What does the function do? Please provide the code for the function Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    System Admin help

  • CallBack function
    M Michael S Scherotter

    // The callback function type typedef void StepProc(); // the callback function void Step() { cout << "."; } void DoSteps(StepProc* pProc) { for (int i = 0; i < 10; i++) { (*pProc)(); } } void TestCallback() { //Call DoSteps() with ::Step as the argument ::DoSteps(::Step); } Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    Article Writing tutorial

  • Left and top scrollbars
    M Michael S Scherotter

    Is there any way besides using a right-reading locale to make windows with scrollbars on the left and top instead of on the right and bottom? Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    Article Writing question

  • How to sort std::list&ltCMyClass*&gt?
    M Michael S Scherotter

    You can try this: std::list theList; bool Less(const CMyBaseClass* pFirst, const CMyBaseClass* pSecond) { return (*pFirst < *pSecond); } std::sort(theList.begin(), theList.end(), Less); Michael S. Scherotter Lead Software Architect Tartus Development, Inc.

    C / C++ / MFC question c++ com tutorial

  • compositing two HBITMAPs
    M Michael S Scherotter

    I have two bitmaps. How do I stretchblt one into the other?

    C / C++ / MFC question
  • Login

  • Don't have an account? Register

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