DataScroller nested facets disappear

I've managed to get a Tomahawk dataTable working with sorting. I've also added two dataScroller tags (as shown in the example wars).
The dataTable uses an ArrayList in a backing bean, configured as a session-scoped managed bean.
The paginator works fine; i.e. I can go from one "scroller page" to another using the "paginator numbers" (the 1, 2, 3, etc. generated) in the middle, however the nested facets in the first dataScroller (the first, previous, next, last, etc. links) disappear as soon as a new request is sent, e.g. when clicking a paginator page link or changing the sort column.
How's that possible, knowing that the actual pagination works fine? Is there any problem with my facets?
          <t:dataScroller
                    id="scroll_1"
                    for="tradeTable"
                    paginator="true"
                    fastStep="10"
                    paginatorMaxPages="10"
                    paginatorActiveColumnStyle="font-weight:bold;">
                    <f:facet name="first">
                         <h:outputText value="|<" />
                    </f:facet>
                    <f:facet name="previous">
                         <h:outputText value="<" />
                    </f:facet>
                    <f:facet name="next">
                         <h:outputText value=">" />
                    </f:facet>
                    <f:facet name="last">
                         <h:outputText value=">|" />
                    </f:facet>
                    <f:facet name="fastforward">
                         <h:outputText value=">>" />
                    </f:facet>
                    <f:facet name="fastrewind">
                         <h:outputText value="<<"/>
                    </f:facet>
               </t:dataScroller>* I've tried changing the <h:outputText> to <t:outputText> or using images as in the examples [<t:graphicImage>] but that doesn't seem to help.
* I've also given every element on the page an id.

Might have been a while ago. I am / was using <t:dataTable> at that time. I still haven't found a solution to this problem.
What I have noticed though is when I startup my Tomcat, 2 or more sets of similar components (myfaces / sun) seem to be merged. But not sure if the behaviour of the dataTable is effected by this.
Any feedback wecome.
18:31:29,206  WARN Digester:120 - [ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandButton)
18:31:29,221  WARN Digester:120 - [ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandLink)
18:31:29,221  WARN Digester:120 - [ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlDataTable)

Similar Messages

  • Adf panel header facets disappear in internet explorer 8, 9

    Hello!
    I am using JDev&ADF 11.1.2.2 and my application works fine in Firefox 15.
    However, when opening it in IE 8 or 9, I get a problem with panel header facets.
    I have some jsff pages containing master-detail relationship with panel headers both in the master and the detail part.
    Every page is based on a page template. Every panel header contains Text and Toolbar buttons.
    In IE, when I try to change any attribute in the master table, Text and Toolbar disappear from the master panel header. I only can get them back if I refresh the page.
    I do not get this error when not using master-detail relationship, i.e. when I put only one table per page.
    I do not get this error in Firefox.
    Thank you in advance.

    Hi,
    I test this issue, actually, in IE 11, the option "set as backgroud" is grayed out after I applied policy  Administrative Templates > Control Panel > Personalization > Prevent changing desktop background, but seems not suitable for
    other versions of IE.
    You can try other solutions listed in the similiar thread
    How to disable the "Set as Desktop background"?<o:p></o:p>
    http://social.technet.microsoft.com/Forums/en-US/889447df-8452-44b4-bcdf-bf217b75ce6f/how-to-disable-the-set-as-desktop-background?forum=windowssteadystate
    Regards<o:p></o:p>
    Yolanda
    TechNet Community Support

  • Minimum height for second facet in PanelSplitter.

    I am using af:panelSplitter with vertical orientation. Is it possible to specify a minimum height for the second facet so that the facet so that the splitter cant be moved down when the second facet have certain height.
    At present I can move the splitter till the bottom of the page so that the second facet disappears entirely.

    Hi,
    don't think there is a way to do this.
    Frank

  • Air + Ipad + RemoteObject problem with session cookies

    I am making Air version for IPad of a Flex application.
    My flex application needs session from an secured enterprise proxy, without that session none remoteObject requests can pass the proxy and reach blazeDS.
    My solution for flex works fine: calling an enterprise  servlet at application´s startup to obtain a cookie session. I use a POST call to the servlet using URLRequest (sending the user and password parameters), the servlet responds with  a message with a session cookie, and from that point, without me having to code anything more, my flex application get that cookie with the session that automatically is loaded in my browser cookie stack, and that transparently is used from all my subsequents remoteObjects calls in the flex application.
    In my Adobe Air Ipad version, this just does not work, the session or is not storaged or is not attached with subsequent remoteObjects requests.
    - I´m forcing request.manageCookies = true
    - I´m working with the IOS simulator (Is there any difference for cookies with a real Ipad device?)
    - I´m using Flex 4.6.0, Air 3.5, IOS 6, Ipad 3, BlazeDS 4.0, Java 6 BackEnd.
    .. What´s the problem/difference with Air+Ipad from the flex version?

    Hi BalusC ,
    Thanks for your detailed response. I have a question about this comment you noted..
    "Terrible. Just keep the bean request scoped. "
    I changed the bean to request and now have this issue.
                <rich:dataGrid id="membersInZipcode" value="#{membersInZipcode.arrayListOfSearch4Member}"
                            var="membersInZipcode" columns="5" elements="20">                       
                <f:facet name="footer">
                    <rich:datascroller></rich:datascroller>
                </f:facet>
            </rich:dataGrid>
            </h:form>  I am using a request bean to hold the search parms that loads the bean. This works great.
    The problem is when I use the rich:datascroller for the next page.
    It goes back to the bean and the request scope bean is empty. This holds the search values.
    How do I put this back into the request after each process??
    Question 2..
    "Those settings only applies on the current request, i.e. the JSP file itself. Images are obtained by separate and independent requests. You need to set the headers on those requests as well. You can use a filter for this."
    I have never set a filter ...how do I do it? Do you have a link for an example of this filter setup?
    Thanks Again
    Phil

  • How to carry across a Facet through nested composite components

    Hello
    I have two nested composite components, with an inner component that does interesting things, and an outer that groups some child components in a convenient package. I would like to use a Facet in the inner component, and it would be nice if you could declare it on the outer component and have it passed through. But I am unable to achieve this, and there is no documentation on how it should work.
    I've made a test project where I try to use insertFacet in the outer component.
    Main page 'index.xhtml':
    <?xml version='1.0' encoding='UTF-8' ?>
    <!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"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:test="http://java.sun.com/jsf/composite/facettest">
        <h:head>
            <title>NestedFacetTest</title>
        </h:head>
        <h:body>
            <div>PageTopElement</div>
            <test:outerCC>
                <f:facet name="testFacet">
                    <div>FacetElement</div>
                </f:facet>
            </test:outerCC>
            <div>PageBottomElement</div>
            <br/>
            <div>PageTopElement2</div>
            <test:innerCC>
                <f:facet name="testFacet">
                    <div>FacetElement2</div>
                </f:facet>
            </test:innerCC>
            <div>PageBottomElement2</div>
        </h:body>
    </html>The outer composite component 'outerCC.xhtml' where I would like the Facet to be carried across:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!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"
          xmlns:composite="http://java.sun.com/jsf/composite"
          xmlns:test="http://java.sun.com/jsf/composite/facettest">
        <!-- INTERFACE -->
        <composite:interface>
            <composite:facet name="testFacet"/>
        </composite:interface>
        <!-- IMPLEMENTATION -->
        <composite:implementation>
            <div>OuterTopElement</div>
            <test:innerCC>
                <composite:insertFacet name="testFacet"/>
            </test:innerCC>
            <div>OuterBottomElement</div>
        </composite:implementation>
    </html>The inner composite component 'innerCC.xhtml' where I would like to use the Facet:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!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"
          xmlns:composite="http://java.sun.com/jsf/composite">
        <!-- INTERFACE -->
        <composite:interface>
            <composite:facet name="testFacet"/>
        </composite:interface>
        <!-- IMPLEMENTATION -->
        <composite:implementation>
            <div>InnerTopElement</div>
            <composite:renderFacet name="testFacet"/>
            <div>InnerBottomElement</div>
        </composite:implementation>
    </html>When I run the main page, I get the Facet text when I use innerCC directly, but not when I use outerCC. What do I do wrong, and how can I change the code so that the Facet is carried through to a nested composite component?
    I run GlassFish 3 with Mojarra 2.0.2 (FCS b10).
    Kind regards,
    Thomas Jahnsen

    I added an issue to Mojarra:
    http://java.net/jira/browse/JAVASERVERFACES-2219
    Feel free to vote for this that it will be implemented earlier.

  • Nested Skip Logic: How do I create a form where when a top-level option has changed, that its related sub-fields will retract (disappear)?

    How do I create a form where when a top-level option has changed, that its related sub-fields will retract (disappear)?
    (This question was asked also in 2012 and 2013, but no answer has been provided.)
    THANKS
    Deborah

    Hi qwerty,
    Dun tink that creative customer support sucks cos I had been dealing with them in the past and I can say that their service are quite gd and fast. If you wanted a refund, I tink you need to contact the store that sells you the product. Dun tink creative will refund you though.

  • Nesting of switchers in facet.

    Hi all,
    I am using Jdevloper 11.1.2.1.0.In my page fragment i have three command buttons depending on the button i select corresponding facet will be emerged to the user for this i used switcher i followed this blog http://www.baigzeeshan.com/2010/08/using-afswitcher-component-in-oracle.html but the problem is when i press third command button in the third facet again i have two command buttons there depending on the command button which user selects corresponding facet should arrive but when i click on command button in the third facet its again linking to the first facet.Its not connecting to the respective facet.So Can anyone help on this.
    Thanks
    Sri

    Hi,
    sorry, but this question cannot be answered without knowing what exactly you did to show/hide switchers. To me the issue sounds like a UI refresh problem and you should set a PartialTriggers property on the surrounding layout container to refresh the switchers accordingly.
    Frank

  • Why in a parent layer text disappears, but it is visible in a child layer, a Nested Layer Question

    Hi,
    The text in the parent BLUE layer drops to the bottom of a layer box, which I can see in a Dreamer but not in the browers.
    This happens when I added a child RED layer to the parent.
    Without the child RED layer the text stays at the top of the box in the parent BLUE LAYER.
    What can be done so the text in the parent BLUE layer DOES NOT move the bottom of the layer and becomes visible in the brower?
    cheers,
    Dreamer101.1

    Content is HTML.  Style is CSS.  Custom CSS won't make updating content any faster.
    Start by learning HTML and CSS basics.  DW will punish you if you don't know how to work with Code.
    HTML & CSS Tutorials - http://w3schools.com/
    What suggestion you can make for my project?
    Use default CSS positioning (which is no positioning at all) and align divisions with CSS margins, floats and padding.  If your layout will be complex - several columns per page, consider using a CSS framework or Grid to set-up your web page template.  Some good Grid resources below:
    960 Grid System - http://960.gs/
    Boiler Plate CSS System - http://code.google.com/p/css-boilerplate/
    BluePrint: A CSS Framework - http://www.blueprintcss.org/
    When you are satisfied with the layout, it displays well in all major browsers AND your code passes validation:
    HTML Code Validator - http://validator.w3.org
    CSS  Code  Validator - http://jigsaw.w3.org/css-validator/
    SaveAs as a DW Template (.dwt).  Then add some editable regions for content that will change from page to page.
    More on DW Templates -
    http://www.smartwebby.com/web_site_design/dreamweaver_template.asp
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    Good luck with your project,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • ADF problem when use tomahwak's dataScroller

    Hi,
    I has tried to use ADF in apache's MyFaces.
    when I use tomahwak's dataScroller get from MyFaces's sample code
    <h:panelGrid columns="1" styleClass="scrollerTable2" columnClasses="standardTable_ColumnCentered" >
    <t:dataScroller id="scroll_1"
    for="data"
    fastStep="10"
    >
    <f:facet name="first" >
    <t:graphicImage url="images/arrow-first.gif" border="1" />
    </f:facet>
    </t:dataScroller>
    it will appear some warning message
    2006/2/22 01:24:25 oracle.adfinternal.view.faces.ui.action.ActionUtils getFormName
    Warining: Action can only be used within a form, or by specifying the formName attribute
    and the hyperlink in dataScroller will disappear.
    if I remove
    <application>
    <default-render-kit-id>
    oracle.adf.core
    </default-render-kit-id>
    </application>
    then it's ok. It seem like ADF has done something that cause the dataScroller can't work properly.
    does anyone ever have this problem ??
    Regards,
    Angus

    Franck,
    Thanks for your answer, perhaps I don't understand but you tell me.
    My problem is located on the handelKeys function, I've no problem to set the focus correctly.
    The focus is set with the java code below (where setFocusId is a javaScript function)
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service = Service.getRenderKitService(facesContext, ExtendedRenderKitService.class);
    StringBuilder script = new StringBuilder();
    script.append("setFocusId('").append(getInputTextId()).append("')");
    service.addScript(facesContext, script.toString());or same result (both are working)
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service = Service.getRenderKitService(facesContext, ExtendedRenderKitService.class);
    StringBuilder script = new StringBuilder();
    script.append("var inputText = AdfPage.PAGE.findComponent(\"").append(getInputTextId()).append("\");");
    script.append("inputText.focus();");
    service.addScript(facesContext, script.toString()); What I don't understand in my case is why my handleKeys function is not called when I use the arrow up key after the focus was set by the method above. I have to click on the inputText and then use the arrow up key in order to see that the handleKeys function was called. I don't have this problem with the tab key.
    is it more clear ? sorry for that
    Benjamin
    ps : I will try to use af:resource and get information on this point.

  • Tomahawk t:dataScroller in JDeveloper

    I am trying to use Tomahawk dataScroller in JDeveloper, but it looks like I have rendering problem. (Tomahawk 1.1.6, JDeveloper TP3)
    In the next and previous buttons image tag is not inside of the link tag.
    Buttons are rendered as following:
    <!--Start: javax.faces.Panel["scroll_1"]-->
    <td>
    <!--Start: javax.faces.Graphic["j_id__ctru31pc7"]--> < img id="reportForm:invTable:j_id__ctru31pc7" src="images/arrow-next.gif" border="1">
    <!--Start: javax.faces.Command["scroll_1next"]-->
    <a id="reportForm:invTable:scroll_1next" name="reportForm:invTable:scroll_1next" onclick="submitForm('reportForm',1,{source:'reportForm:invTable:scroll_1next','reportForm:invTable:scroll_1':'next'});return false;" class="OraLink" href="#"></a>
    </td>Here is a jsp code
         <t:dataTable id="data"
                      styleClass="scrollerTable"
                      headerClass="standardTable_Header"
                      footerClass="standardTable_Header"
                      rowClasses="standardTable_Row1,standardTable_Row2"
                      columnClasses="standardTable_Column,standardTable_ColumnCentered,standardTable_Column"
                      var="car"
                      value="#{pagedSort.cars}"
                      preserveDataModel="true"
                      rows="10"
                      rowId="#{car.type}"
                      rowOnClick="alert('rowId: ' + this.id)"
                      sortColumn="#{pagedSort.sort}"
                      sortAscending="#{pagedSort.ascending}"
                      preserveSort="true">
            <t:column>
                <f:facet name="header"></f:facet>
                <h:outputText value="#{car.id}" />
            </t:column>
            <t:column>
                <f:facet name="header">
                    <t:commandSortHeader columnName="type" arrow="true" immediate="false">
                        <h:outputText value="Type}" />
                    </t:commandSortHeader>
                </f:facet>
                <h:outputText value="#{car.type}" />
            </t:column>
            <t:column>
                <f:facet name="header">
                    <t:commandSortHeader columnName="color" arrow="true" immediate="false">
                        <h:outputText value="Color" />
                    </t:commandSortHeader>
                </f:facet>
                <h:inputText value="#{car.color}" >
                    <f:validateLength maximum="10"/>
                </h:inputText>
            </t:column>
        </t:dataTable>
        <h:panelGrid columns="1" styleClass="scrollerTable2" columnClasses="standardTable_ColumnCentered" >
            <t:dataScroller id="scroll_1"
                            for="data"
                            fastStep="10"
                            pageCountVar="pageCount"
                            pageIndexVar="pageIndex"
                            styleClass="scroller"
                            paginator="true"
                            paginatorMaxPages="9"
                            paginatorTableClass="paginator"
                            paginatorActiveColumnStyle="font-weight:bold;">
                <f:actionListener type="datasupport.DataScrollerActionListener"/>
                <f:facet name="previous">
                    <t:graphicImage url="images/arrow-previous.gif" border="1" />
                </f:facet>
                <f:facet name="next">
                    <t:graphicImage url="images/arrow-next.gif" border="1" />
                </f:facet>
            </t:dataScroller> Faces-config.xml has:
            <default-render-kit-id>org.apache.myfaces.trinidad.core</default-render-kit-id>Am I missing something?
    I will appreciate any help.
    Irina

    It is a runtime problem
    And it also exists in TP4
    Tomahawk 1.1.6 does work with JSF 1.2
    I removed
    <default-render-kit-id>org.apache.myfaces.trinidad.core</default-render-
    kit-id>line from the Faces-config.xml.
    Table scrolling works, but
    other component do not render, for example <dvt:graph>
    Also when ADF is added to the page
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>faces-config.xml is auto changed to
    <default-render-kit-id>oracle.adf.rich</default-render-kit-id>and <dvt:graph> will disappear at runtime.
    Thank you,
    Irina.
    PS. both TR3 and TR4

  • Nesting DataTable

    hello everyone
    i have problem in printing table in the following format
    student has taken many courses
    1.id name
    course1
    course2
    course2
    2.id name
    course1
    course2
    i am using nested datatable but it displays all the courses for every record
    any one could help me
    thanks in advance

    hi ramu use this code that will help u
    <t:dataTable id="Table" rowIndexVar="row"
                   value="#{Bean.list}" var="p" border="1"
                   cellpadding="1" cellspacing="1" first="0" rows="5">
                   <f:facet name="header">
                        <h:outputText value="View Details" />
                   </f:facet>
                   <t:column>
                        <f:facet name="header">
                             <t:outputText value="description" />
                        </f:facet>
                        <t:outputText value="#{p.description}" />
                   </t:column>
                   <t:column>
                        <f:facet name="header">
                             <t:outputText value="location" />
                        </f:facet>
                        <t:outputText value="#{p.location}" />
                   </t:column>
                   <t:column>
                        <tr>
                             <td colspan="2">
                                  <t:dataTable id="subTable" value="#{p.subList}" var="sub"
                                       border="2" cellpadding="2" cellspacing="2" first="0" rows="5">
                                       <t:column>
                                            <t:outputText value="Title" />
                                       </t:column>                                   
                                  </td>
                        </tr>
                   </t:column>
              </t:dataTable>
              <t:dataScroller id="scroller2" for="Table" paginator="true"
                   fastStep="2" paginatorMaxPages="5"
                   paginatorActiveColumnStyle="fontsize:10px;font-weight:bold;"
                   immediate="true">
                   <f:facet name="first">
                        <t:outputLabel value="first" />
                   </f:facet>
                   <f:facet name="last">
                        <t:outputLabel value="last" />
                   </f:facet>
                   <f:facet name="previous">
                        <t:outputLabel value="previous" />
                   </f:facet>
                   <f:facet name="next">
                        <t:outputLabel value="next" />
                   </f:facet>
              </t:dataScroller>

  • Objects in symbols disappearing after closing/reopening project-HELP!!!

    I am a college student working in flash CS5 and am in the middle of an animation project where i am creating a walking human figure using armatures.
    I began the project on the school computers, everything working fine. saved project to several places, including flash drive and computer's thaw space
    brought project home to continue working on my macbook. opened project and figures animated arms and legs (which were perfect on school comp) are completely missing. The symbol names are still in the library, but the objects themselves look like they've been deleted. they are nowhere to be found.
    This has happened every single time I close flash and reopen it, whether on the same or a different computer.
    I have had to recreate the whole project from scratch 4 times now because of this.
    I came in early to class to work on the project more, and lo and behold, it opened with all the arms and legs (the ones i had redone for the 4th time, from the most recent work session on my laptop). I continued working on the project, all going great, but then another class came in and i had to change computers.
    I saved in multiple places again, flash drive, thawspace, etc. and moved to another computer. Opened project from my flash drive, and the arms and legs are all missing again. i just have a floating head and torso, and the project is due in an hour. There's no way I can recreate all the drawings and armatures and animations from scratch a 5th time in just an hour.
    Here is any additional info that might help:
    both school and home computers are running Flash CS5
    began project on school computer using several flash files:
         1st file was simply to draw the pieces of the figure.
         2nd file i imported pieces from file 1 into library to begin animating in file 2.
         (once the objects were imported into file 2's library, file 1 should not affect them right?)
    I continued to improve and refine and eventually animate body parts in file 2, saving continually.
    As long as project is not closed, everything works perfectly. Once project is closed and reopened (even on same computer) armatured objects disappear.
    Their symbol names (placeholders) still appear in the library, but when you select them and see the overhead preview or enter symbol editing mode, it shows a blank screen.
    ******IMPORTANT******
    organization of files is this, in descending order from outtermost to innermost symbols
    1. mc_model-------------a movie clip of the entire figure, containing all the figures individual animated parts as separate symbols
    2. gs_leg------------------a graphic symbol containing one keyframe extending 40 frames, simply a placeholder for the armatured leg in the nested symbol
    3. gs_legArmature-----another graphic symbol containing the original drawing of the leg, also the leg's armature and animation, lasting 40 frames.
    NOW here's the thing.....when you enter into all of these symbols (mc_model>gs_leg>gslegArmature) and you are on the deepest level of the leg which contains the armature, once the project has been closed and reopened, the ARMATURE IS STILL THERE. The poses are still recorded in the timeline, the armature bones or connections or whatever the name for them is are still there, just the actual leg is gone. Just the drawing of the leg.
    I will try to attach a screenshot so you can see what I'm talking about
    http://i295.photobucket.com/albums/mm150/haleymariemackenzie/Picture2.png
    <img src="http://i295.photobucket.com/albums/mm150/haleymariemackenzie/Picture2.png">
    Hopefully that worked......
    Any help is appreciated. It is too late to save my project, but I want to get to the bottom of this so I can at least avoid it in the future.
    Thank you

    We are checking the cursor status from v$open_cursors. As you said it may be cached cursors.
    We have find out one more thing in connection pooling setting in Tomcat.
    It is having the below setting :
    connectionCacheProperties="(InitialLimit=2, MinLimit=2, MaxLimit=1024, MaxStatementsLimit=50, ConnectionWaitTimeout=10, InactivityTimeout=300, PropertyCheckInterval=600)"
    connectionCachingEnabled="true"
    If we are changing the value as follows , then the database is not showing any open cursors or even inactive connections.
    connectionCachingEnabled="false"
    But we cannot change this to false because of some other reasons .
    Can anybody explain why it is happening. Is there any other way around ?

  • Spry Menu Bar disappears absolute position

    Hello all this is my first time posting on this site so bear with me. I have a semi-transperant spry menu bar that i inserted into the header div, over an image. I moved the menu bar -38px, when the position is set to relative the menu bar is visible, however the old position of the menu bar has a blank white space there. I think this is due to the relative position property. When i change it to absolute the whole menu bar disappears? http://www.brightlikethesun.com/index2.html (the position is back to relative to show the menu bar and also background for header is blue to show the space) 
    CSS
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    width: 100%;
    margin: auto;
    position: relative;
    top: -38px;
    font-family: "Lucida Console", Monaco, monospace;
    opacity: 0.7;
    filter: alpha(opacity=60); /* For IE8 and earlier */
    margin-right: auto;
    margin-left: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 20%;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 70%;
    z-index: 1020;
    cursor: default;
    width: 50em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 50em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #EEE;
    padding: 0.5em 0.75em;
    color: #C0C0C0;
    text-decoration: none;
    background: rgba(98, 135, 167, .4)
    background: #45484d; /* Old browsers */
    background: -moz-linear-gradient(top, #45484d 0%, #000000 50%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #45484d 0%,#000000 50%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #45484d 0%,#000000 50%); /* IE10+ */
    background: linear-gradient(to bottom, #45484d 0%,#000000 50%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #33C;
    color: #FFF;
    background: #7d7e7d; /* Old browsers */
    background: -moz-linear-gradient(top,  #7d7e7d 0%, #0e0e0e 50%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 50%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 50%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 50%); /* IE10+ */
    background: linear-gradient(to bottom,  #7d7e7d 0%,#0e0e0e 50%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
      display: inline;
      f\loat: left;
      background: #FFF;
    html 
    <!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>Bright Like The Sun -- San Antonio, TX</title>
    <style type="text/css">
    <!--
    body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: #000;
    background-image: url(background.jpg);
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;  /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 5px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    font-family: Tahoma, Geneva, sans-serif;
    color: #000;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
    color:#414958;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
    color: #4E5869;
    text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
    /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
    .container {
    width: 80%;
    max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
    background-color: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
    background-color:#06C
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1 {
    float: left;
    width: 20%;
    padding-bottom: 0px;
    background: #f1da36; /* Old browsers */
    background: -moz-linear-gradient(left, #f1da36 0%, #fefcea 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#f1da36), color-stop(100%,#fefcea)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #f1da36 0%,#fefcea 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #f1da36 0%,#fefcea 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #f1da36 0%,#fefcea 100%); /* IE10+ */
    background: linear-gradient(to right, #f1da36 0%,#fefcea 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1da36', endColorstr='#fefcea',GradientType=1 ); /* IE6-9 */
    .content {
    padding: 0px 0;
    width: 80%;
    float: left;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The footer ~~ */
    .footer {
    padding: 10px 0;
    background-color: #000000;
    position: relative;/* this gives IE6 hasLayout to properly clear */
    clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    font-family: "Comic Sans MS", cursive;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    #menurules {
    margin: 0px;
    padding: 0px;
    -->
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><a href="#"><img src="BLTS1.jpg" alt="BLTS" name="BLTS" width="100%" height="100%" id="BLTS" style="display: block;" /></a>
       <ul id="MenuBar1" class="MenuBarHorizontal">
         <li><a class="MenuBarItemSubmenu" href="#"><center>Home</center></a></li>
         <li><a href="#"><center>Shows</center></a>
    <ul>
             <li><a href="#"><u>Upcoming shows</u><br />
    <br />
    May 4th 2013 @<img src="502.jpg" width="5%" height="5%"><br />
    Bright Like The Sun along with Little Science<br />
    8pm 21+
    </a></li>
                   </ul>
         </li>
         <li><a class="MenuBarItemSubmenu" href="#"><center>Merch</center></a>
           <ul>
             <li><a class="MenuBarItemSubmenu" href="#"><u>Album</u><br /><img src="coda fin cover.jpg" width="15%" height="15%"><font size="4">Coda Fin</font><br />
    Purchase Here or Itunes</a>
                        </li>
             <li><a href="#">Shirts--Coming Soon!</a></li>
             <li><a href="#">Various--Coming Soon!</a></li>
           </ul>
         </li>
         <li><a href="#"><center>Bio</center></a></li>
    <li><a href="#"><center>Contact</center></a></li>
    </ul><!-- end .header --></div>
    <div class="sidebar1">
      <p></p>
        <br />
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
      </div> 
      <div class="content"><p align="right"><a href="https://www.facebook.com/brightlikethesun"><img src="FB.jpg" width="30" height="31" alt="Facebook" /></a><img src="twitter-icon.png" width="30" height="31" /></p>
        <p align="left"><img src="weare.jpg" width="185" height="72" /></p><p align="right"><iframe style="border:none" src="http://files.podsnack.com/iframe/embed.html?hash=adznldvg&t=1366488970" width="340" height="54" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true" ></iframe></p>
        <p><img src="BLTS2.jpg" alt="BLTS" width="411" height="297" align="left" /><img src="BLTS font.jpg" width="340" /> is a Post-Rock band from San Antonio. They were born in early 2012 from the collective desire to make beautiful, thought provoking, and at times, chaotic music. Much like fellow Texan bands like Explosions in the Sky and This Will Destroy You, they are entirely instrumental, and known for creating progressively intricate waves of ambiance that grow with intensity and an unabashed wash of emotion. Attuned to their affinity for dynamics, seeing them live takes the listener from deafening walls of orchestrated sound, to melodies so subtle that one finds themselves acutely aware of their own breathing. <br />
          Bright Like The Sun&rsquo;s debut album, Coda Fin, was engineered/mixed by Alex Bhore (of This Will Destroy You), and mastered by TW Walsh (of Pedro The Lion). The record, which was self released, was made available on April 12, 2013.<br /><br /><img src="BLTS3.jpg" width="330" height="245" align="right" /></p>
    <br />
    <br />
        <h4>Bright Like The Sun Consists of:</h4>
        <p>Rob Mochen - Guitar <br />
        Chris Etheredge - Guitar/Keys <br />
        Christian Miranda - Bass <br />
        Steven Barrera - Drums    </p>
        <p><br />
        </p>
        <h4><u>Coda Fin</u> Release Date April 12th 2013    </h4>
        <h4><img src="coda fin cover.jpg" width="250" height="238" align="left" /><img src="venues.jpg" width="171" height="65" align="right" /><br />
        <br />
        <br />
        <br />
           <a href="http://502bar.com/"><img src="502.jpg" width="150" height="112" align="right" /></a><a href="http://www.gypsyloungeaustin.com"><img src="gypsylounge.jpg" / width="150" height="112" align="right"></a></h4>
        <p align="right"> </p>
      </div>
      <div class="footer">
        <p><font face="verdana" font size="2" font color="#FFFFFF">&#169;2013 Bright Like The Sun All Rights Reserved</font></p>
        <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    What I see:
    You need a width on the ul.MenuBarVertical style. Make it the same width as the ul.MenuBarVertical li selector.
    Remove the float: none; from this style:
    ul.MenuBarVertical ul li
         width: 12em;
         float: none;
    No such measurement as a half a pixel:
    ul.MenuBarVertical ul
         border: .5px solid #CCC;
    If you want a border, 1px is minimum...you repeat this incorrect half-pixel in several places.
    Running your page through the W3C Validator returned this: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.healthydirections.ca%2F&charset=%28dete ct+automatically%29&doctype=Inline&group=0
    Your initial errors are not declaring a DOCTYPE, which among other things, does not provide the browser with any information regarding how you want the code interpreted for your viewer. Some browsers guess well, some do not (IE).
    This
         <html>
    is insufficient.
    Apply this in its place, and run through the validator again.
    <!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">
    Beth

  • How to remove Editable region from nested template?

    I'm trying to remove an editable region from a nested
    template while retaining it in the parent template. DW doesn't want
    to let me do this.
    Example:
    - I've created an overall template call ALLPAGES.DWT
    - In it, there's an editable region called "related links".
    - The "related links" will stay the same for all my main
    pages (welcome, news, info, etc), so I'd like to create a nested
    template called MAINPAGES.DWT where the field is locked.
    So here's what I did; I started a new page from ALLPAGES.DWT
    and then I created a template MAINPAGES.DWT from it. Now I want to
    remove the editable region "related links". According to the DW
    manual, I should be able to highlight the region and go to
    Modify > Templates > Remove Template Markup, but that
    option is greyed out!
    Apparenlty the only way of removing the editable region is to
    create a smaller editable region within it. But that's unnecessary
    and sloppy. How can I remove the region entirely?

    > This use of nested templates is very useful and very
    simple and
    > straightforward.
    > It involves no additional overheads, and introduces no
    reliability
    > problems.
    I really disagree with this.
    > I cannot understand why Murray has such a bad attitude
    to nested
    > templates.
    I spent quite a bit of time using them, tweaking them,
    understanding them,
    and watching the problems that others have had here on the
    forum. My
    compelling conclusion is that there is nothing you can do
    with nested
    templates that you cannot do more simply and with far less
    trouble by using
    other methods, some involving other kinds of template
    regions, and some
    involving simple use of Library items, or better, server-side
    includes.
    > I can only assume either that he had a bad experience on
    the road to
    > Damascus,
    > after writing his definitive book on templates
    I assure you, it's based on much more study and experience
    than you have put
    into it.
    > "Templates are wicked and sinful! Don't play with them,
    or you will go
    > blind!"
    This is not only unkind, it's completely erroneous. Far and
    away, I am the
    single most enthusiastic proponent for the use of templates
    on these boards.
    Perhaps a read of my book would help you rid yourself of your
    attitude, too.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Clancy" <[email protected]> wrote in message
    news:[email protected]...
    > "Dodgeit" <[email protected]> wrote:
    >
    >>I'm trying to remove an editable region from a nested
    template while
    >>retaining
    >>it in the parent template. DW doesn't want to let me
    do this.
    >>
    >> Example:
    >> - I've created an overall template call ALLPAGES.DWT
    >> - In it, there's an editable region called "related
    links".
    >> - The "related links" will stay the same for all my
    main pages (welcome,
    >> news,
    >>info, etc), so I'd like to create a nested template
    called MAINPAGES.DWT
    >>where
    >>the field is locked.
    >
    > Very simple:
    >
    > Open allpages.dwt.
    > Save as template, with name mainpages.dwt (I always do
    this immediately so
    > that
    > if I do something stupid I don't corrupt the original
    template).
    > Insert the desired content into "related links".
    > At the beginning of the content area of "related links"
    insert the magic
    > code
    > @@("")@@
    > This turns off the editable region, and there will be no
    reference to it
    > in
    > pages derived from this template.
    > Save the changes to mainpages.dwt
    > Done!
    >
    > Have a look at
    >
    >
    http://www.corybas.com/Technical/Nested.htm
    > This is derived from my template techpage.dwt, which in
    turn is ultimately
    > derived from my template basicpage.dwt.
    >
    > Basicpage.dwt defines two editable regions 'title' and
    'subtitle' at the
    > top of
    > the page. Techpage.dwt sets a fixed title for all my
    technical pages, as
    > follows:
    >
    > <p class="hdgtn" ><!-- InstanceBeginEditable
    name="Title" -->@@("")@@Roger
    > Riordan: Technical notes<!-- InstanceEndEditable
    --></p>
    > <p class="hdgstn"><!-- InstanceBeginEditable
    name="Subtitle" -->Notes<!--
    > InstanceEndEditable --></p>
    >
    > In the page Nested.htm the references to 'title'
    disappear, and the two
    > lines
    > appear as
    >
    > <p class="hdgtn" >Roger Riordan: Technical
    notes</p>
    > <p class="hdgstn"><!-- InstanceBeginEditable
    name="Subtitle" -->Nested
    > Templates<!-- InstanceEndEditable --></p>
    >
    > This use of nested templates is very useful and very
    simple and
    > straightforward.
    > It involves no additional overheads, and introduces no
    reliability
    > problems.
    >
    > I cannot understand why Murray has such a bad attitude
    to nested
    > templates. I
    > can only assume either that he had a bad experience on
    the road to
    > Damascus,
    > after writing his definitive book on templates, or that
    it says simply:
    >
    > "Templates are wicked and sinful! Don't play with them,
    or you will go
    > blind!"
    >
    >
    > Clancy

  • Purchased a Movie, which has just disappeared - PLEASE HELP!!!

    I really need some help here please,
    A few hours ago, I purchased a Movie from the iTunes store which took 3 hours to download to my iPod touch which cost £6.99. A soon as it finished, I took then plugged it into my PC to transfer the purchase to my iTunes library, for a backup.
    Whilst I was doing this, iTunes (as per usual) froze on me when it was syncing and did not respond at all when I moved and clicked an area of the open window. Because of this, I was forced to quit iTunes and re-open it again, to try and get the film onto my PC.
    When I connected my iPod to iTunes again, the Movie disappeared from my iPod and there was no sign of it anywhere on my PC either. Where is it?!
    Because of this and un-aware I had to pay £7 again to download the movie on my iPod, I repeated the whole process and as before, the file just went missing on both my iPod and PC.
    You may ask "Why didn't you purchase it through iTunes on your PC?" and the reason why is because the iTunes Store doesn't work on the PC any more. I've tried hundreds of new and old solutions to fix this and none of them seem to work. I've disabled EVERY type of firewall that could potentially be blocking me using the store, disabled all spyware programs and it still won't work.
    I feel very angry and annoyed here, as I've spent £14 on 1 film I've tried to get twice and attempting to find a missing file that never appeared on my PC.
    So how do I resolve this constant freezing probelm with iTunes, how do I get the iTunes Store working again, and most importantly, is there any way of me getting my £14 back? Please help!
    Any answer will be greatly appreciated.
    Martin.

    girikavali wrote:
    I'm a begineer in labview. I want to evaluate an equation which has complex numbers through text code.. 
    Are you saying you don't want to use LabVIEW to evaluate this? In which case I suggest asking on a different forum.
    for(f=0;f<=2560;f=f+0.3125)
         R=((H12-e^(-i*k))/(e^(i*k)-H12))*e^(i*k);
    There is no 'f' in the loop, I don't understand what the loop would evaluate, unless k is a constant in which case the loop is redundant.
                k         function of frequency
                f          frequency 
    If k is a function of frequency you need to say what that function is. For example if you are evaluating 'k' for changing 'f' and applying it to the equation for R. I don't know what the best procedure would be but my first port of call would be nested loops: 'R' for each 'k' for each 'f' ?
    In the absence of a function for k this vi would evaluate you formula for k=f, I don't know if this wil help any.

Maybe you are looking for

  • How can I switch from Thunderbird to Mail without losing existing messages?

    I began using Thunderbird when I got my first iMac because I had been using it on my Windows PC. Now I am tired of dealng with the duelling Address Books (the OS X Address Book and the multiple Address Books within Thunderbird). So, I would like to s

  • Mac Help no longer searches

    Mac Help, in all apps that I've tried is no longer searchable. When I open Mac Help in say iTunes and search for the term Cover Flow the Help app doesn't find anything and the search icon just spins. When I click to stop the search the icon continues

  • Idoc Msg Type COND_A in MM condition transfer

    Hi, Idoc message type COND_A is used to transfer condition records from one client to another using ALE.We can use t-code MEK3 to transfer PB00 condition type . Can anyone tell me which t-code is used to transfer condition types other than PB00 like

  • Content in Message Monitoring

    Hi, Can anybody help me to know the exact message(message content) in Message monitoring.. Thanks in Advance.

  • No Faces After Update To Aperture 3.4.5

    Hi, I seem to have lost all Faces after updating to Aperture 3.4.5 (from 3.4.4). Checking similar forum posts has not helped so far (Aperture.plist deleted, no search team on the cork board). When I add Faces information to new photos, they do show u