Without Minimize And Maximize Button

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Samio
    Forum Member
    • Nov 2006
    • 191

    Without Minimize And Maximize Button

    I Want To Remove Maximize And (OR) Minimize Button From Title Bar.
    It Is Possible.
    Click image for larger version

Name:	Close.png
Views:	1
Size:	5.1 KB
ID:	286046
  • Loes
    Indigo Rose Customer
    • Dec 2007
    • 81

    #2
    You can set the project to play without a title bar. (via menu Project > Settings > Style: choose Flat or Bordered).
    Then you can create a text object with the title of your project to appear on all pages, plus a close button with a quick action "Exit/Close", also appearing on all pages.

    Hope this helps,

    Loes

    Comment

    • Samio
      Forum Member
      • Nov 2006
      • 191

      #3
      Hi.Thanks.
      But I Have Need Remove It Without Use Any Picture Or Button.

      Comment

      • Loes
        Indigo Rose Customer
        • Dec 2007
        • 81

        #4
        Hmm, then you will need help from the smart scripting guys out here in the forum to see if it's possible to have a title-bar without the minimize and maximize buttons.

        Loes

        Comment

        • Worm
          Indigo Rose Customer
          • Jul 2002
          • 3971

          #5
          put this code on the Preload event of you page. It should remove both the Minimize and Maximize buttons from the window.


          You'll need the free plugin from jassing to do the bitwise stuff...

          Here's the link


          Code:
          nGWL = DLL.CallFunction(_SystemFolder.."\\User32.dll", "GetWindowLongA", Application.GetWndHandle()..",-16", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL)
          nGWL = BitWise.BitAnd(nGWL, -131073)
          nGWL = BitWise.BitAnd(nGWL, -65537)
          nGWL = DLL.CallFunction(_SystemFolder.."\\User32.dll", "SetWindowLongA", Application.GetWndHandle()..",-16,"..nGWL, DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL)

          Comment

          • reteset
            Indigo Rose Customer
            • May 2006
            • 1692

            #6
            it is possible any time with this plugin
            you can remove any button on caption , and restore to original when you want
            get this plugin and try example
            Attached Files
            amsplugins.com Is Closed.

            Facebook Page

            Comment

            • Samio
              Forum Member
              • Nov 2006
              • 191

              #7
              Originally posted by reteset View Post
              it is possible any time with this plugin
              you can remove any button on caption , and restore to original when you want
              get this plugin and try example
              http://www.indigorose.com/forums/sho...9&postcount=15
              Thanks,Dear reteset.

              Comment

              • Samio
                Forum Member
                • Nov 2006
                • 191

                #8
                Thanks,Dear reteset.

                Comment

                Working...
                X