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. Pyropat

    simple CSockets program

    I want to use CSockets to send a text file across a network. With seperate server and client programs, what is the easiest way to do this?
  2. Pyropat

    CSockets to send RPC's

    I am creating a networked game that uses CSockets, and I need to know how I can send data and/or functions through CSockets without using files.
  3. Pyropat

    adding a carriage return to data when writing to a file

    I have some data I am sending to a file using the CFile class. I want it to start a new line after every piece of data. How do I do this? some of my code: CFile LoginFileWrite; LoginFileWrite.Open("login.txt",CFile::modeWrite); CString NewName; CString NewPass; CString NewData; NewName...
  4. Pyropat

    how do i use the "reinterpret_cast" operator?

    see subject line please
  5. Pyropat

    how do I change the font of a message box?

    I need to change it to Courier New. How do I do this?
  6. Pyropat

    how do I change the backround color for dialog boxes?

    See the subject line... thanx
  7. Pyropat

    CString to an array of chars

    I need to take a word that the user inputed from an edit box and divide it into it's individual letters. How do I do this?
  8. Pyropat

    I am trying to make a crossword puzzle generator

    I am using the Create function to make edit boxes during run-time. The following code doesn't work. I want to make an array of edit boxes but it won't do it. How can I do this? CEdit *MyBox[1] = new CEdit; MyBox[1]->Create (ES_CENTER | WS_BORDER | ES_READONLY | WS_CHILD | WS_TABSTOP |...
  9. Pyropat

    how do i make edit boxes appear during run-time?

    I am making an MFC dialog-based program. I need to have edit boxes made while my program is running. How do I do this?

Part and Inventory Search

Back
Top