Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 9 of 9
  1. #1
    Join Date
    Jun 2005
    Posts
    19

    Application.minimize

    Ok, all I want to do is minimize the setup application on the begining of a screen. I can get the setup application to minimize, but it instantaniously goes back to it full state. How do I minimize the app so that it stays in the system tray?

    Carter

  2. #2
    Join Date
    Oct 2004
    Location
    Columbia, MD
    Posts
    5

    Re: Application.minimize

    Hoping someone answers Carter's question on this, because I would really like to know the answer too...

    --- janet

  3. #3
    Join Date
    Oct 2004
    Location
    Columbia, MD
    Posts
    5

    Re: Application minimize

    Actually my question has mutated. I can see how to minimize the (current) screen:

    local screenProp = Screen.GetProperties();
    Application.Minimize( screenProp.WindowHandle );

    But, I was hoping to find a way to add a standard minimize icon to the title bar of my screens so that my user can do this from any screen without my having to add buttons or other logic. I suspect the answer is no, you can't do that, but just checking to see if I'm missing it...

    Thanks -

    --- janet

  4. #4
    Join Date
    May 2000
    Location
    Indigo Rose Software
    Posts
    2,150
    There is no way to add a minimize button to the title bar of the runtime. On most screens there is a button that is not used, it is called the "Help" button but you can change the text to anything that you want. You could then assign the minimize code to this button on each page.

    Adam Kapilik

  5. #5
    Join Date
    Jun 2005
    Posts
    19
    Ok, I have worked out a little of what is going wrong, just no solution yet. I have put the Application.Minimize on the preload portion of the actions palette. The installer app minimizes and then restores almost instantly. What I need to be able to do is hit my "Register" button on previous screen and have the installer app go to the next screen and THEN minimize.

    How can I do this?

    Pulling what little hair I have left out.....

    Carter

  6. #6
    Join Date
    Jun 2005
    Posts
    19
    thought I would post more detail on what I have going on.

    This is on Screen Six's Next button
    ---------
    urlfile = ("http://www.xxx.com");
    File.OpenURL(urlfile, SW_SHOWNORMAL);
    -- advance to next screen
    Screen.Next();
    ----------

    This is on Screen Seven's Preload
    ----------
    Application.Minimize();
    ----------

    I would settle for minimizing the installer or changing the order and moving the installer app the bottom of the order.

    I can get the installer to do either but a soon as I put the File.OpenURL code in there the installer will minimize but then instantly restore so I cannot see the webpage behind the installer. I need to be able to see the webpage to finish the registration.

    Any ideas?

    Carter

  7. #7
    Join Date
    Jun 2005
    Posts
    19
    ttt...

    I desperately need to solve this. If not I will have to abandon this project and move to a different installer idea. This is an already shipping install so I would REALLY like to fix this on our next update.

    Carter

  8. #8
    Join Date
    Jan 2000
    Posts
    2,002
    We will look into this. REF: 11012

  9. #9
    Join Date
    Jun 2005
    Posts
    19
    Quote Originally Posted by Brett
    We will look into this. REF: 11012

    I can send a simple test to show what is happening?

    Carter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts