Search:

Type: Posts; User: scwizard

Search: Search took 0.01 seconds.

  1. Oh this is all caused by an old version of the...

    Oh this is all caused by an old version of the directx SDK.

    I regret not noticing this sooner.

    EDIT: Now I have this:


    game.cpp: In function `int Game_Init(HWND__*)':
    game.cpp:35: warning:...
  2. Hmm that's odd, apparently instead of a line...

    Hmm that's odd, apparently instead of a line break at the end of the file one of the files had a funny character.

    I have no idea how that happened, weird. Well stuff calmed down a bit after I...
  3. I followed the instructions on that site for "the...

    I followed the instructions on that site for "the easy way"


    In file included from C:/Documents and Settings/Administrator/Desktop/****/dx9sdk/Include/d3dx9mesh.h:15,
    from...
  4. By this do you mean that I should install the...

    By this do you mean that I should install the DirectX SDK into the MinGW folder?
  5. Thanks for the effort, but the reason I'm asking...

    Thanks for the effort, but the reason I'm asking this question is because I'm running into unexpected difficulties.

    Could you be a bit more specific? Obviously for example if I just install MinGW...
  6. The images associated with the program. ...

    The images associated with the program.

    Background converted from bmp to png due to attachment size limit. Convert back so the program doesn't complain when you run it.

    Although these images...
  7. Need help compiling example code (MinGW and DirectX9)

    I have the following tools at my disposal:
    A fresh windows install
    The Windows SDK installer
    The MinGW installer
    The DirecX9 SDK installer

    I'm trying to compile the simple program below. Its...
  8. I'm running windows on a very new laptop. I also...

    I'm running windows on a very new laptop. I also sent the program to my brother who ran it with the same result, and a few of my friends all running windows.
  9. When I ask SDL for a hardware surface I don't get one

    So to test out SDL I tried compiling the hello world program here: http://cone3d.gamedev.net/cgi-bin/index.pl?page=tutorials/gfxsdl/tut1

    Made some changes for diagnostic reasons:

    SDL_Surface...
  10. Thread: noob, ned hlp

    by scwizard
    Replies
    12
    Views
    1,611

    Hey, I know you. I know that Syphon guy. Don't...

    Hey, I know you.

    I know that Syphon guy. Don't ban him, he'll stop I promise :P
  11. Replies
    3
    Views
    2,421

    That's exactly what I'm trying to avoid. I...

    That's exactly what I'm trying to avoid.

    I know there's no such thing as LB_SETTEXT, but what I'm saying is there really should be.

    But if there really isn't, how do I go about where in the...
  12. Replies
    3
    Views
    2,421

    Editing listbox data

    I looked through the listbox controls on MSDN and they don't seem to have some kind of message like this:

    SendMessage((HWND)ListBox, LB_SETTEXT, LBindex, (LPARAM)AString);
    Easy question: So how...
  13. My appologies for not reading up on createwindow...

    My appologies for not reading up on createwindow well enough.

    Thanks for the anwser.
  14. Basic GUI question (trouble getting notifications from listboxes)

    I create my child windows (listbox, buttons etc.) with:

    switch(message) {
    case WM_CREATE:
    ListBox = CreateWindow();
    break;
    }
    So how do I process their notifications? The examples I've...
  15. FACT: People name variables funny things (until...

    FACT: People name variables funny things (until they learn better, which I most certainly haven't)

    Thanks it works now.

    Not only that, but it lead to change
    short * StringPointers; to ...
  16. Basic file input code asplode (fread issues?)

    So this code pops up a message box and the message box says: "4294934642"
    That is NOT a short. A short is two bytes with a max of 65535.
    The code returns the correct value up until...
  17. This may be asking for a bit much, but could...

    This may be asking for a bit much, but could anyone explain to me why static is necessary?
  18. Thanks, it works now :)

    Thanks, it works now :)
  19. SendMessage(add txt 2 listbox) won't work in WM_COMMAND

    When I call SendMessage(hListBox, LB_ADDSTRING, (WPARAM) 0, (LPARAM) "LOL fclose!"); inside of case WM_COMMAND: it doesn't add anything to the listbox.

    When I call SendMessage(hListBox,...
Results 1 to 19 of 19