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 TouchToneTommy 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. DarkAlchemist

    STL and structs/classes

    This is what I came up with but it refuses to compile can anyone tell me what is wrong? class Country { public: std::string CountryName; std::string PersonsName; std::string Coords; }; std::vector <Country> places; Country d; int main(int argc...
  2. DarkAlchemist

    windows Text and lining up columns

    Back when all fonts were fixed at 8x8 you could use a simple formula saying if you wanted your 2nd column to line up at position 40 it was simple to for (int x = 0; x < 39; x++) print[space] Now that we have true type fonts how do you implement that so at position 40 (regardless of the font...
  3. DarkAlchemist

    StrProper in C++

    Is there a function like Strlwr and StrUpper but for making a proper case for us C++ users? If so where is it? :) Thanks.
  4. DarkAlchemist

    Here is a tricky I am stuck at.

    I have 2 strings like so a = Focus b = Coordination now I need to call a function like so m_pCharStats->GetSkill(DecalFilters::eAttributeFocus) and m_pCharStats->GetSkill(DecalFilters::eAttributeCoordination) How can I do this in a compiled framework? In a script environment I could simply...
  5. DarkAlchemist

    enum help needed.

    I have a structure and a function that uses enum XXXX *pVal this and I have never enum like that before. Does anyone have any ideas what parameter I need to create to call the function? Here is what they look like: STDMETHOD(get_Training)(/*[out, retval]*/ enum eTrainingType *pVal)...

Part and Inventory Search

Back
Top