Search:

Type: Posts; User: Noose

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    3,404

    float to Binary (Ex. 15.375 = 1111.011b)

    I was wondering if someone could shed some light on this. Some calculators output their binary numbers this way, Ex. 15 = 1111.b, 15.375 = 1111.011b. How would you create a binary string "1111.011b"...
  2. Replies
    3
    Views
    1,032

    Thanks all, that worked.

    Thanks all, that worked.
  3. Replies
    3
    Views
    1,032

    .NET 2003 IDE Question

    I need to execute a batch file after I build a lib to copy the lib to a different directory.
    Right now I build, then use windows explorer to run the batch file and copy the lib to where I need it....
  4. Replies
    1
    Views
    977

    MDI App help - point me in right direction

    (WIN32 API)
    Im familiar with win creation and controls but Im having trouble finding info on something, probably because I dont know exactly what its called. In a MDI application Ive seen four...
  5. Replies
    2
    Views
    7,920

    DLL compiling question

    Hope someone can figure this out for me or point me in the right direction cause this is a lingering problem I cant seem to figure out.
    I have a solution (workspace) that contains a bunch of...
  6. Replies
    6
    Views
    2,102

    Yes you are right, I can see if your making...

    Yes you are right, I can see if your making several function calls with this singleton within a single function it would be best to store the pointer at the top of the function and call however many...
  7. Replies
    6
    Views
    2,102

    Bad practice or acceptable?

    Say you have a singleton thats accessed like this ....

    SomeSingletonClass::Instance()->FunctionCall();

    would doing ....

    #define gSomeSing SomeSingletonClass::Instance()

    and then making...
  8. Replies
    4
    Views
    2,792

    Forgot, WinProc is static. Note: no this-> in...

    Forgot, WinProc is static.
    Note: no this-> in static member functions.

    yes i know about error handling, just stating that i have seen 0 passed instead of GWL_USERDATA at times when trying to do...
  9. Replies
    4
    Views
    2,792

    W32 message routing

    I think ive read just about every article and post on the internet relating to this subject and rewritten this code in about 20 different ways. Aside from the strange results from different ways of...
  10. Replies
    5
    Views
    5,362

    OpenGL is a graphics API, it requires a window to...

    OpenGL is a graphics API, it requires a window to display itself in, GLUT is OpenGL wraped into a little toolkit to help make using OpenGL quicker. It can handle input to quickly get an app going,...
  11. Replies
    4
    Views
    1,347

    Thats the right way to create it but never...

    Thats the right way to create it but never "free()" "new"

    malloc() you free()

    new you delete

    or if its an array of objects

    delete[]
Results 1 to 11 of 11