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 Wanet Telecoms Ltd 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: jennyy
  • Content: Threads
  • Order by date
  1. jennyy

    is it valid to return an stl data type from a function?

    Is it possible to use an stl data type as the return type of a function? (see code below for an example). Also, can stl data types and iterators be passed by reference? set<Action> Init::AllPossibleActions() { class Action f(0); class Action t(1); set<Action> all...
  2. jennyy

    error with stl push_front in release version only

    Does anyone have any ideas about what's causing the following behavior? When I run my code that includes an stl list push_front in debug mode, it runs fine. When I create a release version with partial debugging enabled, and run with my program with the .net option &quot;start&quot; it runs...
  3. jennyy

    Dialog box stopped working

    Help! Using Visual C++ .net: My dialog box (IDD_EXPERIMENT_OPTIONS) was working just fine and I swear I didn't touch any of its portion of the code (uh-huh sure), and all of a sudden it stopped working (gasp)! I've even restored saved copied of correct old code, and those aren't working anymore...
  4. jennyy

    STL set error with release version only

    What's wrong with this code? (Where have have inserted a comment, the program sometimes has an error report in the release version, but this seems to never happen in the release version) using namespace std; set<Action> AllPossibleActions() { class Action f(0); class Action t(1)...
  5. jennyy

    Dialog box suddenly stopped showing : Visual C++ .net

    Help! Using Visual C++ .net: My dialog box was working just fine and I swear I didn't touch any of its portion of the code (uh-huh sure), and all of a sudden it stopped working (gasp)! Below are the relevant portions of the code: The function ExperimentOptions is being called but it never gets...

Part and Inventory Search

Back
Top