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 bkrike 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: *

  • Users: oaquao
  • Content: Threads
  • Order by date
  1. oaquao

    Opening a query thru code

    I have a sub where I'am trying to open up an existing qry and this error is generated: Run time error 3265 Item cannot be found in the collection corresponding to the requested name or ordinal The spelling of the qry is correct. Dim cmdCurr As New ADODB.Command Dim catGetParamQry As New...
  2. oaquao

    Email Automation with Outlook

    I am exporting files to a number of clients, by looping thru a recordset, I have found that I have to set the object in the loop otherwise it appears that the object is sent and only the first record will be sent. This doesn't seem like the proper way to code this. Any suggestions on the proper...
  3. oaquao

    Remove items from combo box

    Hello, I have 2 combo boxes cmbMuscleGroup cmbMusclePart. When I choose an item from cmbMuscleGroup ex.chest the corresponding items appear in the cmbMusclePart ex. upper,middle,lower If a mistake was made and I wanted to change cmbMuscleGroup, I want to remove the items from cmbMusclePart...
  4. oaquao

    edit box

    I have an MFC dialog based application, I have two forms and when I click a button on the first form I want to set the text of an edit box on the second form to a variable. scoreDlg.DoModal();//second form m_editScore.SetWindowText(score);//edit box on second form Thanks for any help oaquao
  5. oaquao

    using GetWindowText()

    I'am trying to retrieve the text from an edit box. long WINAPI MainWndProc(HWND hWnd,UINT msg,WPARAM wParam, LPARAM lParam){ HWND hwndCtl=(HWND) lParam; int nMaxCount=30; char* str; switch (msg) { case WM_GETTEXT: if (hwndCtl==hWndEditQues1)...
  6. oaquao

    error handling

    I'am a student who has just started C++ and for practice I'am writing a simple game. I have checked the archives and found nothing pertaining to this. If a user enters improper data such as a number or nothing I want to correct it. struct player { char firstName[ArSize]; int score; }...

Part and Inventory Search

Back
Top