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 biv343 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: sandup
  • Content: Threads
  • Order by date
  1. sandup

    functions calling parents in MFC -- how does it work?

    Most MFC functions call their parent's functions, like for instance: void CMyDoc::DeleteContents() { ...do stuff CDocument::DeleteContents(); } How do they do this? They aren't calling member functions of an *object*, they are calling member functions of a *class*. And those member...
  2. sandup

    VC++ 6.0 locks up during build

    Sometimes when there is a compile error the output window shows the error, but when I correct it, the build won't *start again* ! If I try to quit VC, it says "there is a build in progress, stop it first with Stop Build". Only Stop Build doesn't do anything. So my only recourse is to...
  3. sandup

    Media player won't play movies

    After a recent XP install, Windows Media Player doesn't play movies. It used to work fine just days ago, now it suddenly just plays the music, not the video.
  4. sandup

    Windows just keeps uploading something like crazy

    I just installed XP on a clean new system. I don't have automatic updates turned on (I checked it off), I don't have anything on this system, not even Office. When I dial up, the connection status shows a constant upload - no programs are running, the task list is empty, and still it keeps...
  5. sandup

    same hInstance in all my programs! HUUUH??

    I'm running multiple instances of the same project; I compile different projects, the instance handle is ALWAYS the same = 0x00400000. Spy++ shows it too. What's going on?
  6. sandup

    template in precompiled header?

    Say we have a template function that returns the maximum of two values. template <class T> T& max (T param1, T param2) {...} It's logical that it would compile into *two completely* separate functions if it's called once with integers, and once with, say, strings. Then, if this template is...
  7. sandup

    GDI problem: CreateSolidBrush

    Hi, I'm writing a program that updates the client area (fills it with a new color) at each WM_MOUSEMOVE. I use CreateSolidBrush, fill the area, then duly DeleteObject the brush, but still it doesn't work - after a few hundred mousemoves the brush turns white and stays white -- my guess GDI...
  8. sandup

    static member of class

    Hi, I'm doing this according to Straustrup but VC gives the error: unresolved external symbol &quot;public: static int something::N&quot; What's going on? struct something { int x; static int N; }; void main() { something::N = 0; }
  9. sandup

    Beginner's q

    Hi, I'm trying to understand this code. This is the message loop in WinMain, it keeps asking for messages. .WHILE TRUE invoke GetMessage, ADDR msg,0,0,0 .BREAK .IF (!eax) ; break if no message invoke TranslateMessage, ADDR msg invoke DispatchMessage, ADDR msg .ENDW I have a few...
  10. sandup

    Don't have MSDN

    Visual C++ 6.0 installed without the help. When I click on Help it says &quot;A required component is missing.&quot; And I can't install it from the CD, it says it can't find MSDN. How can I get MSDN?
  11. sandup

    Get rid of 'Network Neighborhood' icon

    I crashed the system and after reset Windows decided to 'restore' the registry to a previous version, which messed up everything. I have this Network Neighborhood I can't get rid of, and the Volume control icon is gone from the tray. Help?
  12. sandup

    Must unplug/plug back PC to start

    My PC won't start with the power button. I have to unplug the power cord, wait for a couple of seconds (mandatory) and then plug it back in. That's the only way it will start. It's a 4-year-old K6-II PC. Input or similar experience appreciated!

Part and Inventory Search

Back
Top