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 Mike Lewis 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. hwnd216

    CSocket help please

    what u can do is derive a class from CSocket and override the onRecieve() virtual funtion which will tell the socket when data is coming then u can use Recieve() fuction to recieve the data.so there is no need to wait when the data is going to come CMySocket:public CSocket { // overide...
  2. hwnd216

    Local Device Context

    if ur using the fucntion in ondraw whydont u send the pDC in OnDraw fuction as parameter to GetSquare and then u can directly draw to the DC or u can create a compatible bitmap and return the bitmap and then bitblit it the second is round about way i prefer the first one
  3. hwnd216

    Error: "Access is denied"

    execute dcomcnfg and chage the privelegs to interactive user
  4. hwnd216

    can i inherit a tamplated class?

    yes you can do it
  5. hwnd216

    Help changing application's size to full screen at startup

    try WS_OVERLAPPED | WS_POPUP
  6. hwnd216

    VC++ MFC Menus

    You can use CMenu for creating menu's runtime member functions like create will create a menu and u can use AppendMenu to create a menu item. If u want to create a popmenu u have to use CreatePopmenu and then u can use Insert Menu. for exampel CMenu menu,menu1; menu.CreateMenu()...

Part and Inventory Search

Back
Top