Search:

Type: Posts; User: polo

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    1,605

    I have a dialog and in the "Dialog Properties"...

    I have a dialog and in the "Dialog Properties" under the "Styles" tab, I have "Title Bar", "System menu" & "Minimize box" checked and that disallows the dialog to be maximized even from the taskbar....
  2. Replies
    2
    Views
    919

    Using the urlmon library will allow you to use...

    Using the urlmon library will allow you to use this function:
    URLDownloadToFile(NULL, "http://www.nowhere.com/file.txt","file.txt", 0, NULL);Which is probably the easiest way to get a file of the...
  3. Replies
    2
    Views
    1,117

    WM_CREATE - window WM_INITDIALOG - dialog

    WM_CREATE - window
    WM_INITDIALOG - dialog
  4. Replies
    6
    Views
    1,163

    Try: Button1 = CreateWindow( ...

    Try:
    Button1 = CreateWindow(
    "Button", "Exit", WS_VISIBLE|WS_CHILD|BS_DEFPUSHBUTTON, 10, 10, 50, 25, Window1,
    NULL, (HINSTANCE) GetWindowLong(Window1, GWL_HINSTANCE), NULL);
  5. Thread: Random

    by polo
    Replies
    4
    Views
    996

    The techniques in the FAQ...

    The techniques in the FAQ are probably as good as any.
  6. Replies
    15
    Views
    3,720

    You only have so much time and because your...

    You only have so much time and because your hideout is near where the mission takes place, you save alot of time by getting them from your hideout.
  7. Replies
    15
    Views
    3,720

    That last mission is hard, collecting $500,000 is...

    That last mission is hard, collecting $500,000 is only the start of it. Having the sniper rifle or the rocket launcher at your hideout makes it much easier, but to get them you'll have to have...
  8. Replies
    11
    Views
    2,328

    GetWindowText( HWND hWnd, // handle to...

    GetWindowText(
    HWND hWnd, // handle to window or control
    LPTSTR lpString, // text buffer
    int nMaxCount // maximum number of characters to copy
    );& or
    GetDlgItemText(
    HWND...
  9. Thread: free web hosting

    by polo
    Replies
    5
    Views
    2,423

    http://www.freewebz.com http://www.brinkster.com...

    http://www.freewebz.com
    http://www.brinkster.com

    Both have no banners.
  10. Replies
    2
    Views
    962

    Try http://www.foosyerdoos.fsnet.co.uk/.

    Try http://www.foosyerdoos.fsnet.co.uk/.
  11. Replies
    5
    Views
    1,123

    Removing those apostrophe like things stopped the...

    Removing those apostrophe like things stopped the program from crashing but whether that is allowed, I do not know.
  12. Replies
    4
    Views
    2,196

    Create your Window with WS_OVERLAPPED to disallow...

    Create your Window with WS_OVERLAPPED to disallow it from being resized. As for disallowing your Window to be moved, you'd have to capture the WM_MOVE event and then use a function like...
  13. Replies
    3
    Views
    2,754

    You can use the system() function, here's an...

    You can use the system() function, here's an example:
    #include <stdlib.h>

    int main(void)
    {
    system("c:\\prog.exe");
    return 0;
    }
  14. Replies
    2
    Views
    2,817

    You might want to have a look at...

    You might want to have a look at http://www.asp101.com if you hav'nt already. There's some good stuff there which may be of use. Yes. There might be something at the site mentioned above.
Results 1 to 14 of 14