Tab Page visible property node not working correctly

I am making a vi in which we have a tab control with 6 pages and to move from one page to another there is ring control with option for every page on page 1( page 1 is the default page), at a time only one page is visible so we can move only through that ring control present on page 1 and to come back to page 1 from all other pages there is button "go back" on all other 5 pages, everything is working fine for 5 pages but when after going on page 6 and then if i press go back button instead of going back to page 1 program hangs and one more thing that i noticed is after stopping the program the page 6 becomes the default page( which otherwise is page1) i dont know why this is happening.
I am attaching the snippet of the code which executes when i press go back button.
one more thing that i am not getting here is when i checked the program through step execution, the last property node( page6 ) that is executing first after that it goes to first property node and then it goes in sequence, this also i want to how is this happening.
Solved!
Go to Solution.
Attachments:
tab page property node.png ‏43 KB

I think you would be better off just to use your array and turn on/off the necessary tabs instead of explicity setting each property every iteration.
Attached is one example.
"There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal
Attachments:
set visible tabs.png ‏56 KB

Similar Messages

  • Property inspector not working correctly

    The property inspector in CS3 is not working correctly. When
    I select text or any other object the property inspector does not
    change for that object. But when I right mouse click on the
    selected object it does. Do I need to change a setting?
    Thanks!

    Yes, me too. I can't find an answer to this anywhere.
    If I right-click or double-click on an item the property
    inspector shows it, but if I single click, nothing happens. It's
    bad for productivity.

  • Swap method for list of Nodes not working correctly

    Ok so I'm basically messing with a list of nodes, swapping, reversing, and cycling. My only problem is the swap method that I am implementing.
    It starts out with a boolean to see if the position is valid, and if so, it will go through the instructions.
    The first condition is that if the the position to be swapped( which is named secondPosition) equals 2, it goes through a certain method, which I have no problem with...BUT in the second condition, if secondPosition is greater than 2, I have to use a different way of swapping them...Of course, I have to change their references and not positions, since that's the way nodes work. Also, at the end of the list of nodes, the reference will be null, so I have to deal with that as well, which is to set it to the first node in the list. I am very sure I am writing the code for swapping correctly, but yet it seems that the lists that I swap in the second condition don't even change at all! I don't really see how its happening...could anyone help???
    Here is the run:
    TESTING SWAP
    Trying an invalid swap (position 0)
    Passed test
    Passed test
    Trying an invalid swap (position 4/list size 3)
    Passed test
    Passed test
    Trying a valid swap (position 3/list size 3)
    Passed test
    *** Failed test (bad list on swap)
    *// the result is supposed to be: John Jack Jill, but the list stays in its initial state*
    Jack
    Jill
    John
    Trying a valid swap (position 3/list size 4)
    Passed test
    *** Failed test (bad list on swap)
    *// result is supposed to be Jill Jack John Jerry, yet the list stays in its initial state*
    Jill
    John
    Jack
    Jerry
    Trying a valid swap (position 4/list size 4)
    Passed test
    *** Failed test (bad list on swap)
    *//result is supposed to be Jill Jack John Jerry, yet it still stays in its initial state*
    Jill
    John
    Jack
    Jerry
    Trying a valid swap (position 2/list size 3)
    Passed test
    Passed test
    Here is the method:
         public boolean swap(int secondPosition)
              boolean valid = false;
              if( secondPosition == 2)
                   valid = true;
                   Node<T> nodeOne = this.firstNode;
                   Node<T> nodeTwo = nodeOne.getNextNode();
                   Node<T> nodeThree = nodeTwo.getNextNode();
                   firstNode = nodeThree;
                   nodeThree = nodeOne;
                   nodeOne = nodeTwo;
              else if( secondPosition > 2 && secondPosition <= length)  //this loop is where I'm having problems
                   valid = true;
                   Node<T> nodeBefore = getNodeAt(secondPosition -2);
                   Node<T> nodeOne = nodeBefore.getNextNode();
                   Node<T> nodeTwo = nodeOne.getNextNode();
                   Node<T> nodeAfter = nodeTwo.getNextNode();
                   if( nodeAfter == null)
                        nodeAfter = firstNode;
                   nodeBefore = nodeTwo;
                   nodeTwo = nodeOne;
                   nodeOne = nodeAfter;
              return valid;
         }

    I'm sure there is a bug in swap method.
    if( secondPosition == 2)
                   valid = true;
                   Node<T> nodeOne = this.firstNode;
                   Node<T> nodeTwo = nodeOne.getNextNode();
                   Node<T> nodeThree = nodeTwo.getNextNode();
                   firstNode = nodeThree;
                   nodeThree = nodeOne;
                   nodeOne = nodeTwo;
              }All this code does not actually reorder your nodes. All it does is move a bunch of pointers about. For example firstNode will end up pointing to the last node in the list but this does not automagically make it the first node. If you were to make a call to firstNode .getNextNode I'm sure it will return null and not the next node in the list like you think.

  • SSRS 2008 R2/SSRS 2012 Tab Delimited setup is not working correctly in Report Designer

    I have changed a RSReportDesigner.config to add a tab delimited option for report export, but it is not working correctly in vs2008/vs2010 report designer. I get a duplicate of CSV (comma delimited) in the export dropdown list.
    I have tested SSRS 2008 R2/SSRS 2012 on Windows 7 64 bit professional.
    It is working correctly in the report manager.
    <Extension Name="TAB" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
            <OverrideNames>
                <Name Language="en-US">TAB delimited</Name>
            </OverrideNames>
            <Configuration>
                <DeviceInfo>
                    <FieldDelimiter xml:space="preserve">&#9;</FieldDelimiter>
                    <Encoding>ASCII</Encoding>
                    <UseFormattedValues>False</UseFormattedValues>
                    <NoHeader>False</NoHeader>
                    <FileExtension>TXT</FileExtension>
                </DeviceInfo>
            </Configuration>
          </Extension>

    Hi Dave0323,
    According to your description, you want to export your report into TXT file and change the delimiter to be a Tab. Right?
    In Reporting Services, when exporting to a CSV file, we can change the default field delimiter to any character that we want, including TAB, by changing the device information settings in the configuration file. For example, to use TAB,
    update the FieldDelimiter setting to <FieldDelimiter xml:space="preserve">[TAB]</FieldDelimiter>. And we can change the FileExtension to be TXT if we want to export it into a TXT file. So in this scenario, we just need to modify the configuration
    file like below:
    The result looks like below:
    Reference:
    CSV Device Information Settings
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Spry tab not working correctly after custom changes

    Hi,
    i have used Spry Widget for making tabs in Dreamweaver for one of my project. i have customize these tabs. every thing was working fine until i add the horizontal scrolling to tab by jquery. tabs are not working correctly they do not show the tab content. i am sure there is some linking issue. all this problem begin when i added a addition div within the spry div tags if i remove <div style="overflow: hidden;" class="sc_menu" > every thing start working fine but this div control the scrolling and its important to put there. please can any one guide me what i am doing wrong i have uploaded the project to my server. below is the zip file link to download.
    http://khurram.visbl.com/test.zip
    please let me know if someone having problem in downloading above zip file. also waiting to find a solution for above. hope anyone is here who knows the solution 
    Best - Khurram

    Sorry to disappoint, the structure of the tabbed panels is
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent">Content 1</div>
        <div class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    As soon as you change that structure, this widget (out-of-the-box) will not work.
    Gramps

  • ITunes Store Pages not working correctly

    Since a few days ago iTunes Store (on full page) is not working correctly. The "pictures at the top" do NOT rotate any more (usually every 10 seconds or so before) often with blanks too. Also when clicking on an Lp information the box appears but Blank too. I have tried all the usual methods - permissions and disc checks etc. If I use small page (not full) it seems to work OK. The problem began after Safari 5 arrived. Anyone else having iTunes problems like this? (Similiarly the Dictionary Application with Wikipedia is not working correctly - but thats another issue!). Any answers out there??
    Message was edited by: Dave Jelfs

    This issue has now been completely resolved with the introduction of iTunes 9.2 Everything up and running again - thank you Apple! (Still an issue with Dictionary app/Wikipedia not functioning correctly, this has not been resolved)

  • Spry menu formatting not working correctly in DW CS6

    Hello,
    I've installed  a spry menu but the formatting is not working correctly.
    The hover colour works correctly but the selected menu item  colour does not change. Only the home menu tab remains coloured.
    Please can anyone suggest what might be wrong?
    Thank you.
    Robbieg

    Ah. OK. I've found the problem. On the every page  I've got a class=current attribute to the <a> tag for the  home menu item.
    Now, since this menu code is in a template as part of the top part of every page, it means that this is also included on all the other pages of the site. How do I get this attribute  to be different on each page that uses the template?
    Thank you.
    Robbieg

  • If statement within a view is not working correctly ?

    Hi all,
    maybe i am wrong but i think the if statement within a view is not working correctly. See code down below.
    I would like to use the Hallo World depending on the page attribute isFrame with or without all the neccessary html tags. Therefore i have embedded the htmlb tags in an if statement. But for any reason if isframe is initial it isn't working. It would be great if anybody could help me.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <% if not isframe is initial. %>
      <htmlb:content design="design2003">
         <htmlb:page title = "Top Level Navigation view">
    <% endif. %>
    hallo world
    <% if not isframe is initial. %>
         </htmlb:page>
      </htmlb:content>
    <% endif. %>
    thanks in advance and best regards
    Matthias Hlubek

    Matthias,
    The short answer: your example is <b>NOT</b> going to work. The long answer will probably 5 pages to describe. So first let me rewrite the example so that it could work, and then give a short version of the long answer. Do not be disappointed if it is not totally clear. It is rather complicated. (See the nice form of IF statements that are possible since 620.)
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <% if isframe is <b>NOT</b> initial. %>
    <htmlb:content design="design2003">
      <htmlb:page title = "Top Level Navigation view">
        hallo world
      </htmlb:page>
    </htmlb:content>
    <% else. %>
      hallo world
    <% endif. %>
    So why does your example not work? Let us start with a simple tag:
      <htmlb:page title = "Top Level Navigation view">
      </htmlb:page>
    Now, for each tag, we have effectively the opening part (<htmlb:page>), an optional body, and then the closing part (</htmlb:page>). We are now at the level of the BSP runtime processing one tag. What the runtime does not know, is whether the tag wants to process its body or not. Each tag can decide dynamically at runtime whether the body should be processed. So the BSP compiler generates the following code:
      DATA: tag TYPE REF TO cl_htmlb_page.
      CREATE OBJECT tag.
      tag->title = 'Top Level Navigation view'.
      IF tag->DO_AT_BEGINNING( ) = CONTINUE.
      ENDIF.
      tag->DO_AT_END( ).
    You should actually just debug your BSP code at ABAP level, and then you will immediately see all of this. Now, let us mix in your example with our code generation. First you simplified example:
    <% if isframe is NOT initial. %>
      <htmlb:page title = "Top Level Navigation view">
    <% endif. %>
    <% if isframe is NOT initial. %>
      </htmlb:page>
    <% endif. %>
    And then with our generated code. Look specifically at how the IF/ENDIF blocks suddenly match!
    if isframe is NOT initial.
      DATA: tag TYPE REF TO cl_htmlb_page.
      CREATE OBJECT tag.
      tag->title = 'Top Level Navigation view'.
      IF tag->DO_AT_BEGINNING( ) = CONTINUE.
    endif.
    if isframe is NOT initial.
      ENDIF.
      tag->DO_AT_END( ).
    endif.
    You can see that your ENDIF statements are closing IF blocks generated by the BSP compiler. Such a nesting will not work. This is a very short form of the problem, there are a number of variations, and different types of the same problem.
    The only way to solve this problem, is probably to put the body into a page fragment and include it like I did above with the duplicate HelloWorld strings. But this duplicates source code. Better is to put body onto a view, that can be processed as required.
    brian

  • 1st Gen iPod touch not working correctly?

    I have a 1st generation 8GB iPod Touch. It's not working correctly.
    My biggest problem is that, unexplaiably, certain areas of the screen don't seem to register touch anymore. There is a sort of "L" shape on the left and bottom edges of the screen that won't register touch, making it impossible to move applications to the previous page on the home screen and making it hard to use the keyboard/buttons while in portrait mode. It's extremely frustrating to try to change the volume while playing a song, as I now have to either put the iPod in sleep mode then double tap the home button or flip it to cover flow and double tap the home button to do it.
    http://i38.photobucket.com/albums/e140/Vipershark/IMG_0001.png
    (Highlight the image to see it better.)
    This is a screenshot of the working/non-working areas that I made using the Whiteboard application. The white area that you see (excluding the little half circles of black which are extended brush strokes and not actually working areas) is the area that doesn't work. I can't seem to figure out why it happened, as I've never dropped or otherwise damaged it. It just happened one day, and I don't know why.
    But I can't fix it. I've tried everything. Upgrading (I'm now running iPhone OS 3.0 which still didn't fix the problem.) didn't work, restoring didn't work, deleting everything and restoring from factory settings didn't work.
    I'm also having a few other problems as well, though they're not as bad. My home button seems to stop working sometimes and sometimes the entire screen witll stop registering touch until I put the iPod to sleep and turn it back on. It also seems to go a lot slower than usual.
    My iPod is less than a year old. Can you help?

    Vipershark,
    I had a very similar problem this past weekend with my 1G 8GB iPod touch. But with me, just the left side of the screen wasn't registering my touch. I could still access the bottom section, which you cannot.
    The good news for me is that I fixed it and I hope it works for you as well. What fixed it for me was resetting all my settings. To do this, go to the settings icon, then click on general, and then on the very bottom is reset. Choose "reset all settings."
    Apparently this is different than a restore through iTunes, which you tried. I also tried that earlier and it did not help.
    Of course, the reset solution I used relies on you being able to access all of the correct buttons, so I hope you can!
    Please let us know if this works for you. If not, since it is less than a year old, it is still under warranty. Contact Apple and see what they can do.

  • Share point in server admin not working correctly... I think

    I suspect that the share point in server admin is not working correctly. In workgroup manager when I click on a user and then click on the "home" tab, under the full path field I see a file path of:
    afp://server.mydomain.com/Users
    However if I go to Server Admin -> AFP -> Share Points then click on the Users share and then click on the share point tab below, enable auto mount is disabled. How can this be possible? I thought for a directory to show up in home in workgroup manager it had to be set as an auto mount. Has something possibly corrupted? And what?

    Here's a bit more information about our setup and our experiences with Apple's CUPS implementation:
    On the server, all printer queues are set up with only lpr and ipp sharing enabled with the PPD setting for each printer set to Generic Postscript. We found that setting the PPD to the printer specific one on the server caused problems when clients tried to use printer specific options, like paper tray selection, etc.. The selection would be undone, apparently because the driver on the server would override the previous settings. Using Generic Postscript allows the client PPD settings to go through unmodified. Our printers are general a mix of HP LaserJets and some Sharp Copiers.
    All clients use lpd to the server queues with the printers' actual PPDs configured. Using ipp is superior in that printer feedback (jams, out of toner, etc) makes it back to the clients, but ipp only works when the client, the server, and the printer are on the same network. If the ipp client is not on the same network, the client spooler immediately goes into a paused state and the print job is stuck on the client.
    Using lpd to the server queues works reliably, but there is no feedback to the client. Jobs disappear from the client queue and go to the server, appearing to the user as a successful print. If the printer is down, there's nothing they can see or do about it.

  • Substitution rule is not working correctly

    Hi PS Gurus,
    We have a problem in one of the newly created projects that the substitution rule is not working correctly; the data is not copied to the WBS element Cust. Enhancement tab.
    Project 1 is working fine and the data is copied & Project 2 and Project 3 are not getting all the data copied to the WBS element,
    In that project profile (substitution rule is given), substitution rule is also maintained 
    So please help why in one project substitution rule in working & other isnu2019t.
    Many Thanks in Advance.
    MM

    Hello Menaka,
    Select the WBS element in the project builder.
    Cleck on Edit --> Validation Substitution --> Substitution
    You will get the list of Substituitions, Double click on the required Substition rule.This action will generate a log, whether substitution has been succesfully caried out or with some error.
    Kindly provide us that error log to guide you further.
    Regards
    Ravi

  • Smart feed not working correctly

    hello,
    the smart feed are not working correctly in this course page :
    https://deimos.apple.com/WebObjects/Core.woa/BrowsePrivately/upmc.fr.2857894925. 02857894930
    Modified=01ca6e794f33e660
    I don't understand why...

    C, sorry…I read your posts out of order. I see that you have links to your smart groups after all. My apologies.
    It's as you say, the course pages load up, but I don't see anything in the smart groups. Just thinking out loud here…maybe the search criteria don't genuinely match anything on your site? Perhaps there are actual matches, but you've hidden content with a new credential?…I accessed both pages using the "Unauthenticated" and "All" credentials. My last/craziest guess is that it has something to do with localization…français versus anglais?

  • Is prompted filter not working correctly with calculated items

    Hello,
    I am working on OBIEE 11.1.1.3 and having problem problem linking 2 analisys with action link
    The test case is:
    I have 2 attribute columns on a dimension
    1. Conto 1 Code
    2. Conto 1 Dsc (in RPD i set up the property Descritor ID of -> Conto 1 Code)
    3. Conto 2 Code
    4. Conto 2 Dsc (in RPD i set up the property Descritor ID of -> Conto 2 Code)
    5. Conto Detail
    and 1 measure on the fact table
    1. Revenue (defined on RPD as simple sum)
    On presentation layer i have the analisys:
    1.
    The First one using as Criteria: Conto 1 Dsc | Conto 2 Dsc | Revenue
    The layout is a table with sub-total on Conto 1 Dsc
    On Revenue i created an action link to the second analisys containing
    2.
    Criteria: Conto 1 Dsc | Conto 2 Dsc | Conto Detail | Revenue
    Filters: Conto 1 Code (is prompted) | Conto 2 Code (is prompted)
    This pair of analisys are working fine.
    Then i created a second pair of analisys as:
    1.
    Criteria: Conto 2 Dsc | Revenue
    Using Calculated group \ Items i created a numerous set of sub-totals
    On Revenue i created an action link to the second analisys containing
    2.
    Criteria: Conto 2 Dsc | Conto Detail | Revenue
    Filters: Conto 2 Code (is prompted)
    This pair of analisys are not working correctly. When i drill from first analisys to second one the Conto 2 Code filter is not used.
    Replacing in the second analisys Conto 2 Code (is prompted) with Conto 2 Dsc (is prompted) a filter is being generated on the drill but it's using the Conto 2 Code value and the analisys ends with no results.
    Thanks,
    Jonni

    Try adding Conto 2 code to the first analysis and keep the filter on the second analysis as Conto 2 code is prompted.
    -Amith.

  • Program not working correctly-Help!

    class Sort
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by select method.
         int[] selectSort(int[] input)
              /*declare variables to be used in array */
              int x, y, max, temp;
              int[] select = new int[input.length];
              /*This loop reads the entire array */
              for(x = input.length - 1; x>0; x--)
                   max = 0;
                   /*This loop checks to see if any number is
                   lower possible greatest number /
                   for(y = 0; y <= x; y++)
                   {//Returns number if lowest number
                        if(input[y] > input[max])
                             max = y;
                        }//end of if statement
                   }//end of inner loop
                   /*Switches the values */
                        temp = input[x];
                        select[x] = input[max];
                        select[max] = temp;
              }//end of outer loop
              return select;          
         } //end of selectSort()
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by bubble method.
         int[] bubbleSort(int[] input)
              int[] bubble = new int[input.length];
              for (int x = 1; x < input.length; x++)
                   for (int y = 0; y < input.length - 1; y++)
                        if (input[y] > input[y+1])
                             int temp = input[y];
                             bubble[y] = input[y+1];
                             bubble[y+1] = temp;
              return bubble;
         } //end of bubbleSort
    **********************Test Class**********************
    class TestSort
         public static void main(String[] args)
              /* count variable used as loop counter when
              * result table display is generated
              int count;
              /* variable for object of class Sort */
              Sort x;
              /* create object of class GroupEx2 */
              x = new Sort();
              /* create a source array of integer elements */
    int[] y = new int[5];
    /* assign values to array elements to be sorted     */     
              y[0] = 8;
              y[1] = 5;
              y[2] = 3;
              y[3] = 9;
              y[4] = 1;
              /* create variable for target of select sort array */
              int[] ss;
              /* create variable for target bubble sort array */
              int[] bs;
              /* call method to return an array with element values select sorted*/
              ss = x.selectSort(y);
              /* call method to return an array with element values bubble sorted*/
              bs = x.bubbleSort(y);          
              /* display original and sorted arrays in three columns*/
              System.out.print("Input Array" + "\t");
              System.out.print("Select Sort" + "\t");
              System.out.println("Bubble Sort");
              for (count = 0; count < y.length; count++)
                   /* Column 1: original array */
                   System.out.print("input[" + count + "] = " + y[count]);
                   /* tab between columns 1 and 2 */
                   System.out.print("\t");
                   /* Column 2: select sorted array */
                   System.out.print("select[" + count + "] = " + ss[count]);
                   /* tab between columns */
                   System.out.print("\t");
                   /* Column 3: bubble sorted array */
                   System.out.println("bubble[" + count + "] = " + bs[count]);
              } // end of display for loop
         } // end of main()
    } // end of class TestSort

    Thanks for the Bash! I'm surprised you had the time
    for it.Go back and look at your original post. A whole bunch of code, and the only description of the problem is "not working correctly." Do you honestly think that's a reasonable way to ask for help? Do you go to the doctor and say, "I'm sick" and then just wait for him to cure you? Do you take your care to the mechanic and say only, "It's broke"?
    Look, this is your problem and it's your responsibility to fix it. There are people here who are happy to help you, but it's up to you to provide a reasonable statement of what's wrong, what you've tried, what you don't understand. For instance:
    Does it compile? If not, post the complete error message.
    Does it run, but throw an exception? If so, post the stack trace.
    Does it not throw an exception, but not behave the way you expect? Then describe the expected beavior and the observed behavior.
    Do you really need to be told this stuff? It seems like common sense that when you're asking people to spend their time helping you, you should give them the information they need to be able to do so.

  • LoginFilter not working correctly

    My Login filter is behaving very strangely. Here is the relevant code from the filter.
    if (o != null
                    || (url != null && (url.indexOf(LOGIN_URL) > 0
                            || url.indexOf(LOGIN_FORM_URL) > 0
                            || url.indexOf(EXTERNAL_LOGIN_URL) > 0
                            || url.indexOf(EXTERNAL_LOGIN_FORM_URL) > 0
                            || url.indexOf("images") > 0 || url.indexOf(services) > 0))) {
                chain.doFilter(request, response);
                return;The problem is we are trying to allow an external application to log into mine. The external application generates a link with an /externalLogin.do as the href. It steps into the above code and the indexOf() correctly finds it and the chain.doFilter is executed. But it never makes it to the externalLoginAction.java.
    If I copy the link and put it on my Login.jsp page and click it, it makes it to the chain.doFilter the same but then continues on to the externalLoginAction.java.
    So it look like the chain.doFilter is not working correctly if it is not comming from the same context?
    Anyone have any ideas?

    stupid stupid stupid.
    The first url was passing userName and password in the URL the second somehow got changed to userId... so struts was kicking it back.. just changed my struts config to not validate the external login form.

Maybe you are looking for

  • MacBook Pro 13" Late 2011 Experiencing Significant Slow Down After Boot Camp Installation

         Okay, so today, after installing Windows 7 on my MacBook Pro via Bootcamp Assistant, I experienced significant performance slow down (fans going at full blast, applications opening after extended periods of time, keystrokes not being registered)

  • Need help Sorting an Arraylist of type Object by Name

    Hey guys this is my first time posting on this forum so hopefully i do it the right way. My problem is that i am having difficulties sorting an Array list of my type object that i created. My class has fields for Name, ID, Hrs and Hrs worked. I need

  • IP Address Conflict

    I am using a linksys wrt54gs router, a wre54g range expander and a wusb200 wireless adapter, there is only one computer on the network and it's set to a static IP address.  Could someone please explain to me how I'm getting an IP address conflict wit

  • InDesign: How can I export indd pages to layered psd files?

    I wish to create layered PSD files from the pages of InDesign marketing brochures so that they may be used as templates in Photoshop by photographers (or whomever) that neither possess nor understand how to use InDesign? I have seen offerings by othe

  • HT4168 audio or video files in ePub document?

    I'd like to know if we can insert audio or video files to Pages that will export to ePub format? Thanks!