CSE Core Technologies

Revised: 13 February 2006
Home  Courses  SWTrack  Code  Handouts  StudCult  CoreTech  Books  Articles  Math  Research  CASE Projects  Project Topics  SWDev  WebDev  News  OtherLinks  SiteDesign  Graduates  AllPages  Office Hours  Seminars  Notices  Contents

CSE681-SWMAA  CSE686-IP  CSE687-OOD  CSE691-CP  CSE775-DO  CSE776-DP  CSE778-AWP  CSE784-SWS

image not found
Turing Machine by Tom Dunne
American Scientist, March-April 2002


" In spite of the cost of living, it's still popular. "
- Kathleen Norris


Web Resources:

Code Project Windows Developer's Journal Windows Forms GotDotNet

Content:

This Page provides links to Core Technologies that are needed background for several of the CSE courses.
  1. C# Programming Language
  2. C++ Programming Language
  3. Threads and Synchronization
  4. Sockets and Remote Communication
  5. Windows Programming
  6. Win32 System Programming
  7. MFC Programming Tutorials
Eventually I will be putting a sockets section here. Until I do, here are a couple of useful notes:
  1. When designing with sockets you need to #include <winsock2.h> and usually also #include <windows.h>. The ordering of these matters. You must include the winsock header first, before including the windows header.
  2. A student has reported that if you #define _WINSOCKAPI_ before #include <windows> then you can include the winsock header wherever you like.