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 SkipVought 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. FloViel

    Tclpp or any other OOP-Extension

    Thank you for your replies!!! I think I will try to switch to [incr Tcl] then because it seems to be much more complete than Tclpp (although not as "light-weighted").
  2. FloViel

    Tclpp or any other OOP-Extension

    Hi all! I was wondering if anyone of you is currently using Tclpp in order to be able to program OO in TCL. If that's not the case, what other extensions do you use for that purpose??? Greetings, Florian
  3. FloViel

    Dynamically Allocated Arrays of Objects

    Well, the consequence for this "stub" is that your programm will crash. Simply said. :-) As Matt already said, delete will begin deleting at (pseudo) address 124 and it tries to delete 5 "ints". This causes a memory error, which leads to the crash. Greetings, Flo
  4. FloViel

    Program Memory usage problem

    Well, as far as I see it, your program is completly correct! No memory leaks.
  5. FloViel

    Program Memory usage problem

    Hmm, are you sure you called the delete-operator correctly? When you allocate an array, you should do it like this: Something* blabla = new Something[100]; // ... delete [] blabla; Otherwise I would suggest using a tool like BoundsChecker to check for MemoryLeaks or memory errors.
  6. FloViel

    Issue with Classes

    Well, maybe the constructor never gets called, because you don't have an instance of your class???? Or maybe you didn't call ShowWindow()??? A bit of code would be helpful here.
  7. FloViel

    TK Window and DirectInput

    Hi all! I'm new to this forum and I've got a question regarding the TK toplevel-windows. When I create a TK toplevel-window, what process does this window then belong to???? The requirement for DirectInput to capture the input for a window is that the window is a toplevel window and belongs to...

Part and Inventory Search

Back
Top