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: *

  1. Andyrau

    C++ test

    www.brainbench.com is pretty good. Andyrau
  2. Andyrau

    generic class problem

    Either if your Sorter class was not created using the MFC Wizard, or if your Sorter class is not an MFC class, you will get that message. I used to face this problem myself. So, just add this statement as the first line in the Sort.cpp file: #include "stdafx.h" It should work after...
  3. Andyrau

    String type as argument in function.

    Since you are using MFC, u can use the class wizard to assign a CString variable to the edit box. U can do this only if you have created the edit box in the resource generator. Then the function would look like: int looking(CString name) { UpdateData(); return (name.Compare(name1)); //...
  4. Andyrau

    c

    So what does one use to program this embedded software ? Is Windows CE 3.0 a kind of embedded OS ? Andyrau
  5. Andyrau

    New to Visual C++ / Need Links to Information

    www.codeguru.com has good code snippets, examples, and demos for Visual C++ development. It has many other interesting things also - the site is a must-see. Andyrau
  6. Andyrau

    Win32 Multithreading

    When I required help for win32 multithreading, I found the MSDN very helpful. Searching on www.google.com is also a good place to start.
  7. Andyrau

    hi, I want to know if there is a

    The keyword inline lets the compiler know that it need not create separate stack space for the function. Instead whenever the compiler finds the function-call, it will replace it with the function body directly thus making the function-call faster (so, for functions whose bodies are maybe a...

Part and Inventory Search

Back
Top