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

Lost Components

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

    #16
    You have to remember that, if there is a bug here, it occurs very rarely. To confirm that a bug exists, and then to fix it, requires a repeatable scenario. If anyone can come up with one, we would like to hear about it.

    Comment


      #17
      Just when i thought it was safe to go back into the water yet another componant has dissapeared. I dont know if this helps but it seems to be the same componant that disapears. It is a navigation componant called mainmenu, i also have another nav componant that has never disapeared. There seems to be no ryme or reason for this to happen!

      Comment


        #18
        Yet another thing i have noticed. I was about to make an adjustment to my index.a5w page, but when i openend it for editing it just opend a blank page!?!?!?!?!

        Comment


          #19
          If you open an .A5W page and the contents are blank, do not save it. Open it in Notepad, Textpad, or another HTML editor. The Microsoft ActiveX control that Alpha Five uses to display pages will do this when it finds HTML that it doesn't like.

          Comment


            #20
            More info

            When I open the Index.a5w in the A5w page editor, it shows that the page is blank. When I view source it shows the following code:

            HTML Code:
            <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
            <html><head><title></title>
            <meta http-equiv=Content-type content="text/html; charset=unicode">
            <meta content="MSHTML 6.00.2900.2802" name=GENERATOR></head>
            <body>
            <p>&nbsp;</p></body></html>
            If I open the same page in a text editor I get the following code:

            HTML Code:
            <html>
            <head>
            
            <%a5
            Delete tmpl_LoginDialog
            DIM tmpl_LoginDialog as P
            tmpl_LoginDialog = a5w_load_component("LoginDialog")
            'Following code allows you to override settings in the saved component, and specify the component alias (componentName property).
            'Tip: Keep the componentName property short because this name is used in page URLs, and it will help keep the URLs short.
            'Each component on a page must have a unique alias (componentName property).
            with tmpl_LoginDialog
            	componentName = "LoginDialog"
            end with 
            '=======================================compute the HTML for the Component=======================================
            delete x_LoginDialog
            dim x_LoginDialog as p
            tmpl_LoginDialog.request = request
            tmpl_LoginDialog.session = session
            tmpl_LoginDialog.response = response
            tmpl_LoginDialog.serversetting = serversetting
            tmpl_LoginDialog.PageVariables = local_variables()
            x_LoginDialog = a5w_run_Component(tmpl_LoginDialog)
            '=============================================================================================================
            if x_LoginDialog.RedirectURL <> "" then 
            	response.redirect(x_LoginDialog.redirectURL)
            	end
            end if 
            ?x_LoginDialog.Output.Head.JavaScript
            ?x_LoginDialog.Output.Head.CSS_Link
            %>
            <!--Alpha Five Temporary Code Start - Will be automatically removed when page is published -->
            <!--CSS for tmpl_LoginDialog -->
            <link rel="stylesheet" type="text/css" href="file:///C:\Program Files\A5V7/css/Corporate/style.css">
            <!--Alpha Five Temporary Code End -->
            
            <meta name="generator" content="Alpha Five HTML Editor">
            <title>Home Page</title>
            </head>
            <body  class="CorporatePageBODY">
            <body onload="document.LoginDialog.USER_NAME.focus();">
            
            <p>
            <%a5 
            session.__protected__SecurityLevel = 1
            session.centre = "none"
            session.user = "none"
            session.userid = "none"
            session.__protected__valid = "none"
            session.reset()
            %>
            <table cellSpacing=0 cellPadding=0 width=700 align=center bgColor=#e0dacc 
            background="" border=0>
              
              <tr>
                <td><img style="WIDTH: 700px; HEIGHT: 100px" src="header.png"></td></tr>
              <tr>
                <td background="" bgColor=#c0c0c0><strong><em><font face=Verdana 
                  size=2>
                  <p align=center><font face=Verdana color=#008000 
                  size=5><strong><em>Tamworth &amp; Lichfield 
                  College<br>   
                  </em></strong></font><strong><em><font face=Verdana 
                  color=#008000 size=5>IT Centre Database</font></em></strong></p></font></em></strong></td></tr>
              <tr>
                <td>
                  <p align=left><font size=1></font>&nbsp;</p></td></tr>
              <tr>
                <td>
                  <p align=center><table width="90%" border="0" bgcolor="#fafafa" cellpadding="0" cellspacing="0" align="center" 
                  background="">
            	<tr>
            		<td>&nbsp;</td>
            	</tr>
            	<tr>
            		<td>&nbsp;
             
                  <table align=center>
                    
                    <tr>
                      <td><%a5 ?x_LoginDialog.Output.Body.Dialog_Echo %></td></tr>
                    <tr>
                      <td><%a5 ?x_LoginDialog.Output.Body.Xbasic_Code_Errors %></td></tr>
                    <tr>
                      <td><%a5 ?x_LoginDialog.Output.Body.Dialog_HTML %></td></tr></table></td>
            	</tr>
            	<tr>
            		<td>&nbsp;</td>
            	</tr>
            	<tr>
            		<td>
                        <p align=center>&nbsp;<font size=3>Please Log Out of the Database 
                        when not in use</font></p></td>
            	</tr>
            	<tr>
            		<td>
                        <p align=center><strong><font size=2>  &nbsp;If&nbsp;inactive for 
                        more than 30min the database will automatically Log you 
                        OUT</font></strong></p>
                        <p align=center><strong><font 
                    size=2></font></strong>&nbsp;</p></td>
            	</tr>
            </table></p></td></tr>
              <tr>
                <td background="" bgColor=#0000ff>
                  <p dir=ltr style="MARGIN-RIGHT: 0px" align=left><font face=Verdana><font 
                  color=#ffffff size=2><strong>  &nbsp;Copyright 2005 Tamworth &amp; 
                  Lichfield College&nbsp;&nbsp;&nbsp; <font size=1>(Database version 
                  0012005)</font></strong></font></font></p></td></tr></table></p>
            </body></html>
            If i post the above code into my index page from the a5w editor, the code disapears when refreshed.

            Comment


              #21
              I have been experiencing this 'missing components' ever since I started using Alpha Five V7. I have not used Alpha Five before.

              I do not agree with Edward Larrabee's observation that it at all this happens, it is rare. It happens so frequently that Alpha Five have to find a solution. This reports on this thread is enough proof to activate serious troubleshooting.
              I am making a copy for each of the components so that when something is missing, I just replace them. This is not the way a software should be used.
              sigpic

              Comment


                #22
                HTML Code:
                <body class="CorporatePageBODY">
                <body onload="document.LoginDialog.USER_NAME.focus();">
                You have 2 <body> tags. Remove one and the code is fine.

                Comment


                  #23
                  Happend to me this week.

                  Steve & Steve make certain you are backed up, it will happen. I was a doubting Thomas but it did strike and I really felt it. Lost hours of work.
                  Insanity: doing the same thing over and over again and expecting different results.
                  Albert Einstein, (attributed)
                  US (German-born) physicist (1879 - 1955)

                  Comment


                    #24
                    I operate under that general assumption for all programs, and my car keys.
                    Steve Wood
                    See my profile on IADN

                    Comment


                      #25
                      I have had this happen at least 5 times. When attempting to open a web component, an error message appears, stating that the actual component cannot be found or may be corrupted. If I go to an a5w page that includes the missing component, right click, then select "Edit Comonent", the same error message appears. This IS an A5 bug and the number of users experiencing this issue is convincing proof.

                      Comment


                        #26
                        It is interesting that you actually have the component visible to attempt to open it. I think most of us experience the component vanishing (deleted) from the components list so that we don't even get the option to try and open it (unless we open the .a5w page that embeds the component). We also find that the component is missing (deleted) from the default database directory. I think the corruption message is a mistake in the Alpha5 error code. If the component file does not exist it also cannot be corrupt.

                        My .a5w page that references the missing component will work initially (for some reason) but once saved the embedded component vanishes from the .a5w page, including the a5w code.

                        I think this is going to be a tough one for the Alpha team! I just hope it is limited to the development environment and does not start occurring on the WAS with the published version of the components.

                        CHuck


                        Originally posted by rjonas
                        I have had this happen at least 5 times. When attempting to open a web component, an error message appears, stating that the actual component cannot be found or may be corrupted. If I go to an a5w page that includes the missing component, right click, then select "Edit Comonent", the same error message appears. This IS an A5 bug and the number of users experiencing this issue is convincing proof.

                        Comment


                          #27
                          I worry about this one even though it has never happened to me. Fundamentally there must be a reason why it happens to some and not others. Statistically, if it was a non-environment issue, it would have happend to me by now (I publish 30+ times a day with development on two different computers). So, I wanted to suggest that for you guys that have had this happen, jot down the scenario. Maybe there is a correlation, and maybe for us guys that have never had it happen, we can spot what makes our environment different. For example:
                          • Does it happen equally when publishing to localhost and server?
                          • What is your workstation OS, Server OS?
                          • What virus protection software are you running?
                          • Does it happen equally when publising ALL files, or with the Publish New/Updated box checked?
                          • What are the names of the missing components (looking for reserved words, odd syntax, etc.)
                          • Always the same components that disappear, or random?
                          • Equally for dialog components, grid components, etc.?
                          • Are the components really gone (or attribute changed to hidden)?
                          • If more than one, are the missing components related (same table)?
                          Steve Wood
                          See my profile on IADN

                          Comment


                            #28
                            Originally posted by Steve Wood
                            I worry about this one even though it has never happened to me. Fundamentally there must be a reason why it happens to some and not others. Statistically, if it was a non-environment issue, it would have happend to me by now (I publish 30+ times a day with development on two different computers). So, I wanted to suggest that for you guys that have had this happen, jot down the scenario. Maybe there is a correlation, and maybe for us guys that have never had it happen, we can spot what makes our environment different. For example:
                            • Does it happen equally when publishing to localhost and server?
                            • What is your workstation OS, Server OS?
                            • What virus protection software are you running?
                            • Does it happen equally when publising ALL files, or with the Publish New/Updated box checked?
                            • What are the names of the missing components (looking for reserved words, odd syntax, etc.)
                            • Always the same components that disappear, or random?
                            • Equally for dialog components, grid components, etc.?
                            • Are the components really gone (or attribute changed to hidden)?
                            • If more than one, are the missing components related (same table)?

                            Hi Steve

                            It is difficult to say when the component goes missing because you dont miss it until you need to edit it. I am running winxp pro and we have a win 2003 server. All the local files and components are stored on my laptop and also backup up on a network store. I have found components being lost from both the local version and the backup version, but to get round this i zip my backup and this seems to solve that problem. We are using McAfee virusScan Enterprise 8.0.0 virus checker. The components seem to disappear at random but just recently it seems to be a navigation component called mainmenu and another navigation component called adminmenu, also my login dialog disappears from time to time. The components definitely disappear and are not hidden and there seems to be no related disappearances.

                            I hope this helps a little sorry i cant give you more!!!!!!

                            gary

                            Comment


                              #29
                              Man, so much for my environment thought - I have the exact same config; win 2003 server, laptop xp pro, mcafee 8.0.
                              Steve Wood
                              See my profile on IADN

                              Comment


                                #30
                                Could this be the reason?

                                Originally posted by Edward Larrabee
                                There are 3 issues to understand here. First, you cannot ever copy WYSIWYG content between 2 different editors. Second, in general you can copy SOURCE content between 2 different editors. Third, the Alpha Five HTML Editor is limited to supporting a very early version of HTML. It will discard many HTML tags that it doesn't understand. In extreme circumstances, it will discard the whole page if it sees HTML tags that it does not like. This is why we have the Open With function that allows you to use other editors, such as Notepad, Textpad, Dreamweaver, etc.
                                From: http://msgboard.alphasoftware.com/al...79716#poststop
                                Peter
                                AlphaBase Solutions, LLC

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


                                Comment

                                Working...
                                X