CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: C0deDotLoad

Search: Search took 0.02 seconds.

  1. Re: SetHandleInformation() - How to use?

    Ok the way they wrote it "The bits to be changed" sounded liking they were xoring the bits you specified. Maybe I am wrong, but seriously look how they wrote it. In any condition the program is not...
  2. Replies
    3
    Views
    887

    Re: Style of border of button

    I think igor is right on this one, You really only have to options BS_DEFPUSHBUTTON and BS_PUSHBUTTON. You can use BS_FLAT but it does not look anyway near close to the buttons you are trying to ...
  3. Re: SetHandleInformation() - How to use?

    OK your trying to do the opposite in your code. It seems to me that you set the MASK to delete the value that protects the handle from being closed then you pass 1 to the flags, you should pass it 0...
  4. Replies
    17
    Views
    2,876

    Re: New C++ versions

    Don't worry nothings changed much. These are drastic changes your talking about nothing like this is really changing.
    look at the link he basically said everything he wants to change.
  5. Re: C++ Class member function Bug Can't see it

    Well if you assume I know how to code then yes it is NULL terminated. That is done in the constructer and after that there is no way to assign it a string without it being carefully placed inside the...
  6. Replies
    2
    Views
    786

    Re: How to load icon?

    It depends on what resource editor you are using. Are you doing this from the commandline or are you using an IDE and what compiler are you using? May I remind you that when you are compiling an...
  7. Re: What to use for a GameServer Application like this

    woot you guys are awesome, I will look into these. Tyvm!
  8. Re: C++ Class member function Bug Can't see it

    #define tnews(buffername, type, size) buffername = (type *)malloc(sizeof(type) * size);


    the macros assigns a buffer to the variable you specify using malloc. New is has not been working for me...
  9. Re: What to use for a GameServer Application like this

    I was like using WINInet.h. trying to see if maybe the CHMOD on the EXEC set to the permissions to execute would cause the file to send some form of response in the form of a HTTP header I could use...
  10. Re: C++ Class member function Bug Can't see it

    opps got carried away and made that null terminating character sequence slip. I guess I have not been closing html tags very much lately I better start so that I start closing things like this more...
  11. Re: C++ Class member function Bug Can't see it

    what I didn't know was that the code tags where case sensitive.

    [CODE]
    char * mineral::GetMineralName(char * mn) {
    char * buf = 0;
    tnews(buf, char, MineralNameSize);
    for(int i...
  12. Re: C++ Class member function Bug Can't see it

    Oh come on



    oh case sensitive?


    jeez I give up
  13. Re: C++ Class member function Bug Can't see it

    [code]
    Now this is spam but I had to do it
    [\code]
  14. Re: C++ Class member function Bug Can't see it

    I don't think I know how to use code tags so obviously this question is going to go unanswered. Oh well I already can look at the thing and tell theres no bug in it. Must be something to do with the...
  15. Re: C++ Class member function Bug Can't see it

    [QUOTE=C0deDotLoad;2183823]Well this is the bug everything else is fine:. I can't see a bug in this member function? Do you? know its the bugged part of it because I checked everything else but the...
  16. What to use for a GameServer Application like this

    I want to make a server-side for game. The client being an application in your computer and ther Server on a webhost.
    The server Manages Game data an receives requests from the client and can send a...
  17. C++ Class member function Bug Can't see it

    Well this is the bug everything else is fine:. I can't see a bug in this member function? Do you? know its the bugged part of it because I checked everything else but the minute I call this function...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured