Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

TomasRiker2

@TomasRiker2
About
Posts
9
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Is SetCursorPos() Calling MouseMove ?
    T TomasRiker2

    Just remember in a "global" variable that you have done the movement so that you can then ignore OnMouseOver the next time.

    Visit my project: Derivative Calculator

    C / C++ / MFC graphics question announcement

  • Unhandled exception at..... Access violation
    T TomasRiker2

    Try to strip down your function to an absolute minimum and see if it still happens.

    Visit my project: Derivative Calculator

    C / C++ / MFC data-structures help question

  • Best way to handle errors (esp. in games)
    T TomasRiker2

    I think in error handling, performance should not be of concern. So, the "I'm writing a game, everything must be fast!" argument doesn't work here. Errors should always be the exception! :) Exceptions really help you to write smaller code. When using return values, you have to check them every time. If you forget to do so, you might miss an error. So they are really prone to bugs! Exceptions on the other hand can't be simply ignored, and I think that's good.

    Visit my project: Derivative Calculator

    C / C++ / MFC game-dev c++ graphics help question

  • GetItemDataPtr (ComboBox) Not Working For Me
    T TomasRiker2

    Probably your CString object, to which you store a pointer, doesn't exist any more when you're reading the pointer back. It looks like "sName" is declared locally and will get destroyed once the scope is exited. Then your pointer points to a region of memory that now contains something else. You can store a pointer to a CString inside your ComboBox. But you have to create this CString instance with new and not locally on the stack! And don't forget to delete it later when you don't need it any more.

    Visit my project: Derivative Calculator

    C / C++ / MFC question database help

  • Unable to write into Shared memory
    T TomasRiker2

    It could be an issue of caching ... Try to declare the structure instance with "volatile" and see if that helps.

    Visit my project: Derivative Calculator

    C / C++ / MFC c++ delphi sharepoint database performance

  • Image Processing
    T TomasRiker2

    With a circle I think it is not possible. Imagine you're looking straight from the front at the circle, then there is no way to tell the camera's rotation, as the circle is symmetric!

    Visit my project: Derivative Calculator

    Algorithms csharp help question

  • Responding To Asynchronous Functions
    T TomasRiker2

    Then you have to wait until you get the result and then decide how to continue.

    Visit my project: Derivative Calculator

    C / C++ / MFC question

  • Multiprocessor sort and search in C?
    T TomasRiker2

    Look at this one as well: http://berenger.eu/blog/2011/10/06/c-openmp-a-shared-memory-quick-sort-with-openmp-tasks-example-source-code/[^]

    Visit my project: Derivative Calculator

    C / C++ / MFC c++ question

  • Reference a struct member variable
    T TomasRiker2

    Here you see that arrays and pointers are not quite the same although they behave almost similarly. You can't change the address of an array once it was created.

    Visit my project: Derivative Calculator

    C / C++ / MFC database tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups