Search:

Type: Posts; User: RedZone

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    4,791

    Perfect, this works exactly as planned. Thanks.

    Perfect, this works exactly as planned. Thanks.
  2. Replies
    4
    Views
    4,791

    I'm sending a message directly to the button on...

    I'm sending a message directly to the button on the dialog with

    SendDlgItemMessage(hDlg, IDC_OKAYBUTTON, BM_SETIMAGE, (WPARAM)IMAGE_BITMAP, (LPARAM)LoadBitmap(GetModuleHandle(NULL),...
  3. Replies
    4
    Views
    4,791

    Remove dialog button border

    I'm having a problem with the dialog button control. I have loaded a bitmap over the button (successfully), however, the border around the button remains. I've made sure that there's nothing...
  4. Replies
    2
    Views
    1,176

    Wow, that was unusually simple, and here I was...

    Wow, that was unusually simple, and here I was looking at string.h for reference. Thanks.
  5. Replies
    2
    Views
    1,176

    Insert into string at specified index?

    Using C strings is there such a way as to insert a string into another one at a specified index? So far I have it working successfully by


    strcpy(CommandBuffer, "PRIVMSG ");...
  6. Replies
    2
    Views
    1,598

    Thanks for the help, fixed everything and it...

    Thanks for the help, fixed everything and it works just as I wanted it to.
  7. Replies
    13
    Views
    3,289

    Windows XP This is helpful but MSDN tells...

    Windows XP



    This is helpful but MSDN tells me that I need Vista.
  8. Replies
    13
    Views
    3,289

    Getting the path file of your program?

    If I wanted to get the full path of my running program is there a C++ equivalent to App.Path or does this have to be done in a long and tedious process?
  9. Replies
    2
    Views
    1,598

    IRC get/send messages help

    Basically, I've decided to mess around with sockets and create a telnet style IRC client. However, I am having a problem with the program getting the chat from the server channel and simultaneously...
  10. Replies
    0
    Views
    1,116

    Adding external windows to dialogs [how?]

    I've recently been wondering how one would go about adding an external window into a created dialog. e.g. I create a dialog and want Notepad to become part of it when Notepad is launched. If its...
  11. Replies
    9
    Views
    1,548

    If you're doing it the old way like hes doing...

    If you're doing it the old way like hes doing [#include <iostream.h>] then you need windows.h
  12. Replies
    9
    Views
    1,548

    Could use cin.get(); instead of system("PAUSE");...

    Could use cin.get(); instead of system("PAUSE"); so you dont have to include windows.h.
  13. Replies
    5
    Views
    1,325

    I dont use Dev-C++, it compiles/runs fine for me...

    I dont use Dev-C++, it compiles/runs fine for me using VC++. Try adding return 0; at the end of main, that -might- solve it.
  14. Thread: Bitwrap

    by RedZone
    Replies
    15
    Views
    2,041

    Might be wrong, but isnt it always a 0 thats...

    Might be wrong, but isnt it always a 0 thats added in bit shift?
  15. Replies
    30
    Views
    6,471

    Download link 1...

    Download link 1
    Download link 2
  16. Thread: Fullscreen

    by RedZone
    Replies
    2
    Views
    937

    ShowWindow(hWnd, SW_SHOWMAXIMIZED);

    ShowWindow(hWnd, SW_SHOWMAXIMIZED);
Results 1 to 16 of 16