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 strongm 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. williegofar

    Problem with constructors

    MORON! problem solved. Just before I decided to have my CReadTeam class inherit from my CDBF_OpenTable class, I thought about simply adding an instance of CDBF_OpenTable within CReadTeam's definition. i.e. protected: CDBF_OpenTable maybe; I then changed my mind, but forgot to remove this...
  2. williegofar

    Problem with constructors

    Thanks for the reply. CReadTeam does inherit from CDBF_OpenTable.
  3. williegofar

    Problem with constructors

    Hi, I've got a class in a DLL that has 4 constructors. LINK_TO_DLL CDBF_OpenTable( CDaoDatabase *_ciDaoDatabase, CString _SQLString, BOOL _ShowMessage = TRUE ); LINK_TO_DLL CDBF_OpenTable( CDaoDatabase *_ciDaoDatabase, CString _SQLString, CString _FieldName, CString...
  4. williegofar

    List Control, Key Trapping

    I will do, thank you.
  5. williegofar

    List Control, Key Trapping

    Thanks for the reply. I'll go and find some info about hooking (like what is it!, lol)
  6. williegofar

    List Control, Key Trapping

    Hi, I have a list control object. Within that object I want to be able to trap key presses to allow other processes to 'kick off'. I have been able to get this to work via the LVN_KEYDOWN message. My problem however, is that is that I don't want the list control to also carry out it's normal...
  7. williegofar

    LVN_BEGINLABELEDIT - PostMessage

    Great, That fixed it. Thank You!
  8. williegofar

    LVN_BEGINLABELEDIT - PostMessage

    Hi, I have a dialog app that contains a list control. I want to be able to press F2 to edit a list control entry. My code is ready to handle the F2 key press and ready to handle LVN_BEGINLABELEDIT & LVN_ENDLABELEDIT (I know because I stumbled onto the fact that holding down the left mouse...
  9. williegofar

    newbie - vectors - tearing my hair out

    Fantastic, it worked! As suggested I used std::vector<int> blob; I’m unclear as to what std:: means and why I have to use it, but that can wait for another day. Thank you very much for your help.
  10. williegofar

    newbie - vectors - tearing my hair out

    Thanks for the reply It does appear to be finding the header file. If I change #include <vector> to <vector.h> I get; D:\source\test54\test54.cpp(5) : fatal error C1083: Cannot open include file: 'vector.h': No such file or directory The file 'vector' in the include directory is dated june 98...
  11. williegofar

    newbie - vectors - tearing my hair out

    last week i had a look at the basics of vectors, without a problem. i deleted that code and this week wanted to use them in a small program. i don't know what i'm doing wrong, but the following simple little program won't compile; #include &quot;stdafx.h&quot; #include <vector>...

Part and Inventory Search

Back
Top