Search:

Type: Posts; User: Arrow Mk 84

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,409

    You can do that with Sun Java? I knew you could...

    You can do that with Sun Java? I knew you could with MS's Java implementation, but didn't know you could with Sun's. I'll take a look at the project options that Forte/Netbeans gives me. Thanks.
  2. Replies
    2
    Views
    2,409

    How to use Java with C++

    I have a robust Java charting package that I need to use in a C++ COM object. I don't know too much about how to get Sun Java and C++ to work together, so I need some suggestions on how to approach...
  3. Replies
    2
    Views
    2,067

    Because my program already uses DirectInput, and...

    Because my program already uses DirectInput, and I found to be much better suited to purpose and easier to use than writting a Win32 callback.

    So, does anyone know if this function exists or will...
  4. Replies
    2
    Views
    2,067

    DirectInput key lookup function?

    Does anyone know if a function exists in DirectInput where I can input an ascii character (or array, in the case of caps lock, etc.) and get a return value of the matching key's DIK code?
    ...
  5. Replies
    0
    Views
    2,153

    Popup windows with CFrameWnd

    I'm using the MFC CFrameWnd class as the base class for the main window of my application, an OpenGL based scenegraph viewer (OpenSceneGraph, specifically). I'm creating the window as a popup window...
  6. Replies
    13
    Views
    2,603

    (Hopefully this thing will log me in...) Now...

    (Hopefully this thing will log me in...)

    Now that I have more access to the Win2k box, hopefully we can figure this thing out.

    I traced through the code and found that the problem is in my...
  7. Replies
    13
    Views
    2,603

    Good to know 98SE works. Any success with 2k/XP?...

    Good to know 98SE works. Any success with 2k/XP? (I gotta get another box...)
  8. Replies
    13
    Views
    2,603

    Ok, I stripped out all of the window styles...

    Ok, I stripped out all of the window styles except WS_POPUP. Hopefully this will work better. And I also added exception catching for errors from the render. The error log should pick up anything...
  9. Replies
    13
    Views
    2,603

    Did it work if you commented out WS_POPUP?

    Did it work if you commented out WS_POPUP?
  10. Replies
    13
    Views
    2,603

    Passing NULL as the last parameter causes an...

    Passing NULL as the last parameter causes an access violation. NULL works fine for the other three parameters. If no one else can think of anything I guess I just have to get more time on that Win2k...
  11. Replies
    13
    Views
    2,603

    Here it is. If it works, you should see a three...

    Here it is. If it works, you should see a three color triangle (red, blue, green) 'orbiting' a point in the top half of the screen (I'm still learning OpenGL; Win32 for that matter...).

    I've also...
  12. Replies
    13
    Views
    2,603

    WS POPUP and Windows 2000

    I'm writing a 3D viewer using OpenGL, which uses a fullscreen window. I'm using the WS_POPUP style to get a window with no boarders or title bar. This works fine on my Win98SE system, but when I took...
  13. Replies
    4
    Views
    2,532

    DOH! You nailed right on the head. That little...

    DOH! You nailed right on the head. That little typo was frustrating. Thanks for the catch (that's two problems of mine that you've solve). I've been the project settings lots of times too and never...
  14. Replies
    4
    Views
    2,532

    Ok, this problem is still a MAJOR pain. Now I'm...

    Ok, this problem is still a MAJOR pain. Now I'm trying to use LoadLibrary to call the function (someone over at gamedev said that it looked like the gdi32 library was being unloaded before I called...
  15. Replies
    4
    Views
    1,092

    There is some way to tell your program what...

    There is some way to tell your program what database to use, but I personally don't know how to do it. I would search the net for SQL tutorials.

    Owwww. A quick search of MSDN has shown an MFC...
  16. Replies
    4
    Views
    2,532

    Well I figured out how to get my program to...

    Well I figured out how to get my program to display more than one window, but still no luck with ChoosePixelFormat. Anybody have any suggestions? Please?
  17. Replies
    4
    Views
    2,532

    ChoosePixelFormat blues...

    I'm trying to create an OpenGL window wrapper class and ChoosePixelFormat is giving me on heck of time. In the attached code (OpenGLWindow.cpp, OpenGLWindow::CreateOGLWindow() ), I create my base...
  18. Actually, I'm not sure how much we'll be using...

    Actually, I'm not sure how much we'll be using ShowWindow (also, I actually got everything to place nice together in a C++ wrapper). This is the foundation for group senior year college project that...
  19. Wow. Good catch on the MessageLookupTable. I had...

    Wow. Good catch on the MessageLookupTable. I had a logic error in its search loop that cause it the method that looks up the message handlers was looping though the entire table for EACH message....
  20. Thanks for your reply. I made the change you...

    Thanks for your reply. I made the change you suggested, and the window now appears (slowly, as if it stalls). When I place the mouse over the window, the I get the hour-glass cursor. Ctrl-alt-delete...
  21. I looked at the WNDPROC function as you suggested...

    I looked at the WNDPROC function as you suggested (and rewrote half of my code so that the WNDPROC is a global C function instead of a static function in a C++ wrapper). Their seems to be a problem...
  22. ShowWindow causing Access Violations - please help

    I'm trying to write a WIN32 API C++ wrapper (and I'm new to WIN32 programming but I think I understand the concepts fairly well), and I'm hitting a problem with the ShowWindow(HWND hWnd, int...
Results 1 to 22 of 22