Shell Sort - Printing Each step in the algorithm

i have this shell sort algorithm, and i want to print out each step it takes to sort the array of numbers... i just am having trouble finding the proper spot to insert the print(a); statement
public class ShellSort
{ public static void main(String[] args)
{ int[] a = { 59,20,17,13,28,14,23,83,36,98,11,70,65,41,42,15 };
sort(a);
print(a);
public static void print(int[] a)
{ for (int i=0; i
System.out.print(a +" ");
System.out.println();
public static void sort(int[] a)
{ int d=1, j, n=a.length; // step 1
while (9*d
d = 3*d + 1; // step 3
while (d>0) // step 4
{ for (int i=d; i
{ int temp=a ;
j=i;
while (j>=d && a[j-d]>temp)
{ a[j] = a[j-d];
j -= d;
a[j] = temp;
d /= 3; // step 6
}any suggestions or hints???
thanks,
scott.

i'm sorry about the readability...
//  Scott Garshwiler
//  Example 13.2 taken from page 244 of Schaum's Outline
//  Testing the Shell Sort
//  Everything works  cost= theta(n^1.5)
public class ShellSort
{ public static void main(String[] args)
  { int[] a = { 59,20,17,13,28,14,23,83,36,98,11,70,65,41,42,15 };
    sort(a);
    print(a);
  public static void print(int[] a)
  { for (int i=0; i<a.length; i++)
      System.out.print(a[i]+" ");
    System.out.println();
  public static void sort(int[] a)
  { int d=1, j, n=a.length; // step 1
    while (9*d<n) // step 2
      d = 3*d + 1; // step 3
    while (d>0) // step 4
    { for (int i=d; i<n; i++) // step 5
      { int temp=a;
j=i;
while (j>=d && a[j-d]>temp)
{ a[j] = a[j-d];
j -= d;
a[j] = temp;
d /= 3; // step 6

Similar Messages

  • Messages open several tabs in Thunderbird, one for each step in the mail exchange

    A friend has a new PC with Windows 8.
    If a message is a reply, when opening the message each step in the mail exchange will open in a different tab in Thunderbird.

    Well, the question is that when I open a message in the Inbox, either by double clicking or by pressing Enter, if the message is a reply, i.e if there are more than one message "behind" the message I click to open, every step in the message history is open in a separat tab. Please see attachment

  • OLE automation application load and unload in each step in the sequence of the TestStand.

    what i need to configure for it unloading after step ? Changes in the RunOptions of the step doesnt help .
    I need work with unique application during this test in all sequences .
    Thanks , wait for your answer ASAP TestStand version 1.02
    OLE automation made in the VC++ 6.0
    I am used by ActiveX Automation Adapter

    I think the problem might be with COM. You will need to make your sequence release your reference before COM can unload it. To do that in TestStand, you set the reference to nothing (nothing is a keyword in TestStand). This will cause TestStand to release reference to your object and then COM will unload the object.
    Please give us an update if that worked.
    Anand Jain
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • What is the issue? When printing a 30x42 drawing PDF with 5 pages. The first drawing prints properly, but none of th eothers do. IF I print each separately, by selecting "current page" they print fine. Oh this is for Acrobat XI Standard.

    RE Acrobat XI Standard. When printing a 30x42 Drawing PDF with more than 1 page only the first page prints properly the rest are not the proper size or centered. Did I miss a setting? For now I can work around it by printing each page using the "Current Page" setting, but this delays me when there is more than 20 pages etc..

    RE Acrobat XI Standard. When printing a 30x42 Drawing PDF with more than 1 page only the first page prints properly the rest are not the proper size or centered. Did I miss a setting? For now I can work around it by printing each page using the "Current Page" setting, but this delays me when there is more than 20 pages etc..

  • Reading the output values after each step executes in LabVIEW User Interface

    Hello all,
    Development environment: TestStand 2010 SP1 and LabVIEW 2010 SP1
    Problem: is there a way to execute the subsequent steps programatically and get the output values from each of them?
    I have already extended a little bit a Full OI interface for TestStand to load up any sequence, choose some of the steps and run them step by step (something like option to Run Selected steps). What I am trying to do is to add some actions between each step and do that in User Interface (I can't modify the sequence!), so I am starting the NewExecution with some previously configured InteractiveArgsParam and set an option breakAtFirstStep to True. Afterwards I am just doing something like Step Over when debugging the sequence and this works good, but I didn't fine a way yet to read the output values from the steps...
    Then, if I wait until the execution finishes I can read my Results by processing the ResultObject, but this works only after finalizing of the test sequence. Since I wanted to stop after each step, read the values, do some actions and continue to the next step I tried to register an event callback for Trace of Execution View Manager. I can see that after each executed step this event is triggered, but when I try to read a ResultObject returned in Event Data it is not filled with values (ResultList seems to be empty?). Is it a proper behaviour or maybe I am doing the readout in wrong way? (It is the same VI as for reading ResultObjects after sequence finishes and there it works fine for arrays, containers and other data types).
    Like I mentioned I can't modify the Test sequences, I can't add a UImessages.
    What are my options? Should the trace event returns all output values from each steps or is it just used for status checking? Or maybe there is completely different approach to that matter?
    Thanks in advance for any suggestions,
    Best Regards.
    CLA, CTD, CLED @ Test & Measurements Solutions Poland
    Solved!
    Go to Solution.

    Thanks for your replay, I have tried to build it in my LabView Block Diagramm, es seems like this image.
    But the variable GetNumSubProperties ist always 0. Why?
    PS: I need only the variable "Step.Result.PassFail" from the last step, do you know, how can I get it? I think, it is maybe easier than read all the "Result".
    Attachments:
    ReadStepResultInLabview.JPG ‏39 KB

  • Sorting prints from array

    Hi,
    Working on a program which reads from a file, places it into an array and prints each word and the number of occurances. My problem is that I want the word which accurs the most times to print first and so on. Help would be highly appreciated..this is what I've come up with so far:
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class Komp{     
         static class OccuranceOfWord{
              private String mWord;          
              private int mCount = 1;          
              OccuranceOfWord(String word){
                   mWord = word;
              void increment(){
                   mCount++;
              public String toString(){
                   return mWord +"\t" +mCount;
              static OccuranceOfWord[] getOccurs(String fname) throws Exception{     
              Hashtable hash = new Hashtable();          
              ArrayList arrList = new ArrayList();          
              BufferedReader reader = new BufferedReader(new FileReader(fname));          
              String line;
              for (line = null; (line = reader.readLine()) != null;) {               
                   StringTokenizer st = new StringTokenizer(line);     
                   while (st.hasMoreTokens()) {                    
                        String word = st.nextToken();          
                        OccuranceOfWord oc = (OccuranceOfWord)
                        hash.get(word.toLowerCase());                    
                        if(oc == null){                         
                             oc = new OccuranceOfWord(word);                         
                             hash.put(word, oc);                         
                             arrList.add(oc);                     }                    
                        else{                         
                              oc.increment();
              OccuranceOfWord[] occurs= new OccuranceOfWord[arrList.size()];          
              arrList.toArray(occurs);          
              return occurs;
         public static void main(String[] argv) throws Exception{          
                   OccuranceOfWord[] occurs = getOccurs("c:/Recs.txt");          
                   for (int i = 0; i< occurs.length; i++)
                   System.out.println(occurs);     

    Hi, thanks for the help. Been wrecking my brain for two days now but I just can't work it out. I've managed to get it to sort by letters (A first and so on..) but I can't get it to sort by the interger. Please tell me what I've done wrong or give a codeexaple. This is what I've added:
         public static void main(String[] argv) throws Exception{          
                   OccuranceOfWord[] occurs = getOccurs("c:/Recs.txt");          
                   for (int i = 0; i< occurs.length; i++){
                        //System.out.println(occurs);     
                   // what Ive added, sorts print by letters..
                   System.out.println("\n\n Sorting by letters: \n\n");
                   TreeMap treeMap = new TreeMap(hash);
                   Iterator iterator = treeMap.keySet().iterator();
                   while(iterator.hasNext()) {
                        String key = (String) iterator.next();
                        Object value = treeMap.get(key);
                        System.out.println(value);
                   //end of new code..

  • Is it possible to remove the contribution step in the basic workflow?

    Hi,
    Our client wants complete control on the the steps and users for each step of the workflow.
    This is the approach they want to follow.
    There would be a default workflow associated for all content. Any updates to any manged content will have to go through this workflow. There will be only one step having one user for this workflow. Whenever content changes the workflow routes to this user. This user will then decide to define the steps and users for the steps of workflow to be asscoiated to this content.
    We thought of making it simple by using a critera workflow and basic workflows to achive this. The default workflow which I was saying would be the criteria workflow. Now once the workflow taskt comes o the user's basket he will then create a basic workflow for the content id with required steps and the users. He will then accept the criteria workflow and start the basic workflow immediately. But we have to ensure somehow that this content of criteria workflow should not be published. We are using content publishing uitility. Hope we can do something there. What I mean by not published here is that content changes made in the basic workflow should not be visible to the end site but they should be visible in the basic workflow.
    Now the concern is that in basic workflow there is a mandatory contributor step which is not really required for us. How can we avoid it. And we how to ensure that the approved contents of criteria are not published unless the basic workflow is approved?
    Regards,
    Pratap

    Pratap,
    I think you will have to mix several standard mechanisms to achieve what you are looking for.
    Note that there are two basic ways to achieve that an item is not accessible:
    - item's state (sending an item to a workflow or leaving it in pending state before the item is published belong to this option)
    - item's security (security groups, accounts, ACLs, etc.)
    If you want to have an item in a state that it has not entered a workflow (I'm not sure, but I think it wouldn't be a good idea to mix criteria and basic workflows), but it has to be accessible to a certain group of users, you may have to:
    1) check the item in so that it is accessible to the selected group of users only (published, no workflow)
    2) have the users start the workflow
    3) somewhere (most likely at the beginning of the workflow) relieve the security restriction so that "normal" users can access it during the workflow
    4) as soon as the workflow finishes, it will be available to everyone
    as for 1) I'd consider ACLs (Collaboration Manager component)
    Another option is to write a component with your own logic - if from any reason the standard mechanisms will have too many obstacles to overcome.
    I'd also recommend to consider using BPEL workflows rather than basic workflows - they are equally flexible (if not more) and they can be more easily combined with criteria workflows. You could:
    1) create a general criteria workflow which would grab any new item
    2) the criteria workflow would have just two steps: step 1 - grab an item, wait until BPEL workflow is defined/selected, then continue; step 2 - a synchro step which wait until BPEL workflow finishes, then continue or finish right away
    Jiri

  • FM to read the different steps in workflow and the status at each step

    Hi All,
    Is there any FM in SAP which gives the detail roadmap of the steps taken in a workflow and the diffrent status or decision at each step.
    I am looking for something like what you see when you click on the "STARTED WORKFLOW" in the business workplace outbox.
    Which shows up the "steps in the process so far "  and the decision and the agents for each of them.
    Thanks,
    Charan.

    Hi,
      You can get the status according to the task. please check with FM "SAP_WAPI_GET_WI_DELTA".
    Regards
    SM Nizamudeen

  • In Mail, is there a way to print the list of mail activity in a folder without actually printing each email?

    In Mail, is there a way to print the list of mail activity in a folder without actually printing each email?
    Thanks to all.

    Actually, I noticed in "More Like This" questions similar to mine.  One of the suggestions worked perfectly.
    Command Shift 4 turns the arrow into a target scope.  Use it to take a screen shot of the area you want printed.  Thanks to all.

  • How to print a value at the top of each page in the detail section of a rpt

    Thanks for helping, I will try to get right to the point.
    I have RTF template. Very simplistic template. I have the Group at the top (there is only 1 per XML file) and several DETAIL lines with like 10 columns.
    The first displayed field is "ACCOUNT_NUMBER". The user wished that if the ACCOUNT NUMBER for line 2 was the same as line 1, that it be suppressed, for example:
    Acct No other other other other
    1234 XX XX XX XX
    YY YY YY YY
    This was not a problem, I was able to accomplish it with the following code:
    <?if:position()=1 or ACCOUNT_NUMBER!=preceding::ACCOUNT_NUMBER[1]?><?ACCOUNT_NUMBER?><?end if?>
    But what happens is that IF THE FIRST line on a page has the same ACCOUNT_NUMBER as the last line on the previous page, the ACCOUNT NUMBER is not displayed.
    What I would like is for the ACCOUNT NUMBER to be displayed anytime we are at the first record on a page, AND anytime it is different from the previous record's value.
    I do not know how many lines per page are possible, because there are other line breaks which exist which put a space between lines when values change too. So I cannot just count how many total lines and divide it by lines per page.
    My thought was that there must be a way I could store a variable called LAST_PAGE, and at the end of each record, copy the current page number to that variable. Then in my ACCOUNT_NUMBER code, I could check if current page is NOT equal to last page along with my other conditions.
    1. Is this the best way to do this? If so, please help, I am new to BI and am having trouble figuring out where to put variables and stuff like that.
    2. If not, how can I do this?
    3. If your recommendation is going to be to group my items by Account Number, I may not have time to redo the report that way. I will happily supply the rtf and xml if that will help you help me.
    Regards:
    Michael Coughlin

    Here ya go. Obviously you can duplicate the G_DETAILS blocks to get enough for 2 pages. I have the data pre-sorted before the output is generated because I had trouble getting the RTF to work if I didn't, just so you know.
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle Reports version 6.0.8.28.0 -->
    <XXDIPICK_RPT>
    <LIST_G_HEADERS>
    <G_HEADERS>
    <SHIP_FROM_ORG_CODE>202</SHIP_FROM_ORG_CODE>
    <LINE_STATUS>Picked</LINE_STATUS>
    <LIST_G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>1000</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER>8062</DELIVERY_NUMBER>
    <ORDER_NUMBER>103049</ORDER_NUMBER>
    <CUST_NAME>DIAMOND INNOVATIONS INT SALES - NEWCO</CUST_NAME>
    <DELIVERY_DETAIL_ID>12474</DELIVERY_DETAIL_ID>
    <LINE_NO>1.1</LINE_NO>
    <ITEM_NO>4087401</ITEM_NO>
    <ITEM_DESCRIPTION>HPD M SD-CTO-0 Pot</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>1</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>EA</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-31T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>INTERNAL ORDER - US</NAME>
    <CUST_ACCOUNT_ID>16404</CUST_ACCOUNT_ID>
    <HEADER_ID>6446</HEADER_ID>
    <LINE_ID>7926</LINE_ID>
    <ORG_ID>84</ORG_ID>
    <SHIP_TO_ORG_ID>16050</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>16052</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>63927</INVENTORY_ITEM_ID>
    </G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>1000</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER>8062</DELIVERY_NUMBER>
    <ORDER_NUMBER>103049</ORDER_NUMBER>
    <CUST_NAME>DIAMOND INNOVATIONS INT SALES - NEWCO</CUST_NAME>
    <DELIVERY_DETAIL_ID>12475</DELIVERY_DETAIL_ID>
    <LINE_NO>2.1</LINE_NO>
    <ITEM_NO>3732307</ITEM_NO>
    <ITEM_DESCRIPTION>NV MBS 2325 Bushing Asm</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>1</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>EA</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-31T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>INTERNAL ORDER - US</NAME>
    <CUST_ACCOUNT_ID>16404</CUST_ACCOUNT_ID>
    <HEADER_ID>6446</HEADER_ID>
    <LINE_ID>7927</LINE_ID>
    <ORG_ID>84</ORG_ID>
    <SHIP_TO_ORG_ID>16050</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>16052</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>67865</INVENTORY_ITEM_ID>
    </G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>46711</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER></DELIVERY_NUMBER>
    <ORDER_NUMBER>102980</ORDER_NUMBER>
    <CUST_NAME>VAREL EUROPE</CUST_NAME>
    <DELIVERY_DETAIL_ID>12356</DELIVERY_DETAIL_ID>
    <LINE_NO>1.1</LINE_NO>
    <ITEM_NO>11004002</ITEM_NO>
    <ITEM_DESCRIPTION>TYPE I 100/120 MISC</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>75</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>CT</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-27T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>STANDARD ORDER - IRE</NAME>
    <CUST_ACCOUNT_ID>5004</CUST_ACCOUNT_ID>
    <HEADER_ID>6234</HEADER_ID>
    <LINE_ID>7312</LINE_ID>
    <ORG_ID>85</ORG_ID>
    <SHIP_TO_ORG_ID>18929</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>4995</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>42032</INVENTORY_ITEM_ID>
    </G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>76127</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER>7608</DELIVERY_NUMBER>
    <ORDER_NUMBER>102981</ORDER_NUMBER>
    <CUST_NAME>LION ENGINEERING SERVICES LTD</CUST_NAME>
    <DELIVERY_DETAIL_ID>12357</DELIVERY_DETAIL_ID>
    <LINE_NO>1.1</LINE_NO>
    <ITEM_NO>11004002</ITEM_NO>
    <ITEM_DESCRIPTION>TYPE I 100/120 MISC</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>200</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>CT</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-27T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>STANDARD ORDER - IRE</NAME>
    <CUST_ACCOUNT_ID>5614</CUST_ACCOUNT_ID>
    <HEADER_ID>6235</HEADER_ID>
    <LINE_ID>7318</LINE_ID>
    <ORG_ID>85</ORG_ID>
    <SHIP_TO_ORG_ID>18429</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>5605</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>42032</INVENTORY_ITEM_ID>
    </G_DETAILS>
    </LIST_G_DETAILS>
    </G_HEADERS>
    </LIST_G_HEADERS>
    </XXDIPICK_RPT>

  • How Do I Print Each Frame Separately in the new Firefox

    Before the recent Firefox update, in the print screen used to be an option to print each frame separately. Now, that option is gone. Does anyone know how to have it print each frame separately in the new Firefox? I work with a webpage where if I try to print, the first page prints, but the others are all blank. In the past, selecting each frame separately fixed this issue.

    Hi,
    You can try to [https://www.mozilla.org/en-US/firefox/new/ update Firefox] to check. You can also right-click on the page > '''This Frame''' > '''Print this frame'''.
    [https://support.mozilla.org/en-US/kb/fix-printing-problems-firefox?e=sph&redirectlocale=en-US&as=s&s=printing&r=0&redirectslug=Firefox+prints+incorrectly Printing problems]
    [http://kb.mozillazine.org/Problems_printing_web_pages Problems printing web pages]
    If the problem persists, you can consider the [https://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems Reset Firefox] feature via '''Help''' ('''Alt''' + '''H''') > '''Troubleshooting Information'''.
    (To revert to the previous profile you were using, close the new profile (i.e. exit Firefox), start Firefox and choose the '''Default User''' profile. While the [https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles Profile Manager] is open, you can also delete the newly reset profile (the one containing random numbers), or the former profile, as the case may be). If the reset is okay, it would be a good idea to delete the old profile as otherwise it would be left intact with the previous data until deleted.
    [https://support.mozilla.org/en-US/kb/Managing-profiles Managing profiles]
    [https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]

  • Must use Step Input Keyboard prior to using midi controller? When I attempt to use my midi keyboard conteoller for step input, it won't work unless I input the first note in each track via the Step Input Keyboard. This doesn't seem right...

    When I try to use my midi controller keyboard for step input, it won't work unless I input the first note in each track via the Step Input Keyboard.. What am I doing wrong?
    Logic Studio 9.1.7, OS X 10.7.5

    Hi
    Playhead in the right place?
    CCT

  • What do I need to set in order for each instance of the step type in the sequence to act individually?

    I'm not able to change parameters on one step without it changing the parameters on another instance of the step within the same sequence.  Is there something in the step type properties that I need to set to change this?
    For instance, I have created a custom step called "Battery PWR" that the user can insert into a sequence, hit the "edit" button, set a control in a GUI to 12V and hit an "Okay" button so that the post-step condition causes the power supply voltage to change.  Then, later in the sequence I want the user to be able to insert the same custom step, hit the edit button, set the control to 0V and hit an "Okay" button so that the post-step conditition causes the power supply to go to 0V.  The problem is, when the user edits one of the steps, it causes the other step to change to the same value.
    I know that this has a simple fix, just can't seem to find it.

    I answered my own question.  I was reading and writing to a file global instead of the step parameters, so I was basically overwriting my variables each time I edited the step.  I'm obviously a novice TestStand user.

  • MS word It prints one file for each section of the document

    With MS word (2004 and 2008)It prints one file for each section of the document.
    somebody can help me with that????

    Please post Office related questions on Microsoft's own forums for their Mac products:
    http://www.officeformac.com/productforums

  • I spent ages renaming and sorting my holiday photos in correct order but when uploaded to print they reverted to the original name and order? How can I stop this happening?

    I spent ages renaming and sorting my holiday photos in correct order but when uploaded to print they reverted to the original name and order? How can I stop this happening?

    When you "rename" a photo in iPhoto you're adding a Title to the shot, not renaming the file. This si quite standard metadata in photography, but it appars that it's getting lost in the upload/at Snapfish process.
    You can use the Titles as filenames if you export using the File -> Export command. It's one of the options in the export dialogue. You can upload the exported items.
    Regards
    TD

Maybe you are looking for

  • How many concurrent devices does home sharing on iTunes support?

    On my appleTV, if I'm watching something from my home iTunes library through home sharing, then on another device, like my iphone, I access the same shared library through home sharing, the appleTV immediately drops connection and cannot see the shar

  • Skype is messed up with new computer

    I recently got a new computer - a lenovo. It had skype pre packaged, I think. When I opened it up, it had this insane new-looking version of skype in it. It looked so bad to me. I could barely use it, and I couldn't even go see my old conversation fr

  • Triggers and object groups

    I created pre-insert and pre-update triggers at block level. I was only able to move them into an object group when i moved the triggers to the form level. Why is this the case, no change was made to the triggers apart from moving them a level up. Th

  • Locating photos in Finder

    I'm using iPhoto '07 and I have a question about locating the files. I want to add a couple pictures as attachments in an e-mail but I find it so difficult to locate them. I have to go into Finder, then pictures, then iPhoto library, then I have to g

  • Need SCJP study guide for java 5.0 by katherine sierra pdf

    I am planning to prepare for SCJP 5.0 , can somebody please send me pdf copy of SCJP Sun Certified Programmer for Java 5 Study Guide by katherine sierra . please mail it to me at [email protected]