Search:

Type: Posts; User: JoeCoder

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    1,714

    Well, I have come up with a better way to create...

    Well, I have come up with a better way to create a wizard that actually works. Property Sheets have their places and Wizards just isn't one of them! :mad:
  2. Replies
    7
    Views
    1,714

    All of the dialogs have been created with the...

    All of the dialogs have been created with the "WS_CHILD" style. Also, the code has been placed in each dialog's "WM_INITDIALOG".
  3. Replies
    7
    Views
    1,714

    No dice. :( I added the code below as suggested...

    No dice. :( I added the code below as suggested by knutso (thanks!) but it did not work! :mad:



    GetClientRect(GetParent(hdlg), &rc);
    MoveWindow(hdlg,...
  4. Replies
    7
    Views
    1,714

    Centering Wizard?

    Hey guys! I'm back with yet another problem. I have created an install wizard using Win32 API Property Sheets. As a parent, I have also created a gradient window. Like most installers, I want my...
  5. Replies
    3
    Views
    1,825

    Ok; I fixed it! Inside of the Dialog Procedure...

    Ok; I fixed it! Inside of the Dialog Procedure for each page, under "WM_NOTIFY", you need to put:


    case PSN_QUERYCANCEL:
    {
    LRESULT lAskUsr =...
  6. Replies
    3
    Views
    1,825

    From inside of the GetMessage loop: if(hwnd...

    From inside of the GetMessage loop:


    if(hwnd && (NULL == (HWND)PropSheet_GetCurrentPageHwnd(hwnd)))
    {
    LRESULT lAskUsr = MessageBox(hwnd,szMbText,szMbTitle,MB_YESNO|MB_ICONQUESTION);
    if...
  7. Replies
    3
    Views
    1,825

    Preventing Cancel?

    Hi! I have created a wizard using Win32 API Property Sheets. When the user presses the "Cancel" button, I want them to be able to confirm that they actually wish to exit. I put something together...
  8. Replies
    10
    Views
    3,064

    Allright; I didn't manage to get the Wiz97...

    Allright; I didn't manage to get the Wiz97 example working but I did manage to get a boiled-down version of what Sean posted working like a charm. Thank you guys for all of your help! :D

    P.S. - I...
  9. Replies
    10
    Views
    3,064

    Well, Dev C++ 5 seems to have a problem with that...

    Well, Dev C++ 5 seems to have a problem with that code. Here are the errors:


    [Linker error] undefined reference to `CreatePropertySheetPageA@4'
    [Linker error] undefined reference to...
  10. Replies
    10
    Views
    3,064

    Thank you Codeplug; I just did a little digging...

    Thank you Codeplug; I just did a little digging and found that tutorial myself. My gratitude, anyhow! ;)
  11. Replies
    10
    Views
    3,064

    Well, I extracted the necessary parts and then...

    Well, I extracted the necessary parts and then looked up PropertySheets on MSDN but it seems that they were only intended to be used under Windows 95! :(
  12. Replies
    10
    Views
    3,064

    Thank you, Sean. I'll definately look into that!

    Thank you, Sean. I'll definately look into that!
  13. Replies
    10
    Views
    3,064

    Making a wizard w/ Win32 API?

    Hi guys! I am attempting to make a setup wizard for one of my programs. I have been struggling with this for the past week. I have finnally gotten it to switch pages using "SetWindowText()" to change...
Results 1 to 13 of 13