Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

xDialog controlpanel anomoly

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    xDialog controlpanel anomoly

    Add this code to an existing app, but make sure no forms or other windows in Alpha are open.

    Create a new script using the code below.
    Run the script.
    Click "ControlPanel Hide" from the xdialog
    Click "ControlPanel Show" from the xdialog

    The CP doesn't show.

    Close Alpha and this time first open a form, then repeat the above.
    now the CP properly displays.

    Can someone verify this behavior and possibly explain it.

    Code:
    'Date Created: 21-Jan-2014 03:26:47 PM
    'Last Updated: 27-Jul-2014 05:00:17 PM
    'Created By  : pgreulich
    'Updated By  : pgreulich
    
    
    DIM SHARED xMenu as C
    dim tb_xMenu_xml as c 
    
    
    tb_xMenu_xml = <<%xml%
    <toolbox animate="false" type="List" theme="NATIVEWINXP" >
    <category name="Utilities" state="Open"  >
        <item text="ControlPanel Show" icon="$$generic.add.small" data="" onclick="Script:scpCP_Show"  />
        <item text="ControlPanel Hide" icon="$$generic.remove.small" data="" onclick="ControlPanelHide"  />
    </category>
    <category name="Test" state="Closed"  >
    
    
    </category>
    
    
    </toolbox>
    %xml%
    
    
    dim sm as p 
    sm = XMLSchemaManager.get()
    
    
    dim tb_xMenu as p 
    tb_xMenu.xml_def = sm.LoadXML(tb_xMenu_xml)
    
    
    dim xMenu as c 
    xMenu = ""
    
    
    vLeft = 0
    vTop = 1
    vPos = "{position="+alltrim(str(vLeft))+","+alltrim(str(vTop))+"}"
    
    
    vTitle = "Production Menu"
    
    
    dlg_Menu = <<%dlg%
    {include=vPos}
    {position=remember=XD_MenuPos}
    {region}
    {font= arial, 10, b }
    {Toolbox=40,45xMenu^=tb_xMenu};;
    {endregion};
    {line=1,0};
    {region}
    {font= arial, 10, n }
    <%I=$a5_close;O={I=1} {J+C}Close; %15,1.1Close>
    {endregion};
    %dlg%
    ''-------------------------------
    event_Menu = <<%code%
    If a_dlg_button = "ControlPanelShow" then 
        a_dlg_button = "" 
        
        ControlPanel.Show()
        ControlPanel.Activate()
    end if
    
    
    If a_dlg_button = "ControlPanelHide" then 
        a_dlg_button = "" 
        
        ControlPanel.Hide()
    end if
    
    
    IF a_dlg_button = "Close"
        ui_modeless_dlg_close(vTitle)
    END IF
    
    
    %code%
    ''-------------------------------
    ui_modeless_dlg_box(vTitle,dlg_Menu,event_Menu)
    Peter
    AlphaBase Solutions, LLC

    [email protected]
    https://www.alphabasesolutions.com



    #2
    Re: xDialog controlpanel anomoly

    Should this be in desktop section?
    thanks for reading

    gandhi

    version 11 3381 - 4096
    mysql backend
    http://www.alphawebprogramming.blogspot.com
    [email protected]
    Skype:[email protected]
    1 914 924 5171

    Comment


      #3
      Re: xDialog controlpanel anomoly

      Thanks Gandhi.
      Peter
      AlphaBase Solutions, LLC

      [email protected]
      https://www.alphabasesolutions.com


      Comment


        #4
        Re: xDialog controlpanel anomoly

        Peter, I can confirm this behaviour. I believe this has always been the case. If there are no other windows open. ie form , browse, report etc then when you close the control panel the current app closes. The app just seems to be open because the xdialog is still there. I am guessing the xdialog stays up because it is in a separate session of some sort. The xdialog is behaving dialog like. if you get what I mean.
        Tim Kiebert
        Eagle Creek Citrus
        A complex system that does not work is invariably found to have evolved from a simpler system that worked just fine.

        Comment


          #5
          Re: xDialog controlpanel anomoly

          Nope!
          Can't test in your version as I do not have it, but:
          1-You do not have to close/re-open alpha. Go to IW and type:
          ControlPanel.Show()
          It will show

          2-This works fine:
          Code:
          ui_dlg_box("",<<%dlg%
          <show><hide><cancel>;
          %dlg%,<<%code%
          if a_dlg_button="show"
          	a_dlg_button=""
          	ControlPanel.Show()
          end if
          
          if a_dlg_button="hide"
          	a_dlg_button=""
          	 ControlPanel.hide()	
          end if
          %code%)
          Something wrong in your xml construct, most likely the onclick event which specify a script which I do not see.

          Comment


            #6
            Re: xDialog controlpanel anomoly

            G, if you change your example to a modeless dialog (ui_modeless_dlg_box) then it behaves the same as Peter's sample.

            I did change Peter's xml to match the event code.

            I am testing in v11
            Tim Kiebert
            Eagle Creek Citrus
            A complex system that does not work is invariably found to have evolved from a simpler system that worked just fine.

            Comment


              #7
              Re: xDialog controlpanel anomoly

              Thanks Tim. So when I hide it I'm actually closing the app? Interesting.

              Gabe, if you find a workaround, let me know.
              Peter
              AlphaBase Solutions, LLC

              [email protected]
              https://www.alphabasesolutions.com


              Comment


                #8
                Re: xDialog controlpanel anomoly

                I wonder what is so different in V11 to V10.5?
                Peter in v10 your code opens and empty dialog down the left with nothing but "Close" Button

                Comment


                  #9
                  Re: xDialog controlpanel anomoly

                  Originally posted by Tim Kiebert View Post
                  G, if you change your example to a modeless dialog (ui_modeless_dlg_box) then it behaves the same as Peter's sample.
                  Works fine in modeless as well, at least in my version.

                  Comment


                    #10
                    Re: xDialog controlpanel anomoly

                    Hi Peter,
                    In your example the button text says 'Controlpanel Show' but you are testing for an event called 'controlpanelshow' - I don't see that your script has that event. Can you show us the script the on click calls?

                    Are you trying to do away with the little form you had in a previous example?
                    Last edited by MoGrace; 07-28-2014, 01:14 PM.
                    Robin

                    Discernment is not needed in things that differ, but in those things that appear to be the same. - Miles Sanford

                    Comment


                      #11
                      Re: xDialog controlpanel anomoly

                      Hi Robin,

                      Well, as usual, I simplified the code from the actual menu code so, thus the "typo". I think this is the code we want.

                      BTW: Doesn't work in v10 for me either.

                      Code:
                      DIM SHARED xMenu as C
                      dim tb_xMenu_xml as c 
                      
                      
                      tb_xMenu_xml = <<%xml%
                      <toolbox animate="false" type="List" theme="NATIVEWINXP" >
                      <category name="Utilities" state="Open"  >
                          <item text="ControlPanel Show" icon="$$generic.add.small" data="" onclick="ControlPanelShow"  />
                          <item text="ControlPanel Hide" icon="$$generic.remove.small" data="" onclick="ControlPanelHide"  />
                      </category>
                      <category name="Test" state="Closed"  >
                      
                      
                      </category>
                      
                      
                      </toolbox>
                      %xml%
                      
                      
                      dim sm as p 
                      sm = XMLSchemaManager.get()
                      
                      
                      dim tb_xMenu as p 
                      tb_xMenu.xml_def = sm.LoadXML(tb_xMenu_xml)
                      
                      
                      dim xMenu as c 
                      xMenu = ""
                      
                      
                      vLeft = 0
                      vTop = 1
                      vPos = "{position="+alltrim(str(vLeft))+","+alltrim(str(vTop))+"}"
                      
                      
                      vTitle = "Production Menu"
                      
                      
                      dlg_Menu = <<%dlg%
                      {include=vPos}
                      {position=remember=XD_MenuPos}
                      {region}
                      {font= arial, 10, b }
                      {Toolbox=40,45xMenu^=tb_xMenu};;
                      {endregion};
                      {line=1,0};
                      {region}
                      {font= arial, 10, n }
                      <%I=$a5_close;O={I=1} {J+C}Close; %15,1.1Close>
                      {endregion};
                      %dlg%
                      ''-------------------------------
                      event_Menu = <<%code%
                      If a_dlg_button = "ControlPanelShow" then 
                          a_dlg_button = "" 
                          
                          ControlPanel.Show()
                          ControlPanel.Activate()
                      end if
                      
                      
                      If a_dlg_button = "ControlPanelHide" then 
                          a_dlg_button = "" 
                          
                          ControlPanel.Hide()
                      end if
                      
                      
                      IF a_dlg_button = "Close"
                          ui_modeless_dlg_close(vTitle)
                      END IF
                      
                      
                      %code%
                      ''-------------------------------
                      ui_modeless_dlg_box(vTitle,dlg_Menu,event_Menu)
                      Peter
                      AlphaBase Solutions, LLC

                      [email protected]
                      https://www.alphabasesolutions.com


                      Comment


                        #12
                        Re: xDialog controlpanel anomoly

                        It doesn't work in v10, v11 or v12 - for me at least.
                        Peter
                        AlphaBase Solutions, LLC

                        [email protected]
                        https://www.alphabasesolutions.com


                        Comment


                          #13
                          Re: xDialog controlpanel anomoly

                          Originally posted by Peter.Greulich View Post
                          It doesn't work in v10, v11 or v12 - for me at least.
                          Peter

                          I think this has always been the behavior.

                          Closing all objects (especially that last one) also closes the database.
                          Al Buchholz
                          Bookwood Systems, LTD
                          Weekly QReportBuilder Webinars Thursday 1 pm CST

                          Occam's Razor - KISS
                          Normalize till it hurts - De-normalize till it works.
                          Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
                          When we triage a problem it is much easier to read sample systems than to read a mind.
                          "Make it as simple as possible, but not simpler."
                          Albert Einstein

                          http://www.iadn.com/images/media/iadn_member.png

                          Comment


                            #14
                            Re: xDialog controlpanel anomoly

                            Thanks Al
                            Peter
                            AlphaBase Solutions, LLC

                            [email protected]
                            https://www.alphabasesolutions.com


                            Comment


                              #15
                              Re: xDialog controlpanel anomoly

                              You asked about workarounds so I took a look at

                              controlpanel.Minimize()
                              controlpanel.window_position(500,500) ' to move it offscreen to the right

                              But the window_position() method throws an error.

                              I also looked at changing the values in the registry for

                              HKEY_CURRENT_USER\Software\Alpha Software\Alpha Five 11.0\Control Panel\x coor
                              HKEY_CURRENT_USER\Software\Alpha Software\Alpha Five 11.0\Control Panel\y coor

                              but couldn't seem to make anything useful happen.
                              Last edited by Stan Mathews; 07-28-2014, 03:43 PM.
                              There can be only one.

                              Comment

                              Working...
                              X