Help setting up back navigation button by label name.

Newbie back for some gems of wisdom.
I am trying to get forward and back buttons to advance the user along the timeline by label name. I got the forward button to work, but can't seem to find the right code tweakage to get the back button to work.
Here is what I have:
stop();
var myLabels:Array = [ "A","B","C","D","E","F","G","H" ];
var nextLabel:String;
var inc:int = 1;
var prevLabel:String;
var inc2:int = -1;
fwdbtn.addEventListener(MouseEvent.CLICK, clickNextSection);
function clickNextSection(e:MouseEvent):void
    nextLabel = String(myLabels[inc]);
    gotoAndPlay(nextLabel);
    inc++;
bkbtn.addEventListener(MouseEvent.CLICK, clickPreviousSection);
function clickPreviousSection(e:MouseEvent):void
    prevLabel = String(myLabels[inc2]);
    gotoAndPlay(prevLabel);
    inc2++;
I'm sure there are some reduncies and I know I'm missing the variable that tells the timeline to subtract positioning from the array.
Do I need to define a new array for the back button?
Any idea what I'm messing up??
Thanks!!

Thanks for the reply! Kind of lost unfortunately.
So can you tell me how to edit the code to reflect that? Not sure how what the deincriment syntax and is and not sure how to set it up the way you are suggesting - only adding deincriment/increment on the fly.
Any help you could lend to chopping the code would be appreciated.
Love the logic you suggest. That would ideal for it to work from any point.
Thanks for your help!

Similar Messages

  • When trying to sign out of Hotmail the "back navigation button" remains green and I have to click sign out again and the same thing happens over and over and the only way to close Hotmail is to go to File and Close Frame, so what's my problem?

    When I attempt to sign out of Hot Mail by clicking "Sign Out," I get the "Sign In" instruction as I always have, however, the green Firefox navigation button remains on bright green (not going to gray) and my MSN home page will not close automatically as usual. I click on the green arrow and I get an instruction to "Sign Out" again. I click on that and get the "Sign In" again but the arrow stays green. I can repeat this countless times and never get signed out and always remaining on the MSN home page. The only way I can close is to go to File and click on Close Window and then my homepage will close and go back to desktop. I've been using Firefox for a couple of years now (IE prior to that for ten years) and have never had this problem. After using "Close Window" I go back onto my home page, from the desktop, and the navigation button is grayed out normally until I sign in again and we start the cycle over again. Have I been hacked?
    == This happened ==
    Every time Firefox opened
    == Approximately a month ago.

    I was doing a side-by-side comparison of the new and old server (we backed up the server before the reformat) and I can see that, evidently, CR XI was installed.  We have the directory C:\Program Files\Common Files\Business Objects\3.0 and all the versions match what is located in the project's bin directory.  Does this confirm that I did have XI installed and licensed at one time?
    If I purchase a more recent version, couldn't I update the reports to use the newer version?  I have all the source code.
    Thanks for your help, it is a nice sanity check for me after hours of reading forums and documentation.
    Also, just a shot in the dark, but I'm assuming it wouldn't do me any good to simply restore the aforementioned folder to my C drive?  Would that work if I registered all the dll's?
    Edited by: Eric Hollering on Dec 2, 2009 6:40 PM
    To be clear, I do have VS 2003 & 2005, and I have the source code.  I just have never used Crystal Reports in any of my .NET apps because the need wasn't there, so recompiling is not out of the question.
    Edited by: Eric Hollering on Dec 2, 2009 6:49 PM
    Also, I looked at the CrystalDecisions.CrystalReports.Engine.dll that was in the C:\Program Files\Common Files\Business Objects\3.0\Managed folder and when I right-click and view the properties, then the Version tab, in addition to the 11.0.9500.2 version number, there is a property called Product Version that has the value .NET.  Does that mean that this dll was bundled with Visual Studio?
    I also found this directory on the old server...does this tell you anything?
    C:\Program Files\Business Objects\BusinessObjects Enterprise 11
    I did see that you can still buy XI from CDW.  I have a call into them currently to check with Business Objects for any registrations from my company.
    Edited by: Eric Hollering on Dec 2, 2009 8:27 PM

  • Help with Re-Linking Navigation Buttons

    I have Adobe Flash CS3 Pro.
    I have a navigation header flash file that came with my website template and I am having difficulty making sense of the actionscript. It has a logo section with effects, 5 main nav buttons that move, and two extra link buttons above the navigation bar. Let’s focus on just the Navigation buttons for now. Here is what I have gathered. I have multiple text buttons on one movieclip, and I have successfully edited the text for each button. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    I also have a separate movieclip symbol (with effects) with 5 buttons layers listed in the actionscript with the following actionscript tied to each button from numbers 1 through 5:
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    On the top layer of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I also have a separate button symbol with the following actionscript:
    on (rollOver) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s2");
    on (release) {
                if (_root.link<>1) {
                            _root.menu["item"+_root.link].gotoAndPlay("s2");
                            _root.link = 1;
                            getURL("index.html");
    Now my website template came with 5 html pages that my flash navigation buttons correspond to: (index.html, index-1.html, index-2.html, index-3.html, index-4.html, index-5.html). My problem is that I have created new pages (index.html, about.html, featured.html, projects.html, contact.html). I would like each of the 5 buttons to correspond to these pages, not the existing standard “index-n.html” pages. 
    Also, this is probably not relevant, but each html page has something to this affect so I can see how they correspond to each button.
    <script type="text/javascript">
              var fo = new FlashObject("flash/menu_vf8.swf?button=2", "head", "100%", "144", "7", "");
              fo.addParam("quality", "high");
                        fo.addParam("wmode", "transparent");
                            fo.addParam("scale", "noscale");
              fo.write("head");
            </script>
    I guess my real question is: What actionscript do I need to update or remove for the nav button LINKS to work with my new html pages rather than the standard 5 index-n.html pages that it automatically wants to link to?
    When I try and add a “getURL” command to each of the 5 buttons and test preview the movie, the links work, but it messes up the effects of the movieclip. In other words, the buttons don’t move, they are motionless, however the links work. If I added this command to each button in some way, what actionscript would I need to remove so there weren’t any complications? I need some expert help here for it would be much appreciated. I am a novice with Flash script and its killing me that I can’t figure it out. I asked for help from the template support and all they came back with was the following message and it wasn’t helpful:
    You need to duplicate each button you are editing - it is very important.
    2) Update the scripting to look similar way:
    on (release) {
    if (_root.link<>num) {
    _parent["item"+_root.link].gotoAndPlay("s2");
    _root.link = num;
    if (num == 1) {
    getURL("index.html");
    } else {
    getURL("index-"+Number(num-1)+".html");
    Update it to:
    on (release) {
    getURL("http://www.google.com");
    Also, I read through the following discussion, which was helpful to a degree, but it still didn’t answer my questions about getting the links to work.
    http://forums.adobe.com/message/3614092#3614092

    First of all, thank you for showing interest and helping out in my dilemma here. I wish I understood your meaning behind “on” because with my luck there is probably some hidden way of placing script on an object that I don’t understand or haven’t discovered yet.
    This is what I know:
    I have multiple text buttons on one movieclip entitled “textbutton1” (see previous picture), and I have successfully edited the text for each button and created two extra frames/buttons to make 7 total. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    But there is no action on each individual frame (all 7 of them) on that layer.
    Like I mentioned before I have a separate movieclip symbol (entitled “menu effect”) with 7 button movieclip layers listed in the actionscript with the following actionscript on each layer.
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    onClipEvent (load) {
                num=6;
    onClipEvent (load) {
                num=7;
    On the top layer (layer 4 frame 25) of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I can upload another particular image of the movieclip/actionscript if it would be helpful. Let me know.

  • Help please with my navigation buttons

    Can anyone please help me with my vertical navigation buttons. I'm trying to set up my nav bar so that all the buttons have a background image (button.jpg) behind them at all times and the only thing that changes when touched or the mouse rolls over them is that the colour of the text changes, except when the sub buttons appear, because the name of some of the sub buttons are so long i have created another button image that is longer (button2.jpg), i only want this to appear on sub buttons otherwise the buttons will end up taking most of the pages space. I'm having great difficulties getting the sub buttons to appear with the correct image (button2.jpg) and am getting increasingly frustrated with it, can anyone please help!!!
    www.milesfunerals.com/index2.html

    index2.html is a broken link for sure. The main index page looks like it's working fine.
    A little styling critique if it's okay... Personally I'd have gone with a CSS or Javascript multi-level menu across the bottom of the header. Saves visitors from having to scroll all the way down the page to see every menu item. And I'd rethink the color of the "Miles & Daughters" in the header image. It kinda gets lost in the roses.
    If you have a link to the "broken" page please put it up so we can analyze it.

  • Back Navigation button not visible in tablet resolution

    Hi,
    The back nav button is not visible when we run the application in SAP Webide with 800*600.
    It is visible when we run with mobile resolution 320*480.
    I have attached the screenshots in the attached doc.
    Any ideas.
    Regards
    V

    Hi Sakthivel,
    My oRouter have the following code. Are you talking about this as a device model?
        this.oRouter.navTo(
      "detail",
                    !jQuery.device.is.phone
    Regards
    V

  • Left/Right(Forward/Back) navigation buttons NOT working (do NOT change color/activate) in FF 3.6.12

    Since the most recent FF update to the 3.6.12, I find that the navigation arrows (top left) which normally show/allow you to go back or forward in your browsing, are NOT active and do NOT work. Using default theme. Normally, when there is a page to the left or right )forward/back) of the current one, these will turn blue to show where you can move to. Now the are blank/white and do nothing. Same issue with the reload and STOP icons. HP DV9500, Vista HPSP2 X32, Norton 360, Roboforms, Google Toolbar. cable connect, etc. I have tried restart, cache purge, cleaned out add-ons, reibstalled FF on top of current app., etc.
    Any one have any ideas or suggestion? I's appreciate the help.

    `The file mdentioned in this articled does NOT exist in my Firefox Profile folder and DISABLING all things Norton 360 including the Antiphishing has absolutely NO EFFECT on this issued. Nav arrors still in op, still get shut down hangs.
    Other suggestions?

  • Adding Navigation Buttons for Users of PDF Documents

    The default for Acrobat Reader (and even the Pro version)
    seems to leave the Forward and Back navigation buttons OFF the
    Acrobat Reader tool bar. You have to deliberately go into the Tools
    - Customize Tools menu and turn on these two buttons in order for
    them to appear in the tool bar. This creates problems for readers
    of your PDF documents if the readers of your documents aren't very
    computer savy. If you have links in your PDF document so readers
    can navigate around, not having the Forward and Back buttons up on
    the tool bar as a default makes these links almost useless. The
    reader has to know how to turn these two buttons on and some
    readers may not have a clue how to do that.
    My question: Is there a way to put 2 navigation buttons on a
    reader's toolbar AUTOMATICALLY when they open your document--ie,
    something embedded in the PDF doc that automatically turns these
    buttons on for the reader so they don't have to do it
    themselves?

    Thank you for your post. These forums are specific to the
    Acrobat.com website and its set of hosted services, and do not
    cover the Acrobat family of desktop products. Please visit the
    following forums for any questions related to the Acrobat family of
    desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • Cannot view HTML navigation buttons

    On my computer, Firefox (5.0) does not show the forward and back navigation buttons on one particular website. But on another computer with Firefox 5.0 the navigation buttons are visible and functional. I checked the "Websites look wrong" suggestions, but it isn't page styles, zoom level, font size, or script.
    The navigation links appear to be in a table. I see the other cells, but not the forward and back links. Here is an example:
    <title>Diario de Yucat&aacute;n - Ciudadanos rechazan la violencia</title>
    <div id="paging" align="center">
    <div id="notatitu">Ciudadanos rechazan la violencia</div>
    <table height="25" border="0" cellpadding="0" cellspacing="0" style="position:relative; margin-top:10px;">
    <tr>
    <td width="111" align="right" valign="top">
    <a href="funcion_subportada.php?galeria_slide=20110408&seccion=146460&id=90043&pag_=1"><img border="0" title="Foto anterior" alt="Foto anterior" src="http://www.yucatan.com.mx/images/bantenota.gif" style="padding-bottom:4px" /></a></td>
    <td valign="top"><div style=" color:#333; ">&nbsp;&nbsp;<strong>2 </strong> de <strong>22</strong>&nbsp;&nbsp;</div>
    </td>
    <td width="111" align="left" valign="top"> <a href="funcion_subportada.php?galeria_slide=20110408&seccion=146460&id=90043&pag_=3"><img title="Foto siguiente" alt="Foto siguiente" border="0" src="http://www.yucatan.com.mx/images/bsignota.gif" /></a>
    </td>
    </tr>
    </table>
    </div>
    <style>
    .principal{clear: both; display: block; height: 0;overflow: hidden;visibility: hidden;width: 0;}</style>

    Thanks so much for taking the time to address my question. Although your suggestion wasn't the fix, it led me to the solution. I had gotten a little carried away with AdBlock Plus. (Mexican websites can be extremely trashy with flashing graphics and ads.) In return for unubstructed reading, I had lost ability to see the navigation arrows, which are also .gif graphics! Thank you again!

  • The back navigating arrow goes grey and Ihave to use history to return to the search. AmI wrong?

    The back navigation button goes grey when I try to go back to search (www,. Safari); I use history to return when I can remember the start page. Am I wrong?

    You're not  wrong.. it should work.
    Try deleting the cache associated with Safari.
    Quit Safari.
    Now open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy/paste:   ~/Library/Caches/com.apple.Safari
    Click Go then move the Cache.db file from the com.apple.Safari folder to the Trash.
    Relaunch Safari to test.

  • Modular JavaHelp? Can the Merge function cope with non-existent help sets?

    We are writing a universal application which is intended eventually to manage perhaps 20 different pieces of our equipment. There will be a skeleton/umbrella application that is always present, and each customer will receive plug-in modules for the pieces of equipment they buy.
    We want the help system to seamlessly display all and only the modules that are present, indexed and made searchable; without mentioning others that are not present.
    My predecessors here were convinced that JavaHelp could cope with that. I don't see how.
    Three of the twenty modules are ready to go now, and I don't know what to do about the 17 or so that are missing. Do I add them to the main help set via the merge function using ficititous names and locations which then have to be recorded for posterity so the other modules when they are issued will know what to call their help and where to put it? If I don't add their names now, how will the main help set know when and if they show up?
    TIA for any advice and suggestions you have.
    Alfred B. Stansbury

    We are doing something similar. In our case, the skeleton app has a plugin extension point for help. Its a very simple extension point only specifying the path to a javahelp helpset. Any plugin modules that extend this extension point have those help sets loaded into the main skeleton help. Java helps merge capability makes this all possible.
    Nick

  • Back Navigation and Browser Buttons

    What is the best way to implement back navigation in JSF, such that the application also behaves as expected when the user sometimes uses the browser's back button?
    Say, we have a page "index.jsp" and a page "results.jsp". From both pages it should be possible to navigate to the page "help.jsp" (which contains a back button). From "help.jsp" it might be possible to further navigate to, say, "about.jsp" (which also contains a back button and is, for example, also accessible directely from "index.jsp").
    After the sequence "index->help->about", the user expects to be at "index" again after clicking back on about.jsp and then clicking back on help.jsp. If the same sequence starts at "results.jsp", the user would expect to be at "results.jsp" after clicking the two back buttons, etc.
    What is the best way to achieve this behaviour? I guess I best store the entire navigation history in a session bean (something like a stack or so). Is that a good idea? I wonder how I best treat the case when the user hits the browser's back button (for example to navigate back from about.jsp to help.jsp). Any ideas? I could imagine that I could send a unique id (e.g. an increasing counter, or a long random variable) for every button click (using a hidden input, maybe?), such that I can always find the right point again in my navigation stack. But how would I nicely integrate something like this in JSF?
    Thanks for any hints!
    Michael

    This one is nice. But it doesn't redirect to a GET-formed URL.
    I just had taken 20 mins to refine it:
    test.jsp<h:form>
        <h:inputText id="paramname1" value="#{myBean.paramname1}" />
        <h:inputText id="paramname2" value="#{myBean.paramname2}" />
        <h:commandButton value="submit" action="#{myBean.action}" />
    </h:form>MyBeanpublic class MyBean {
        private String paramname1;
        private String paramname2;
        // + getters + setters
        public void action() {
            System.out.println("meep");
    }faces-config.xml<lifecycle>
        <phase-listener>mypackage.PostRedirectGetListener</phase-listener>
    </lifecycle>
    <managed-bean>
        <managed-bean-name>myBean</managed-bean-name>
        <managed-bean-class>mypackage.MyBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
        <managed-property>
            <property-name>paramname1</property-name>
            <value>#{param.paramname1}</value>
        </managed-property>
        <managed-property>
            <property-name>paramname2</property-name>
            <value>#{param.paramname2}</value>
        </managed-property>
    </managed-bean>PostRedirectGetListenerpublic void beforePhase(PhaseEvent event) {
        if (event.getPhaseId() == PhaseId.RENDER_RESPONSE) {
            FacesContext facesContext = event.getFacesContext();
            HttpServletRequest request = (HttpServletRequest) facesContext.getExternalContext().getRequest();
            if ("POST".equals(request.getMethod())) {
                Set paramKeys = facesContext.getExternalContext().getRequestParameterMap().keySet();
                List params = new ArrayList();
                for (Iterator it = paramKeys.iterator(); it.hasNext();) {
                    String componentId = (String) it.next();
                    UIComponent component = facesContext.getViewRoot().findComponent(componentId);
                    if (component instanceof UIInput) {
                        String paramname = componentId.substring(componentId.lastIndexOf(':') + 1);
                        Object value = ((UIInput) component).getValue();
                        String paramvalue = value != null ? value.toString() : "";
                        params.add(paramname + "=" + paramvalue);
                String url = facesContext.getApplication().getViewHandler().getActionURL(
                    facesContext, facesContext.getViewRoot().getViewId());
                for (int i = 0; i < params.size(); i++) {
                    switch (i) {
                        case 0: url += "?" + params.get(i); break;
                        default: url += "&" + params.get(i); break;
                try {
                    System.out.println("PRG to " + url);
                    event.getFacesContext().getExternalContext().redirect(url);
                } catch (IOException e) {
                    e.printStackTrace();
    public void afterPhase(PhaseEvent event) {
        // Do nothing.
    public PhaseId getPhaseId() {
        return PhaseId.ANY_PHASE;
    }For restoring facesmessages, just add the relevant code of the PRG thingy you have found.

  • Hi apple user. I have lost all iPad safari bookmarks. Tried hold home button with sleep button but it doesn't get back my safari bookmarks. I also have reset without erasing my iPad data but still doesn't work. Help me get back my safari iPad bookmarks.

    Hi, I have lost all iPad safari bookmarks. Have tried reset without erasing data and hold home and sleep button together but when go to safari all safari bookmarks still lost. Is there any case help me get back my iPad safari bookmarks ? Currently my safari is hanged, can't surf webs or anything. I saw the safari tab on iCloud is on, but I don't know using iCloud. Please help me get back my iPad safari bookmarks. I have contact Apple but could not set chat session. I have my Apple ID registered same with iCloud, also same during the time I have all iPad safari bookmarks lost. My iPad never synced on computer since I bought it with set at local store. Please help me get my iPad safari bookmarks back, thanks.

    Hi, I quitted Safari and press and hold the Home and Sleep buttons silmutaneously unti the Ipad turn off and on with the logo Apple appears but it has hanged on and fixed to the point. I do it again hold the Home and Sleep buttons silmutaneously and the Ipad turn off and on again with the Apple logo but it still is hanged on the same point. I have do it a few more time, it still hanged to the same point for few hours with no change (like picture):
    I think my Ipad is fault now. I guess I must connect it to the computer with itune, or something. So my case is this: at the moment everytime I hold the Home and Sleep buttons the Ipad always off and reappear with the Apple logo and be hanged on (like the pic), and I need restoring my Ipad Safari bookmarks... so I guess I need using Itune or something to get back the Ipad then using Icloud or blah. Please guide me for the step, Im not sure if connect to PC, if any that my Ipad data would lost, or is there anyway that I also can get back Ipad Safari Bookmarks after connecting to PC, also the how using Icloud. There is no Apple store or service store in my country so I think I must do it my self. Feel free to share your guide, thanks.

  • Navigation (Back/Forward) buttons not working in Firefox

    I'm tring to put together a Browser Based help guide, and for the most part it's working as intended... except for the navigation buttons within the help guide themselves. By that I mean...
    Those guys. The way I would assume they work is that they provide back/forward navigation between topics as you move through the guide, but they don't seem to be functional. As in, they do nothing, ever. They don't even act clickable.
    (The forward and back buttons provided by my browser do seem to work, but I'd like to get these working, as well.)
    We're testing mostly in Firefox 13; we've also tried IE 9, and the buttons work correctly. Any ideas?
    (output is from RH9, for the record)

    Hi there
    It's odd that these would work fine in IE. To my knowledge, they aren't there to navigate from visited topic to visited topic and back. Unless I'm mistaken, they are there to traverse one or more Browse Sequences that have been defined.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to get the page navigation buttons back at the bottom of the page?

    After upgrading to Acrobat X I discovered that there is only one option for the page navigation buttons - at the upper left. I'm mystified as to why they put them there. Most users are right-handed. With the buttons at upper left it's awkward to reach up there, across the page, with the mouse cursor for every page turn (yeah, I know you can use the PgUp/PgDnkeyboard keys, but that requires taking your hand off the mouse every page turn).
    What I really want is to be able to put a copy of these buttons back down at the bottom center of the page, which was an option in previous versions. Is there some way to get those back at the bottom?

    Hi terpenoid,
    Have you tried Read Mode yet ( under the View menu)?  It displays a nivagation bar at the bottom of the PDF with next/previous page, zoom in/out, etc.
    Hope this helps,
    Dimitri
    WindJack Solutions
    www.windjack.com
    www.pdfscripting.com

  • Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started. How do I set FF back to open tabs in 1 window

    Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started 2 days ago. How do I set FF back to open tabs in 1 window?
    There is no plus sign and going into optins and changing settings has not worked. I have uninstall FF and reinstall-keeping my personalization-and that was no help.
    Right clicking on FF Icon to open a new tab, or going up to FF drop down tab and clicking on new tab both do not work.
    Help everything opens a new window not a new tab. there seems to be no way to reset this or to chose a different optin. I just downloaded new tabs at end addon and it didn't do a thing.

    as a first troubleshooting step - does it work like normally when you open & run firefox in [[Safe Mode|safemode]] by pressing the shift key while you open firefox (all other instances have to be closed before)...

Maybe you are looking for

  • Order Confirmation - Generate IDoc even if the order is credit block - How?

    Hi EDI Experts, I have a simple requirement. I have no requirement set up in the output determination procedure for Order Confirmation. At this scenario, i am getting outbound 855 IDoc for all the orders except, the orders with Credit block on it. Th

  • How to create a filter based on Effective date EFFDT

    Hello to all, I am currently creating reports from an HR database that stores records by employee (EMPLID) based on effective date(EFFDT) and Effective Sequence (EFFSEQ). It is easy to get a report that shows all entries up to a certain data (using <

  • Mainboard doesn't fit into 1U rack-mount casing

    It seems that all current design for Intel 865 Chipset and above have the audio head higher than the height of a 1U rack-mount casing thus it makes it difficult to build entry level server with them. Older designs (845) have the audio head flat thus

  • Namespace prefix in SOAP Elements causes problems in XI

    Hi guys, I'm using code generated by NW Developer Studio for use inside Portal components acting as a web service consumer. The problem is that the code generated includes a namespace prefix for each element in the body of the message, but XI doesn't

  • Set default filter

    Hello, could you please help me find the way to set default filter over a specifed colum in CRM 7.0 on a table view? It should work just like a manual created filter, but it should exists already by first call of a view with table. I tried following