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 Shaun E 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. mishou

    ODBC Multitable database question

    Use as follows: CEditUsersDlg dlg; //populate the members of the dlg with the data from m_pSet if (dlg.DoModal==IDOK) { //do something with the data in the dialog, i.e. put it back in m_pSet }
  2. mishou

    Multimedia Data Read in Problem

    try playing with the size of the chunk, but 20meg/s are hard to achieve (take into consideration the hard-drive, its fragmentation status a.s.o)
  3. mishou

    Buffer Pointers

    currentBuffer must not be greater than 9! (Ir runs from 0 to 9). So: //instead of . if(currentBuffer > 10) . // use . if(currentBuffer > 9) .

Part and Inventory Search

Back
Top