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 SkipVought 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. Ordinary

    Need a reference guide and/or a full specification of the libraries

    MSDN Library is available via the web, http://msdn.microsoft.com
  2. Ordinary

    unresolved external symbols

    Evidently you have dirent.h because your not getting a compile-time error (or are you?). The link-time error appears because you are not linking to the object file or library file containing the compiled "closedir()" function. The header file must exist because the linker knows to...
  3. Ordinary

    multi dimensional arrays

    I may have missed the point if so please rephrase your question and I'll try again, but here's my suggestion... A notepad document is an ASCII text file. This means the file comprises lines each of which are terminated with ASCII characters 10 (0x0a in hex) and 13 (0x0d in hex). These...
  4. Ordinary

    List box

    I usually create my own listbox control be inherting from MFC's CListBox. i.e., class CMyListBox : public CListBox and then add member called something like "LogLine", which adds a string the end of the listbox scrolls to bottom of the list box using SendMessage(WM_VSCROLL...
  5. Ordinary

    CArray ERROR with pointers in VC++

    Noelia, This is very interesting but what exactly is your question?
  6. Ordinary

    Serial Communications

    I have had similar experience with HyperTerminal affecting the com ports, but usually rather negatively; like I can't talk to com port again after HyperTerminal been in there and I have to reboot. When I saw you code sample here the first thing I notice was that you didn't mention where you...

Part and Inventory Search

Back
Top