Show region if empty not working (ASP)

I have created an app in ASP (not .NET) to record some supplier stock info, with a summary page displaying a filtered recordset based upon the logged in user which is working fine and dandy... the problem lies when no records exist for the current user the summary page is coming back with the standard ASP, ADO error meaning no records exist: -
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
So I have tried adding "show region" behaviors to show a "no records exist" message and hiding the table containing the summary info, but the above error is still showing when I would only expect the "no records exist" message to display... page code as follows, all help appreciated..!
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
' *** Logout the current user.
MM_Logout = CStr(Request.ServerVariables("URL")) & "?MM_Logoutnow=1"
If (CStr(Request("MM_Logoutnow")) = "1") Then
  Session.Contents.Remove("MM_Username")
  Session.Contents.Remove("MM_UserAuthorization")
  MM_logoutRedirectPage = "index.asp"
  ' redirect with URL parameters (remove the "MM_Logoutnow" query param).
  if (MM_logoutRedirectPage = "") Then MM_logoutRedirectPage = CStr(Request.ServerVariables("URL"))
  If (InStr(1, UC_redirectPage, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
    MM_newQS = "?"
    For Each Item In Request.QueryString
      If (Item <> "MM_Logoutnow") Then
        If (Len(MM_newQS) > 1) Then MM_newQS = MM_newQS & "&"
        MM_newQS = MM_newQS & Item & "=" & Server.URLencode(Request.QueryString(Item))
      End If
    Next
    if (Len(MM_newQS) > 1) Then MM_logoutRedirectPage = MM_logoutRedirectPage & MM_newQS
  End If
  Response.Redirect(MM_logoutRedirectPage)
End If
%>
<!--#include file="Connections/StockLevels.asp" -->
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers=""
MM_authFailedURL="index.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
  If (true Or CStr(Session("MM_UserAuthorization"))="") Or _
         (InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
    MM_grantAccess = true
  End If
End If
If Not MM_grantAccess Then
  MM_qsChar = "?"
  If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
  MM_referrer = Request.ServerVariables("URL")
  if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
  MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
  Response.Redirect(MM_authFailedURL)
End If
%>
<%
if Session("MM_Username")="" then
Response.Redirect("index.asp")
end if
%>
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Session("MM_Username") <> "") Then
  Recordset1__MMColParam = Session("MM_Username")
End If
%>
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_StockLevels_STRING
Recordset1_cmd.CommandText = "SELECT * FROM AULWEB.TESTP12 WHERE SNAM12 = ? ORDER BY VNDR12 ASC"
Recordset1_cmd.Prepared = true
Recordset1_cmd.Parameters.Append Recordset1_cmd.CreateParameter("param1", 200, 1, 15, Recordset1__MMColParam) ' adVarChar
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 10
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<%
'  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
Dim Recordset1_total
Dim Recordset1_first
Dim Recordset1_last
' set the record count
Recordset1_total = Recordset1.RecordCount
' set the number of rows displayed on this page
If (Recordset1_numRows < 0) Then
  Recordset1_numRows = Recordset1_total
Elseif (Recordset1_numRows = 0) Then
  Recordset1_numRows = 1
End If
' set the first and last displayed record
Recordset1_first = 1
Recordset1_last  = Recordset1_first + Recordset1_numRows - 1
' if we have the correct record count, check the other stats
If (Recordset1_total <> -1) Then
  If (Recordset1_first > Recordset1_total) Then
    Recordset1_first = Recordset1_total
  End If
  If (Recordset1_last > Recordset1_total) Then
    Recordset1_last = Recordset1_total
  End If
  If (Recordset1_numRows > Recordset1_total) Then
    Recordset1_numRows = Recordset1_total
  End If
End If
%>
<%
' *** Recordset Stats: if we don't know the record count, manually count them
If (Recordset1_total = -1) Then
  ' count the total records by iterating through the recordset
  Recordset1_total=0
  While (Not Recordset1.EOF)
    Recordset1_total = Recordset1_total + 1
    Recordset1.MoveNext
  Wend
  ' reset the cursor to the beginning
  If (Recordset1.CursorType > 0) Then
    Recordset1.MoveFirst
  Else
    Recordset1.Requery
  End If
  ' set the number of rows displayed on this page
  If (Recordset1_numRows < 0 Or Recordset1_numRows > Recordset1_total) Then
    Recordset1_numRows = Recordset1_total
  End If
  ' set the first and last displayed record
  Recordset1_first = 1
  Recordset1_last = Recordset1_first + Recordset1_numRows - 1
  If (Recordset1_first > Recordset1_total) Then
    Recordset1_first = Recordset1_total
  End If
  If (Recordset1_last > Recordset1_total) Then
    Recordset1_last = Recordset1_total
  End If
End If
%>
<%
Dim MM_paramName
%>
<%
' *** Move To Record and Go To Record: declare variables
Dim MM_rs
Dim MM_rsCount
Dim MM_size
Dim MM_uniqueCol
Dim MM_offset
Dim MM_atTotal
Dim MM_paramIsDefined
Dim MM_param
Dim MM_index
Set MM_rs    = Recordset1
MM_rsCount   = Recordset1_total
MM_size      = Recordset1_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "") Then
  MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
End If
%>
<%
' *** Move To Record: handle 'index' or 'offset' parameter
if (Not MM_paramIsDefined And MM_rsCount <> 0) then
  ' use index parameter if defined, otherwise use offset parameter
  MM_param = Request.QueryString("index")
  If (MM_param = "") Then
    MM_param = Request.QueryString("offset")
  End If
  If (MM_param <> "") Then
    MM_offset = Int(MM_param)
  End If
  ' if we have a record count, check if we are past the end of the recordset
  If (MM_rsCount <> -1) Then
    If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
      If ((MM_rsCount Mod MM_size) > 0) Then         ' last page not a full repeat region
        MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
      Else
        MM_offset = MM_rsCount - MM_size
      End If
    End If
  End If
  ' move the cursor to the selected record
  MM_index = 0
  While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend
  If (MM_rs.EOF) Then
    MM_offset = MM_index  ' set MM_offset to the last possible record
  End If
End If
%>
<%
' *** Move To Record: if we dont know the record count, check the display range
If (MM_rsCount = -1) Then
  ' walk to the end of the display range for this page
  MM_index = MM_offset
  While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend
  ' if we walked off the end of the recordset, set MM_rsCount and MM_size
  If (MM_rs.EOF) Then
    MM_rsCount = MM_index
    If (MM_size < 0 Or MM_size > MM_rsCount) Then
      MM_size = MM_rsCount
    End If
  End If
  ' if we walked off the end, set the offset based on page size
  If (MM_rs.EOF And Not MM_paramIsDefined) Then
    If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
      If ((MM_rsCount Mod MM_size) > 0) Then
        MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
      Else
        MM_offset = MM_rsCount - MM_size
      End If
    End If
  End If
  ' reset the cursor to the beginning
  If (MM_rs.CursorType > 0) Then
    MM_rs.MoveFirst
  Else
    MM_rs.Requery
  End If
  ' move the cursor to the selected record
  MM_index = 0
  While (Not MM_rs.EOF And MM_index < MM_offset)
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend
End If
%>
<%
' *** Move To Record: update recordset stats
' set the first and last displayed record
Recordset1_first = MM_offset + 1
Recordset1_last  = MM_offset + MM_size
If (MM_rsCount <> -1) Then
  If (Recordset1_first > MM_rsCount) Then
    Recordset1_first = MM_rsCount
  End If
  If (Recordset1_last > MM_rsCount) Then
    Recordset1_last = MM_rsCount
  End If
End If
' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth
Dim MM_removeList
Dim MM_item
Dim MM_nextItem
' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then
  MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If
MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""
' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
  End If
Next
' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
  End If
Next
' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth <> "") Then
  MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "")  Then
  MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "") Then
  MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If
' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
  If (firstItem <> "") Then
    MM_joinChar = "&"
  Else
    MM_joinChar = ""
  End If
End Function
%>
<%
' *** Move To Record: set the strings for the first, last, next, and previous links
Dim MM_keepMove
Dim MM_moveParam
Dim MM_moveFirst
Dim MM_moveLast
Dim MM_moveNext
Dim MM_movePrev
Dim MM_urlStr
Dim MM_paramList
Dim MM_paramIndex
Dim MM_nextParam
MM_keepMove = MM_keepBoth
MM_moveParam = "index"
' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 1) Then
  MM_moveParam = "offset"
  If (MM_keepMove <> "") Then
    MM_paramList = Split(MM_keepMove, "&")
    MM_keepMove = ""
    For MM_paramIndex = 0 To UBound(MM_paramList)
      MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
      If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
        MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
      End If
    Next
    If (MM_keepMove <> "") Then
      MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
    End If
  End If
End If
' set the strings for the move to links
If (MM_keepMove <> "") Then
  MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
End If
MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
MM_moveFirst = MM_urlStr & "0"
MM_moveLast  = MM_urlStr & "-1"
MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
If (MM_offset - MM_size < 0) Then
  MM_movePrev = MM_urlStr & "0"
Else
  MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
End If
%>
<% Session ("accountname") = Recordset1.Fields.Item("SNAM12").Value%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>S2N part stock summary</title>
<link href="Style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="80%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="352"><img src="Assets/invertednifco.jpg" alt="Nifco logo" width="199" height="55" longdesc="http://www.nifcoeu.com" /></td>
    <td width="34%"> </td>
    <td width="352" align="right" valign="top" class="style23"><p>Logged in as:
      <%Response.Write(Session("MM_Username"))%>
            <br />
        <a href="<%= MM_Logout %>">Logout</a></p></td>
  </tr>
  <tr>
    <td width="352" valign="bottom"><img src="Assets/horizontal_grey_line.jpg" alt="grey line" width="352" height="5" /></td>
    <td> </td>
    <td width="352"> </td>
  </tr>
  <tr>
    <td width="352" class="style4"><span class="nifco_banner_txt">NI</span><span class="style21"><span class="nifcoF">f</span></span><span class="nifco_banner_txt">CO UK LIMITED</span></td>
    <td> </td>
    <td width="352"> </td>
  </tr>
  <tr>
    <td width="352" height="52" class="style4"> </td>
    <td> </td>
    <td width="352"> </td>
  </tr>
  <tr>
    <td colspan="3" align="center" valign="middle"><table width="99%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
      <tr>
        <td><div align="center">
          <h5 align="center">Your part number</h5>
        </div></td>
        <td><div align="center">
          <h5 align="center">Nifco part number</h5>
        </div></td>
        <td><div align="center">
          <h5 align="center">Part description</h5>
        </div></td>
        <td><div align="center">
          <h5 align="center">Actual stock</h5>
        </div></td>
        <td><div align="center">
          <h5 align="center">Stock on Order</h5>
        </div></td>
        <td><div align="center">
          <h5 align="center">Stock in Transit</h5>
        </div></td>
        <td><div align="center">
          <h5 align="center">UOM</h5>
        </div></td>
        <td><div>
          <h5 align="center">Nifco specific part</h5>
        </div></td>
        <td><h5> </h5></td>
        <td> </td>
      </tr>
      <%
Dim RecordCounter
RecordCounter = 0
%>
      <%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
          <% If Not Recordset1.EOF Or Not Recordset1.BOF Then %>
            <tr bgcolor=
          "<%
    RecordCounter = RecordCounter + 1
    If RecordCounter Mod 2 = 1 Then
      Response.Write "#999999"
     End If
    %>"
        >
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("VNDR12").Value)%> </p>
              </div></td>
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("PNUM12").Value)%> </p>
              </div></td>
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("PDES12").Value)%></p>
              </div></td>
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("ASTK12").Value)%> </p>
              </div></td>
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("OSTK12").Value)%></p>
              </div></td>
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("ISTK12").Value)%></p>
              </div></td>
              <td><div>
                  <p align="center"><%=(Recordset1.Fields.Item("UOFM12").Value)%></p>
              </div></td>
              <td width="26"><div align="center"><%=(Recordset1.Fields.Item("NIFC12").Value)%></div></td>
              <td width="26"><p><a href="update.asp?<%= Server.HTMLEncode(MM_keepURL) & MM_joinChar(MM_keepURL) & "VNDR12=" & Recordset1.Fields.Item("VNDR12").Value %>">Edit</a></p></td>
              <td width="45"><p align="center"><a href="delete.asp?VNDR12=<%=(Recordset1.Fields.Item("VNDR12").Value)%>">Delete</a></p></td>
            </tr>
            <% End If ' end Not Recordset1.EOF Or NOT Recordset1.BOF %>
          <%
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  Recordset1.MoveNext()
Wend
%>
    </table>
        <p> </p></td>
  </tr>
  <tr>
    <td width="352"> </td>
    <td><div align="center">
      <table border="0">
          <tr>
            <td><% If MM_offset <> 0 Then %>
                <a href="<%=MM_moveFirst%>">First</a>
                <% End If ' end MM_offset <> 0 %>            </td>
            <td><% If MM_offset <> 0 Then %>
                <a href="<%=MM_movePrev%>">Previous</a>
                <% End If ' end MM_offset <> 0 %>            </td>
            <td><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveNext%>">Next</a>
                <% End If ' end Not MM_atTotal %>            </td>
            <td><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveLast%>">Last</a>
                <% End If ' end Not MM_atTotal %>            </td>
          </tr>
          </table>
    </div>      <p align="center">      Records <%=(Recordset1_first)%> to <%=(Recordset1_last)%> of <%=(Recordset1_total)%></p></td>
    <td width="352" height="52" align="right" valign="bottom"> </td>
  </tr>
  <tr>
    <td width="352" align="center"><a href="newpart.asp">Register a new part</a></td>
    <td><% If Recordset1.EOF And Recordset1.BOF Then %>
        <div align="center">
          <h5>I'm sorry, no records found.<br />
            <input type="button" name="btnCancel" value="Go back!" onclick="history.back()"/>
                </h5>
        </div>
        <% End If ' end Recordset1.EOF And Recordset1.BOF %></td>
    <td width="352" align="right" valign="bottom"><img src="Assets/horizontal_grey_line.jpg" alt="grey line" width="353" height="5" /></td>
  </tr>
  <tr>
    <td width="352"> </td>
    <td> </td>
    <td width="352"><div align="left"><span class="nifco_banner_txt">NI</span><span class="nifcoF">f</span><span class="style21"><span class="nifco_banner_txt">CO UK LIMITED</span></span></div></td>
  </tr>
  <tr>
    <td colspan="3"><div align="center" class="p_text">Nifco Supplier Stock Management System</div></td>
  </tr>
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>

It depends on the markup situation, for example if your
images are *not* wrapped in a container element that contains just
the image, then I would do something like this:
<img spry:if="'{boximage}' != '' &amp;&amp;
'{boximage}' != 'undefined'" src="{boximage}" />
<img spry:if="'{boximage}' == '' || '{boximage}' ==
'undefined'" src="MissingImage.jpg" />
Or in the case of the products demo where we have an image in
a <p> I would use a spry:choose:
<p spry:choose="choose">
<img spry:when="'{boximage}' != '' &amp;&amp;
'{boximage}' != 'undefined'" src="{boximage}" />
<img spry:default="default" src="MissingImage.jpg" />
</p>
Using spry:choose where you can is better because it means
the region processing code has one less conditional expression to
evaluate since the default case has no expression associated with
it.
--== Kin ==--

Similar Messages

  • Empty-cells:show CSS style is not work

    this is some visual glitch. empty cells of tables not showed as default. And css attribute empty-cells:show not works.

    Hey there, It is better if you provide a link.
    We need to see how you are calling it. The stylesheet you think is being called may not be etc.

  • InfoPath 2013 - Rich Text box - Expand to show all text option not working

    I have create an InfoPath form and created a view which will be used for printing. I have a rich text box in this print view and the scroll option for this rich text box is set to "Expand to show all text". However, it is not working and it doesn't
    expand the size of the text box based on the content length.
    same thing used to work in InfoPath 2010.
    Any suggestions?
    Thanks,
    Neelesh

    Hi Wendy,
    Here are the steps I have used:
    1. On default view added a rich text box.
    2. Created another view called Print and mapped it to the same Field which I added to default view
    3. Set the Wrap text and Expand to show all text on both the Rich Text Box Properties - in default view and in Print
    view. Also set the height of the rich text box to auto.
    4. Set the print views as the print view for default view
    5. Deployed the form to SharePoint Form Library
    6. Opened the form in browser
    7. Entered the content in the rich text box in default view. It expands well if I have much content
    8. Clicked on Print preview and that opens up the print preview and it shows the rich text box only one line in height and with scroll bar
    I missed to mention that it is a web browser enabled form and I am using InfoPath 2013 and SP 2013.
    It does work fine in InfoPath client.
    Thanks.

  • Show AppXray dependencies does not work for all projects

    I have three projects. One of them will display the appxray dependncies and the other two will not. When I select show dependencies, nothing happens. There is no logging inside the workshop m7.log.0 but the .log has the following. How do I get this to work?
    Config details follow logging.
    !MESSAGE Warning: Detected recursive attempt by part com.m7.wide.eclipse.jstudio.DocEditor.jsp to create itself (this is probably, but not necessarily, a bug)
    !STACK 1
    org.eclipse.ui.PartInitException: Warning: Detected recursive attempt by part com.m7.wide.eclipse.jstudio.DocEditor.jsp to create itself (this is probably, but not necessarily, a bug)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:543)
         at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1746)
         at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:152)
         at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:28)
         at org.eclipse.swt.widgets.Display.syncExec(Display.java:3413)
         at org.eclipse.ui.internal.WorkbenchPage.getEditors(WorkbenchPage.java:1743)
         at com.m7.wide.eclipse.Util.activateEditor(Unknown Source)
         at com.m7.wide.eclipse.jstudio.A.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.AbstractEditor.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.AbstractPane.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.flow.FlowDesignPane.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.CompoundPane.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.CompoundPane.setHidden(Unknown Source)
         at com.m7.wide.doceditor.MultiPaneEditor.activePaneChanged(Unknown Source)
         at com.m7.wide.eclipse.jstudio.PaneEditorPart.activate(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.A(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.pageChange(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.createPages(Unknown Source)
         at org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:241)
         at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:609)
         at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:384)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552)
         at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:283)
         at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:126)
         at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268)
         at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
         at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:391)
         at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1102)
         at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1051)
         at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1256)
         at org.eclipse.ui.internal.PartStack.add(PartStack.java:442)
         at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:109)
         at org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:60)
         at org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:212)
         at org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:202)
         at org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:758)
         at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:665)
         at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:628)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2360)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2295)
         at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:2287)
         at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2273)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2268)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2249)
         at org.eclipse.ui.ide.IDE.openEditor(IDE.java:753)
         at org.eclipse.ui.ide.IDE.openEditor(IDE.java:697)
         at com.m7.wide.eclipse.Eclipse3WideEnv.openEditor(Unknown Source)
         at com.m7.wide.eclipse.EclipseWideEnv.openEditor(Unknown Source)
         at com.m7.wide.project.artifact.action.OpenAction.run(Unknown Source)
         at com.m7.wide.eclipse.jstudio.appexplorer.AppExplorerTreeViewer.open(Unknown Source)
         at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:741)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044)
         at org.eclipse.core.runtime.Platform.run(Platform.java:783)
         at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44)
         at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148)
         at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:739)
         at org.eclipse.jface.viewers.StructuredViewer.handleOpen(StructuredViewer.java:968)
         at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen(StructuredViewer.java:1067)
         at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:243)
         at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:238)
         at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:277)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
         at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
         at org.eclipse.core.launcher.Main.run(Main.java:973)
         at org.eclipse.core.launcher.Main.eclipse_main(Main.java:948)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.m7.installer.util.NitroxMain$1.run(NitroxMain.java:29)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    !SUBENTRY 1 org.eclipse.ui 4 0 2005-12-13 11:58:43.346
    !MESSAGE Warning: Detected recursive attempt by part com.m7.wide.eclipse.jstudio.DocEditor.jsp to create itself (this is probably, but not necessarily, a bug)
    *** Date: Tue Dec 13 12:48:19 PST 2005
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20050929-0840
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -launcher
    C:\packages\Eclipse3.1\eclipse\eclipse.exe
    -name
    Eclipse
    -showsplash
    600
    -exitdata
    7b4_30
    -feature
    com.m7.nitrox
    -application
    org.eclipse.ui.ide.workbench
    -vm
    C:\WINDOWS\system32\javaw.exe
    eclipse.product=com.m7.nitrox
    eclipse.startTime=1134504472516
    eclipse.vm=C:\WINDOWS\system32\javaw.exe
    eclipse.vmargs=-Xms128M
    -Xmx512M
    -Dosgi.splashLocation=C:\packages\Workshop_for_Struts_3.0_471\Workshop\splash.bmp
    -jar
    C:\packages\Eclipse3.1\eclipse\startup.jar
    eof=eof
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\packages\Eclipse3.1\eclipse\startup.jar
    java.class.version=48.0
    java.endorsed.dirs=C:\Program Files\Java\j2re1.4.2_04\lib\endorsed
    java.ext.dirs=C:\Program Files\Java\j2re1.4.2_04\lib\ext
    java.home=C:\Program Files\Java\j2re1.4.2_04
    java.io.tmpdir=C:\DOCUME~1\charris\LOCALS~1\Temp\
    java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\System32;C:\WINDOWS;C:\PROGRA~1\PVCS\vm\win32\bin;C:\PROGRA~1\PVCS\vm\common\bin\win32;C:\Program Files\Common Files\Software AG;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\Attachmate\E!E2K\;C:\Magicsql\sqlany50\win;C:\Magicsql\netmap;c:\java\bin;c:\java\bin\pstools;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\packages\apache-ant-1.6.2\bin;C:\Program Files\Novell\ZENworks\;C:\packages\jwsdp-1.6\jwsdp-shared\bin;Z:.;Y:.;
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.4.2_04-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.4
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.4.2_04
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.4.2_04-b05
    line.separator=
    m7.launcher=true
    org.eclipse.jdt.debug.ui.scrapbookActive=false
    org.osgi.framework.bootdelegation=*
    org.osgi.framework.executionenvironment=J2SE-1.4
    org.osgi.framework.language=en
    org.osgi.framework.os.name=WindowsXP
    org.osgi.framework.os.version=5.1
    org.osgi.framework.processor=x86
    org.osgi.framework.system.packages=javax.accessibility,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.transaction,javax.transaction.xa,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stream,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.3.0
    org.osgi.supports.framework.extension=true
    org.w3c.css.sac.parser=com.steadystate.css.parser.SACParser
    org.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl
    os.arch=x86
    os.name=Windows XP
    os.version=5.1
    osgi.arch=x86
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundlestore=c:\packages\Eclipse3.1\eclipse\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/c:/packages/Eclipse3.1/eclipse/configuration/
    osgi.framework=file:/c:/packages/Eclipse3.1/eclipse/plugins/org.eclipse.osgi_3.1.1.jar
    osgi.framework.beginningstartlevel=1
    osgi.framework.shape=jar
    osgi.framework.version=3.1.1
    osgi.install.area=file:/c:/packages/Eclipse3.1/eclipse/
    osgi.instance.area=file:/C:/packages/Eclipse3.1/eclipse/workspace/
    osgi.instance.area.default=file:/C:/Documents and Settings/charris/workspace/
    osgi.logfile=C:\packages\Eclipse3.1\eclipse\workspace\.metadata\.log
    osgi.manifest.cache=c:\packages\Eclipse3.1\eclipse\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_US
    osgi.os=win32
    osgi.splashLocation=C:\packages\Workshop_for_Struts_3.0_471\Workshop\splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath=c:\packages\Eclipse3.1\eclipse\plugins
    osgi.ws=win32
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:\Program Files\Java\j2re1.4.2_04\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_04\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_04\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_04\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_04\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_04\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_04\classes
    sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_04\bin
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    sun.io.unicode.encoding=UnicodeLittle
    sun.java2d.fontpath=
    sun.os.patch.level=Service Pack 1
    user.country=US
    user.dir=C:\packages\Eclipse3.1\eclipse
    user.home=C:\Documents and Settings\charris
    user.language=en
    user.name=CHarris
    user.timezone=America/Los_Angeles
    user.variant=
    vendor=Apache Software Foundation
    vendor-url=http://xml.apache.org/xalan-j
    version=2.4.1
    *** Features:
    com.m7.nitrox (3.0.0) "Workshop"
    org.eclipse.emf (2.1.1) "Eclipse Modeling Framework (EMF)"
    org.eclipse.emf.doc (2.1.1) "Eclipse Modeling Framework (EMF) Programmers Guide"
    org.eclipse.emf.ecore.sdo (2.1.1) "EMF Service Data Objects (SDO)"
    org.eclipse.emf.ecore.sdo.doc (2.1.1) "EMF Service Data Objects (SDO) Programmers Guide"
    org.eclipse.emf.ecore.sdo.source (2.1.1) "EMF Service Data Objects (SDO) Source"
    org.eclipse.emf.examples (2.1.0) "Eclipse Modeling Framework (EMF) Examples"
    org.eclipse.emf.source (2.1.1) "Eclipse Modeling Framework (EMF) Source"
    org.eclipse.gef (3.1.1) "Graphical Editing Framework"
    org.eclipse.gef.examples (3.1.1) "GEF Examples"
    org.eclipse.gef.sdk (3.1.1) "Graphical Editing Framework Developer Resources"
    org.eclipse.gef.source (3.1.1) "Graphical Editing Framework Developer Resources"
    org.eclipse.jdt (3.1.1) "Eclipse Java Development Tools"
    org.eclipse.jdt.source (3.1.1) "Eclipse Java Development Tools SDK"
    org.eclipse.jem (1.1.0.1) "Java EMF Model"
    org.eclipse.jem.sdk (1.1.0.1) "Java EMF Model SDK"
    org.eclipse.jem.source (1.1.0.1) "Java EMF Model Source"
    org.eclipse.jst (0.7.1) "J2EE Standard Tools"
    org.eclipse.jst.sdk (0.7.1) "J2EE Standard Tools SDK"
    org.eclipse.pde (3.1.1) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.source (3.1.1) "Eclipse Plug-in Development Environment Developer Resources"
    org.eclipse.platform (3.1.1) "Eclipse Platform"
    org.eclipse.platform.source (3.1.1) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.rcp (3.1.1) "Eclipse RCP"
    org.eclipse.rcp.source (3.1.1) "Eclipse RCP Plug-in Developer Resources"
    org.eclipse.sdk (3.1.1) "Eclipse Project SDK"
    org.eclipse.sdk.examples (3.0.1) "Eclipse SDK Examples"
    org.eclipse.team.extras (3.0.0) "Eclipse FTP and WebDAV Support"
    org.eclipse.ve (1.1.0.1) "Visual Editor"
    org.eclipse.ve.sdk (1.1.0.1) "Visual Editor SDK"
    org.eclipse.ve.source (1.1.0.1) "Visual Editor Source"
    org.eclipse.wst (0.7.1) "Web Standard Tools"
    org.eclipse.wst.sdk (0.7.1) "Web Standard Tools SDK"
    org.eclipse.xsd (2.1.1) "XML Schema Infoset Model (XSD)"
    org.eclipse.xsd.doc (2.1.1) "XML Schema Infoset Model (XSD) Programmers Guide"
    org.eclipse.xsd.source (2.1.1) "XML Schema Infoset Model (XSD) Source"
    *** Plug-in Registry:
    com.ibm.etools.emf.event (3.0.0.1) "Event Model" [Resolved]
    com.m7.nitrox (3.0.0) "Workshop" [Active]
    com.m7.nitrox.database (3.0.0) "Workshop Database" [Resolved]
    com.m7.nitrox.debugger (3.0.0) "Workshop JSP Debugger" [Resolved]
    com.m7.nitrox.eclipse3.0 (3.0.0) "Workshop Eclipse 3.0" [Resolved]
    com.m7.nitrox.ejb3 (3.0.0) "Workshop EJB3 Persistence" [Resolved]
    com.m7.nitrox.hibernate (3.0.0) "Workshop Hibernate" [Resolved]
    com.m7.nitrox.jsf (3.0.0) "Workshop JSF" [Resolved]
    com.m7.nitrox.jsp (3.0.0) "Workshop JSP" [Resolved]
    com.m7.nitrox.jstl (3.0.0) "Workshop JSTL" [Resolved]
    com.m7.nitrox.jwebapp (3.0.0) "Workshop Java Web Application" [Resolved]
    com.m7.nitrox.orm (3.0.0) "Workshop ORM" [Resolved]
    com.m7.nitrox.struts (3.0.0) "Workshop Struts" [Resolved]
    org.apache.ant (1.6.5) "Apache Ant" [Active]
    org.apache.axis (1.2.1) "Axis121 Plug-in" [Resolved]
    org.apache.lucene (1.4.3) "Apache Lucene" [Resolved]
    org.apache.wsil4j (1.0.0) "Apache WSIL4J 1.0" [Resolved]
    org.apache.xerces (2.7.0) "Xerces 2.7.0" [Resolved]
    org.eclipse.ant.core (3.1.1) "Ant Build Tool Core" [Resolved]
    org.eclipse.ant.ui (3.1.1) "Ant UI" [Active]
    org.eclipse.compare (3.1.1) "Compare Support" [Resolved]
    org.eclipse.compare.examples (3.0.0) "Compare Example" [Resolved]
    org.eclipse.compare.examples.xml (3.0.0) "XML Compare Support" [Resolved]
    org.eclipse.core.boot (3.1.0) "Core Boot" [Resolved]
    org.eclipse.core.commands (3.1.0) "Commands" [Active]
    org.eclipse.core.expressions (3.1.0) "Expression Language" [Active]
    org.eclipse.core.filebuffers (3.1.0) "File Buffers" [Active]
    org.eclipse.core.resources (3.1.0) "Core Resource Management" [Active]
    org.eclipse.core.resources.compatibility (3.1.0) "Core Resource Management Compatibility Fragment" [Resolved]
    org.eclipse.core.resources.win32 (3.1.0) "Core Resource Management Win32 Fragment" [Resolved]
    org.eclipse.core.runtime (3.1.1) "Core Runtime" [Active]
    org.eclipse.core.runtime.compatibility (3.1.0) "Core Runtime Plug-in Compatibility" [Active]
    org.eclipse.core.variables (3.1.0) "Core Variables" [Resolved]
    org.eclipse.debug.core (3.1.0) "Debug Core" [Active]
    org.eclipse.debug.ui (3.1.1) "Debug UI" [Active]
    org.eclipse.draw2d (3.1.1) "Draw2d" [Resolved]
    org.eclipse.draw2d.doc.isv (3.1.1) "Draw2D Documentation" [Resolved]
    org.eclipse.emf (2.1.1) "Eclipse Modeling Framework (EMF)" [Resolved]
    org.eclipse.emf.activities (2.1.0) "EMF Activities" [Resolved]
    org.eclipse.emf.ant (2.1.0) "EMF Ant Tasks" [Resolved]
    org.eclipse.emf.codegen (2.1.0) "EMF Template Code Generator" [Resolved]
    org.eclipse.emf.codegen.ecore (2.1.0) "EMF Ecore Code Generation" [Resolved]
    org.eclipse.emf.codegen.ecore.ui (2.1.0) "EMF Ecore Code Generation UI" [Resolved]
    org.eclipse.emf.codegen.ui (2.1.0) "EMF Template Code Generator UI" [Resolved]
    org.eclipse.emf.common (2.1.0) "EMF Common" [Active]
    org.eclipse.emf.common.ui (2.1.0) "EMF Common UI" [Resolved]
    org.eclipse.emf.commonj.sdo (2.1.0) "CommonJ SDO" [Resolved]
    org.eclipse.emf.doc (2.1.1) "Eclipse Modeling Framework (EMF) Programmers Guide" [Resolved]
    org.eclipse.emf.ecore (2.1.0) "EMF Ecore" [Active]
    org.eclipse.emf.ecore.change (2.1.0) "EMF Ecore Change Model" [Resolved]
    org.eclipse.emf.ecore.change.edit (2.1.0) "EMF Ecore Change Edit Support" [Resolved]
    org.eclipse.emf.ecore.edit (2.1.1) "EMF Ecore Edit Support" [Resolved]
    org.eclipse.emf.ecore.editor (2.1.0) "Sample Ecore Editor" [Resolved]
    org.eclipse.emf.ecore.sdo (2.1.1) "EMF Service Data Objects (SDO)" [Resolved]
    org.eclipse.emf.ecore.sdo.doc (2.1.1) "EMF Service Data Objects (SDO) Programmers Guide" [Resolved]
    org.eclipse.emf.ecore.sdo.edit (2.1.0) "EMF Service Data Objects (SDO) Edit Support" [Resolved]
    org.eclipse.emf.ecore.sdo.editor (2.1.0) "EMF Service Data Objects (SDO) Editor" [Resolved]
    org.eclipse.emf.ecore.sdo.source (2.1.1) "EMF Service Data Objects (SDO) Source" [Resolved]
    org.eclipse.emf.ecore.xmi (2.1.0) "EMF XMI" [Active]
    org.eclipse.emf.edit (2.1.1) "EMF Edit" [Resolved]
    org.eclipse.emf.edit.ui (2.1.0) "EMF Edit UI" [Resolved]
    org.eclipse.emf.examples (2.1.0) "Eclipse Modeling Framework (EMF) Examples" [Resolved]
    org.eclipse.emf.importer (2.1.0) "EMF Model Import Support" [Resolved]
    org.eclipse.emf.importer.ecore (2.1.0) "EMF Ecore Importer" [Resolved]
    org.eclipse.emf.importer.java (2.1.1) "EMF Annotated Java Importer" [Resolved]
    org.eclipse.emf.importer.rose (2.1.1) "EMF Rose Importer" [Resolved]
    org.eclipse.emf.java (2.1.0) "EMF Java" [Resolved]
    org.eclipse.emf.java.edit (2.1.0) "EMF Java Edit" [Resolved]
    org.eclipse.emf.java.editor (2.1.0) "EMF Java Editor" [Resolved]
    org.eclipse.emf.mapping (2.1.0) "EMF Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore (2.1.0) "Ecore to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore.editor (2.1.0) "Ecore to Ecore Mapping Editor" [Resolved]
    org.eclipse.emf.mapping.ecore2xml (2.1.0) "Ecore to XML Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2xml.ui (2.1.1) "Ecore to XML Mapping UI" [Resolved]
    org.eclipse.emf.mapping.ui (2.1.0) "EMF Mapping UI" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore (2.1.0) "XSD to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore.editor (2.1.0) "XSD to Ecore Mapping Editor" [Resolved]
    org.eclipse.emf.source (2.1.1) "Eclipse Modeling Framework (EMF) Source" [Resolved]
    org.eclipse.gef (3.1.1) "Graphical Editing Framework" [Resolved]
    org.eclipse.gef.doc.isv (3.1.1) "Graphical Editing Framework Documentation" [Resolved]
    org.eclipse.gef.examples.flow (3.1.1) "GEF Flow Editor Example" [Resolved]
    org.eclipse.gef.examples.logic (3.1.1) "GEF Logic Editor Example" [Resolved]
    org.eclipse.gef.examples.shapes (3.1.1) "GEF Shape Editor Example" [Resolved]
    org.eclipse.gef.examples.source (3.1.1) "GEF Examples" [Resolved]
    org.eclipse.gef.examples.text (3.1.1) "GEF Text Editor Example" [Resolved]
    org.eclipse.gef.source (3.1.1) "Graphical Editing Framework Developer Resources" [Resolved]
    org.eclipse.help (3.1.0) "Help System Core" [Active]
    org.eclipse.help.appserver (3.1.0) "Help Application Server" [Resolved]
    org.eclipse.help.base (3.1.0) "Help System Base" [Resolved]
    org.eclipse.help.examples.ex1 (3.0.0) "Online Help Sample" [Resolved]
    org.eclipse.help.ui (3.1.1) "Help System UI" [Resolved]
    org.eclipse.help.webapp (3.1.0) "Help System Webapp" [Resolved]
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
    org.eclipse.jdt.core (3.1.1) "Java Development Tools Core" [Active]
    org.eclipse.jdt.debug (3.1.1) "JDI Debug Model" [Active]
    org.eclipse.jdt.debug.ui (3.1.1) "JDI Debug UI" [Active]
    org.eclipse.jdt.doc.isv (3.1.1) "Eclipse JDT Plug-in Developer Guide" [Resolved]
    org.eclipse.jdt.doc.user (3.1.1) "Eclipse Java Development User Guide" [Resolved]
    org.eclipse.jdt.junit (3.1.1) "Java Development Tools JUnit support" [Resolved]
    org.eclipse.jdt.junit.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
    org.eclipse.jdt.launching (3.1.0) "Java Development Tools Launching Support" [Active]
    org.eclipse.jdt.source (3.1.1) "Eclipse Java Development Tools SDK" [Resolved]
    org.eclipse.jdt.ui (3.1.1) "Java Development Tools UI" [Active]
    org.eclipse.jdt.ui.examples.projects (3.0.1) "Java Development Tools Example Projects" [Resolved]
    org.eclipse.jem (1.1.0.1) "Java EMF Model" [Resolved]
    org.eclipse.jem.beaninfo (1.1.0.1) "Java EMF Model BeanInfo (Introspection) Support" [Resolved]
    org.eclipse.jem.proxy (1.1.0.1) "Java EMF Model Proxy Support" [Resolved]
    org.eclipse.jem.sdk (1.1.0) "Java EMF Model SDK" [Resolved]
    org.eclipse.jem.source (1.1.0.1) "Java EMF Model Source" [Resolved]
    org.eclipse.jem.ui (1.1.0.1) "Java EMF Model UI" [Resolved]
    org.eclipse.jem.util (1.1.0) "Java EMF Model Utilities" [Installed]
    org.eclipse.jem.util (1.1.0.1) "Java EMF Model Utilities" [Active]
    org.eclipse.jem.workbench (1.1.0.1) "Java EMF Model Workbench Support" [Resolved]
    org.eclipse.jface (3.1.1) "JFace" [Active]
    org.eclipse.jface.text (3.1.1) "JFace Text" [Active]
    org.eclipse.jst (0.7.0) "J2EE Standard Tools" [Resolved]
    org.eclipse.jst.common.annotations.controller (0.7.1) "Annotation Controller Plug-in" [Resolved]
    org.eclipse.jst.common.annotations.core (0.7.0) "Annotation Core Plug-in" [Resolved]
    org.eclipse.jst.common.annotations.ui (0.7.0) "Ui Plug-in" [Resolved]
    org.eclipse.jst.common.frameworks (0.7.0) "Integration Plug-in" [Resolved]
    org.eclipse.jst.common.navigator.java (0.7.1) "Navigator Plug-in" [Resolved]
    org.eclipse.jst.ejb.ui (0.7.0) "WTP EJB UI Plug-in" [Resolved]
    org.eclipse.jst.j2ee (0.7.1) "J2EE Component" [Resolved]
    org.eclipse.jst.j2ee.core (0.7.1) "J2EE Core Component" [Resolved]
    org.eclipse.jst.j2ee.ejb (0.7.0) "EJB component Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotation.model (0.7.0) "EJB Annotation Model Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotations.emitter (0.7.0) "EJB Emitter Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotations.ui (0.7.1) "EJB Annotations Ui Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotations.xdoclet (0.7.1) "Xdoclet Annotations Plug-in" [Resolved]
    org.eclipse.jst.j2ee.jca (0.7.0) "JCA Plug-in" [Resolved]
    org.eclipse.jst.j2ee.jca.ui (0.7.0) "WTP JCA UI Plug-in" [Resolved]
    org.eclipse.jst.j2ee.navigator.ui (0.7.0) "J2EE Extensions to Common Navigator" [Resolved]
    org.eclipse.jst.j2ee.ui (0.7.1) "WTP J2EE UI Plug-in" [Resolved]
    org.eclipse.jst.j2ee.web (0.7.1) "Web Plug-in" [Resolved]
    org.eclipse.jst.j2ee.webservice (0.7.0) "Web Service Plug-in" [Resolved]
    org.eclipse.jst.j2ee.webservices.ui (0.7.0) "WTP Webservice UI Plug-in" [Resolved]
    org.eclipse.jst.jsp.core (0.7.0) "Structured Source JSP Model" [Installed]
    org.eclipse.jst.jsp.core (0.7.1) "Structured Source JSP Model" [Active]
    org.eclipse.jst.jsp.ui (0.7.0) "SSE JSP Source Editor" [Installed]
    org.eclipse.jst.jsp.ui (0.7.1) "SSE JSP Source Editor" [Active]
    org.eclipse.jst.server.core (0.7.0) "Java Server Support" [Resolved]
    org.eclipse.jst.server.generic.core (0.7.0) "Generic Server Plugin" [Resolved]
    org.eclipse.jst.server.generic.serverdefinitions (0.7.0) "Generic server example definitions" [Resolved]
    org.eclipse.jst.server.generic.ui (0.7.0) "Generic Server Plugin UI" [Resolved]
    org.eclipse.jst.server.geronimo.core (0.7.0) "Geronimo server support" [Resolved]
    org.eclipse.jst.server.geronimo.ui (0.7.0) "Geronimo server UI support" [Resolved]
    org.eclipse.jst.server.tomcat.core (0.7.0) "Apache Tomcat Support" [Resolved]
    org.eclipse.jst.server.tomcat.ui (0.7.0) "Apache Tomcat UI Support" [Resolved]
    org.eclipse.jst.server.ui (0.7.0) "Java Server UI Support" [Resolved]
    org.eclipse.jst.server.websphere.core (0.7.0) "WebSphere Generic Server Definition Core Plug-in" [Resolved]
    org.eclipse.jst.servlet.ui (0.7.1) "WTP Servlet UI Plug-in" [Resolved]
    org.eclipse.jst.source (0.7.1) "J2EE Standard Tools SDK" [Resolved]
    org.eclipse.jst.ws (0.7.1) "Web Services" [Resolved]
    org.eclipse.jst.ws.axis.consumption.core (0.7.0) "Web service Axis Consumption Core" [Resolved]
    org.eclipse.jst.ws.axis.consumption.ui (0.7.1) "Webservice Axis Consumption UI" [Resolved]
    org.eclipse.jst.ws.axis.creation.ui (0.7.0) "Webservice Axis Creation UI" [Resolved]
    org.eclipse.jst.ws.consumption (0.7.0) "Web Services Consumption" [Resolved]
    org.eclipse.jst.ws.consumption.ui (0.7.1) "Web Services Consumption Graphical User Interface" [Resolved]
    org.eclipse.jst.ws.creation.ejb.ui (0.7.0) "Web Services Creation EJB Graphical User Interface" [Resolved]
    org.eclipse.jst.ws.creation.ui (0.7.1) "Web Services Creation Graphical User Interface" [Resolved]
    org.eclipse.jst.ws.uddiregistry (0.7.0) "Web Services Universal Description Discovery and Integration Registry" [Resolved]
    org.eclipse.jst.ws.ui (0.7.1) "Web Services Graphical User Interface" [Resolved]
    org.eclipse.ltk.core.refactoring (3.1.0) "Refactoring Core" [Active]
    org.eclipse.ltk.ui.refactoring (3.1.1) "Refactoring UI" [Active]
    org.eclipse.osgi.services (3.1.1) "OSGi Release 3 Services" [Resolved]
    org.eclipse.osgi.util (3.1.1) "OSGi R3 Utility Classes" [Resolved]
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
    org.eclipse.pde.build (3.1.0) "Plug-in Development Environment Build Support" [Resolved]
    org.eclipse.pde.core (3.1.1) "Plug-in Development Core" [Resolved]
    org.eclipse.pde.doc.user (3.1.1) "Eclipse Plug-in Development User Guide" [Resolved]
    org.eclipse.pde.junit.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
    org.eclipse.pde.runtime (3.1.1) "Plug-in Development Environment Runtime" [Resolved]
    org.eclipse.pde.source (3.1.1) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
    org.eclipse.pde.ui (3.1.1) "Plug-in Development UI" [Resolved]
    org.eclipse.platform (3.1.1) "Eclipse Platform" [Resolved]
    org.eclipse.platform.doc.isv (3.1.1) "Eclipse Platform Plug-in Developer Guide" [Resolved]
    org.eclipse.platform.doc.user (3.1.1) "Eclipse Workbench User Guide" [Resolved]
    org.eclipse.platform.source (3.1.1) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.platform.so

    What kind of projects are they (Struts/JSF/Hibernate)? Does the working project differ in any way with other two apps?
    What exactly is not working? Are they recognized by workshop as Struts/JSF/Hibernate app?
    Please send the .log to [email protected]

  • Upon running Norton Security Suite Diagnostic Report on my HP Pavilion dv6 Notebook PC on a Windows 7 Home Premium platform, it shows 2 (hidden) devices not working: Antilog32, and AODDriver4.1--Code 24.

    On the General tab for device status it says: "This device is not present, is not working properly, or does not have all its drivers installed. (Code 24)" The only option available when I click
    on properties of both devices is Start. When I click on Start for Antilog32, this message shows: "The system encountered the following error when it attempted to start the service: The system cannot find the file specified." For AODDriver4.1, the
    message when you click Start on Driver tab is: "The system encountered the following error when it attempted to start the service: The system cannot find the path specified." I do not know how to proceed or
    how to fix this, or where to find a solution. Please help!

    Hello pds48478480,
    Do you mean you got the error code 24 in Norton Security Suite Diagnostic Report?
    Please share us a screenshot for better analyzation.
    Please take a look at the following thread about the AODDriver4.3.
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-performance/the-aoddriver43-service-failed-to-start-due-to-the/cb6b7f03-922b-4b82-972f-e92ef9919964
    AODDriver 4.3 is used by AMD OverDrive which tune parameters to help system stability, optimize performance, and control cooling/acoustic characteristics.
    With the issue description it seems the driver and the service is either stopped or not working correctly.
    Refer to the link below and install the latest version of AMD OverDrive.
    http://www.amd.com/en-us/markets/game/downloads/overdrive
    Please note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Maps 2.0 - "Show on map" is not working

    Hello guys. my ovi maps is started to saying that : " this app requires Licence manager download" . and then when i click to "yes" it is trying to open web page but web page is not working. And now "Show on map" feature is not working . I cant format my phone . any way to reinstall ovi maps ? or any other ideas ? thanks
    Solved!
    Go to Solution.

    Tanayy wrote:
    thanks it has solved my problem
    You're welcome, a lot of older devices have now been archived so that about only thing available to download is the "User Guide"!
    Happy to have helped forum with a Support Ratio = 42.5

  • Classic Report with Hide and Show Region Template does not show report

    Hello,
    I created a "No Template" region on a page with a Classic Report. When I change it to a "Hide and Show" region template, the report does not show up when I click to Show the region...is there an additional step i'm missing to make the report show up. Its a very simple query.
    Thanks in advance,
    John

    How about posting some relevant information like Apex version, RDBMS version, Theme you are using, etc.?
    Regards,

  • PPR on Show detail Item is not working

    Hi Team,
    I want to completely show / hide the show detail Item based on selection in other showDetailItem . I have used the ppr to achieve this functionality. But its not working.
    Any suggestions please.

    hi user,
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:panelTabbed id="pt1"
                            styleClass="AFStretchWidth"
                            binding="#{backingBeanScope.Mbean.pt1}">
              <af:showDetailItem text="showDetailItem 1" id="sdi1"
                                 rendered="#{backingBeanScope.Mbean.cb1.selected}"
                                 binding="#{backingBeanScope.Mbean.sdi1}"/>
              <af:showDetailItem text="showDetailItem 2" id="sdi2"
                                 rendered="#{backingBeanScope.Mbean.cb2.selected}"
                                 binding="#{backingBeanScope.Mbean.sdi2}"/>
              <af:showDetailItem text="showDetailItem 3" id="sdi3"
                                 rendered="#{backingBeanScope.Mbean.cb3.selected}"
                                 binding="#{backingBeanScope.Mbean.sdi3}"/>
            </af:panelTabbed>
            <af:selectBooleanCheckbox text="check tab1" id="sbc1" autoSubmit="true"
                                      binding="#{backingBeanScope.Mbean.cb1}"
                                      valueChangeListener="#{backingBeanScope.Mbean.cb1s}"/>
            <af:selectBooleanCheckbox text="check tab2" id="sbc2" autoSubmit="true"
                                      binding="#{backingBeanScope.Mbean.cb2}"
                                      valueChangeListener="#{backingBeanScope.Mbean.cb2s}"/>
            <af:selectBooleanCheckbox text="check tab3" id="sbc3" autoSubmit="true"
                                      binding="#{backingBeanScope.Mbean.cb3}"
                                      valueChangeListener="#{backingBeanScope.Mbean.cb3s}"
                                      partialTriggers="pt1 sdi3"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.component.rich.input.RichSelectBooleanCheckbox;
    import oracle.adf.view.rich.component.rich.layout.RichPanelTabbed;
    import oracle.adf.view.rich.component.rich.layout.RichShowDetailItem;
    import oracle.adf.view.rich.context.AdfFacesContext;
    public class Mbean {
        private RichSelectBooleanCheckbox cb1;
        private RichSelectBooleanCheckbox cb2;
        private RichSelectBooleanCheckbox cb3;
        private RichShowDetailItem sdi1;
        private RichShowDetailItem sdi2;
        private RichShowDetailItem sdi3;
        private RichPanelTabbed pt1;
        public Mbean() {
        public void setCb1(RichSelectBooleanCheckbox cb1) {
            this.cb1 = cb1;
        public RichSelectBooleanCheckbox getCb1() {
            return cb1;
        public void setCb2(RichSelectBooleanCheckbox cb2) {
            this.cb2 = cb2;
        public RichSelectBooleanCheckbox getCb2() {
            return cb2;
        public void setCb3(RichSelectBooleanCheckbox cb3) {
            this.cb3 = cb3;
        public RichSelectBooleanCheckbox getCb3() {
            return cb3;
        public void cb1s(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            cb1.setSelected(true);
            AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        public void cb2s(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            cb2.setSelected(true);
            AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        public void cb3s(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            cb3.setSelected(true);
            AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        public void setSdi1(RichShowDetailItem sdi1) {
            this.sdi1 = sdi1;
        public RichShowDetailItem getSdi1() {
            return sdi1;
        public void setSdi2(RichShowDetailItem sdi2) {
            this.sdi2 = sdi2;
        public RichShowDetailItem getSdi2() {
            return sdi2;
        public void setSdi3(RichShowDetailItem sdi3) {
            this.sdi3 = sdi3;
        public RichShowDetailItem getSdi3() {
            return sdi3;
        public void setPt1(RichPanelTabbed pt1) {
            this.pt1 = pt1;
        public RichPanelTabbed getPt1() {
            return pt1;
    it should work.

  • Show inspector more info not working

    I recently upgraded to Lion and I notice that when I use the "Show Inspector" to view information on multiple files with one Info window is not working properly. In Snow Leopard as I clicked on different image files the "More Info" section would show image sizes. Now in Lion it doesn't show anything but a line "-". As I click on different images it doesn't show anything in the "More Info" section. Can any body help me with this? Has this function changed some how in Lion?

    I'll answer my own question then :-p
    It seems that when you change the library view options to sort manually then you no longer get the information popup (which makes sense). Changing back to date or album view brought back the info.
    FYI.

  • My App Store Doesn't Show Any Thing , and not working .

    Today I've Noticed that My App Store Application is Not Working , and even I Can't Click On any Tabs ,and all of menu bar items such as sign out,sign in doesn't work . and doesn't Show Loading Status Bar, and doesn't show any message as you see in this picture :
    I've Tried There Solutions:
    Reset PRAM
    Delete App Store Cache Files
    Signed Out of Itunes And and signed in again
    clear History and web site data in safari
    But Nothing Changed .
    (Sorry My English is Not Good at all , But i'll be thankful if you help me )

    Test after taking each of the following steps that you haven't already tried. Stop when the problem is resolved. Back up all data before making any changes.
    Step 1
    Sign in to the App Store by selecting Sign In from the Store menu. If you're already signed in, sign out and then sign in again.
    Step 2
    Log out or restart the computer.
    Step 3
    Remove or disable "LittleSnitch" or any similar third-party software that blocks outgoing network connections according to the developer's instructions.
    Step 4
    Start up in safe mode and log in to the account with the problem.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    After testing, restart as usual (not in safe mode.)
    Step 5
    If possible, connect to a different network and test.
    Step 6
    There are reports that resetting the PRAM may solve the problem in some cases. I can't confirm.

  • Does Group Region Select Edit not work in Logic 8?

    I've been trying to do automation edits across several tracks using group. I have everything except Pan selected. Doesn't seem to catch on. I've had it catch on before but it's hit and miss. Am I missing something or does it just not work right?

    Same here. I have seven channels of drums in comp tracks, and when grouped I am not able to edit the comps. All relevant parameters selected on the group settings, as far as I can tell. Other group functions seem to work fine.
    I am able to select one region of each comp track. If I do more, the whole track greys out. If I try too many times, Logic sometimes just crashes.
    However, the edits I try to make seem to be recorded in the edit history.

  • Bookmark and show all history functions not working

    After upgrading to FF20 the Bookmarks function button is not working. Star/bookmark this page/import from profiles list don't work. Can see previous bookmark lists in Profile but restore doesn't work. Also when opening history I get the short list but "show all history" brings up same blank library page every time.

    Hello valleyman100, maybe it is problem with the places.sqlite file that stores the bookmarks, see: [http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox Locked or damaged places.sqlite]
    see also: [https://support.mozilla.org/el/kb/cant-add-change-or-save-bookmarks?redirectlocale=en-US&redirectslug=Bookmarks+not+saved#w_places-database-file Can't add, change or save bookmarks - How to fix]
    thank you

  • Language and Region Date Preferences not working

    Date set up is for UK (day/month/year), whichever format I use for cells in Numbers, it's aways MM leading.
    I tried everything on 2 separate machines and it's not working on both. What am I doing wrong ?

    Mirage.za,
    You could try using a Custom Format.
    Also you could send Apple feedback about this if you want: https://www.apple.com/feedback/numbers.html
    Hope that helps,
    Weston

  • Why is the "Show Item Info" feature not working on 10.6.8 Snow Leopard?

    Under the Show View Options menu in Finder, I have repeatedly attempted to get the "Show Item Info" feature to work. Yet instead of the item info, it just adds some transparent spacing where the file info is supposed to be. The "Show Item Info feature is checked, so what's going on?

    I was talking about the feature that displays how many files are in a folder and the dimensions of a picture.

  • I downloaded the new operating system and now my Thundrbilt monitor is not showing my desktop is not working

    I downloaded the new operating system and now my Thundrbilt monitor is not showing my desktop is not working

    Could be since it (security software) is listed as #5 in the following:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

Maybe you are looking for