Bug with use of TRn and nX editting in formatting and non advancing output

Hello.
I am using non-advancing output to print data values in columns in tables. Where a column doesn't have values
I use the TRn editor to skip over the column field. However, this doesn't work with non advancing output.
e.g., the following code doesn't work properly. The output is missing the 10 spaces between the data items.
(I tried changing TR10 to 10X and that didn't work either).
a = 1.0
b = 2.0
! Write data
write(10,'(F10.4)',advance="no") a
! Skip 10 places
write(10,'(TR10)',advance="no")
! Write data
write(10,'(F10.4)',advance="no") b
This works fine on all my other compilers, just not the one that comes with oracle studio 12.2.
Edited by: davidb on 16-Oct-2011 15:06

My original post wasn't too clear (sorry). The bug is with TR.
The following code should write the numbers 1 to 10 with four spaces separating each value. But no spaces are written.
program tst2
integer :: i
do i=1,10
write(10,'(I4)',advance='no')i
write(10,'(TR4)',advance='no')
end do
close(10)
end program tst2
In fact the file fort.10 which is produced contains
12345678910
Whereas, with gfortran, open64, ifort, nag Fortran compilers I get (there are four spaces, this forum just doesn't show them all):
1 2 3 4 5 6 7 8 9 10
Edited by: davidb on 16-Oct-2011 15:07

Similar Messages

  • IPad Air iOS8.0.2. I used the photos app to edit my photos and created a new album for them. When I transfer my photos to my PC via cable (not allowed to use cloud services by my boss) i can only transfer the unedited versions. Any tips? Thanks!

    iPad Air iOS8.0.2. I used the photos app to edit my photos and created a new album for them. When I transfer my photos to my PC via cable (not allowed to use cloud services by my boss) I cannot choose this edited album, only transfer the unedited versions. Any tips? Thanks!

    Hi Anjohi,
    Thanks for visiting Apple Support Communities.
    If you've edited photos on your iPad and only see the original version when you import them to your computer, the tips in this article may help:
    iOS: Edited photos show original photo after import or in other apps
    All the best,
    Jeremy

  • Does Adobe Story Free have a Type and template for stageplay format and if so where do I click for it. In the Type button I could only find screenplay, TV script, Two column script, AV script and other, but not for stageplay?

    Does Adobe Story Free have a Type and Template for Stageplay format and if so where do I click for it? In the Type button I could only find, Screenplay, TV script, AV script, Two column script, and other but nothing for Stageplay.

    Does Adobe Story Free have a Type and Template for Stageplay format and if so where do I click for it? In the Type button I could only find, Screenplay, TV script, AV script, Two column script, and other but nothing for Stageplay.

  • Bug with using 2 certificates on a different port on the same machine

    There seems to be an issue with using secure connection to the same web location but on a different port.
    It is slightly difficult to recreate exactly but very often when one of the connections has been negotiated and the (self-signed) certificate added to Firefox when connecting to the same URL but placing a different port in the browser I get the error...
    (Error code: sec_error_bad_signature)
    It appears to get in a muddle as to which certificate should be used for which port. They have both been downloaded and the port number appears to be available in the certificate selection process but an error occurs nonetheless.

    I belive you can, I think my friends Apple TV is connected to their internet via an Ethernet cable, and we use Airplay sometimes using our iPads that are connected to the same network via WiFi. It should work as long as they are both connected to the same network. However, I don't have an Apple TV of my own, so don't take this as a solid answer.

  • In Pages I used to be able to edit a template and "save a version" to update the template. Now i have to rename the template to save the changes. Why is this happening? what happen to "save a version"? its no longer an option under "file".

    In Pages, In the past, I was able to edit a template and "save a version" to update the template. Now i have to rename the template to save the changes. Why is this happening? what happen to "save a version"? its no longer an option under "file". And I can no longer open the actual template, when template is clicked, it automaticaly opens an "untitled" version???

    In your description you say the first document opens as the Title you gave it.
    Templates always open as Untitled so it sounds like you have saved a regular document, perhaps into your templates folder which is possible.
    Since you have already worked on it and it has been previously saved, Lion will now Save for you and Save a Version is available
    The other document does open as Untitled so sounds like a real template and as Peggy has pointed out will not have either Revert nor Save a Version until you Save it and have changed something in it.
    This is a classic example of just how Apple's supposedly "simplification" of the process, is leading to confusion of what has happened. That the conditions and resulting actions from those conditions is so convoluted says it all.
    It all reminds me of the Monty Python Life of Brian sketch with the "simplified" John Cleese instructions to the class, as to if you have a brother in an older dorm whether to hang your hat and bag on the hooks provided. The trouble is Apple does not get the joke, that it is transforming itself into a frequently self contradictory bumbling bureacracy. The price of unchallenged self appointed geniushood.
    The incoherent half baked stumbling juggernaut has reached new triumphs with its edict on enforced Sandboxing on developers when it is unable to follow even its own instructions.
    Peter

  • Bug with using DragManager in WIndowedApplication

    Ok according to this
    article
    there are three scenarios for using a combination of windows and
    drag managers but, I have a fourth scenario where I want to use a
    WindowedApplication and the Flex DragManager thus allowing me to
    further use List.calculateDropIndex which you can't use if you try
    to use the NativeDragManager because calculateDropIndex uses a
    regular event object as it's parameter.
    For the most part this works, i can drag files from the
    desktop to my app and have the index calculated properly and all
    the feed back and drag events work correctly. BUT if i try to drag
    something like a canvas thats in the flex app to the same list then
    none of the feed back works correctly meaning that ANYTHING that
    can be dragged within the app can be dragged onto the list. NOTE:
    this only seems to happen when dragging onto List based controls
    such as List or Tree.
    I've built about as simple a sample as I can and I'm hoping
    that someone else can confirm that there is a bug (even if they
    don't have an answer or workaround), i've already filed a bug
    report but this is driving me crazy as I'm stuck building my app
    until I can resolve this... it's critical that I can both drag
    items within app around and drag files from outside the app into
    the app.
    If you test this here is what SHOULD happen:
    1) Drag a file from desktop to the white list of animals and
    the yellow canvas and you should see copy cursor feed back.
    2) Drag the blue canvas over the yellow canvas and you should
    see copy cursor feedback.
    3) Drag the blue canvas over the white animal list and you
    should see copy cursor feedback.
    In step 3 what actually happens is you don't see any
    feedback.
    Thanks in advance to anyone who tries this out and confirms
    that it's bugged or not.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="508" height="183" xmlns:local="*"
    showStatusBar="false">
    <mx:Script>
    <![CDATA[
    import mx.controls.Tree;
    import mx.core.IUIComponent;
    import mx.events.DragEvent;
    import mx.core.DragSource;
    import mx.managers.DragManager;
    [Bindable] private var sampleData:XML =
    <files>
    <file label="cats"/>
    <file label="dogs"/>
    <file label="mice"/>
    <file label="birds"/>
    <file label="elephants"/>
    </files>;
    private function moveItem(event:MouseEvent):void
    DragManager.doDrag(IUIComponent(event.currentTarget), new
    DragSource(), event);
    private function dragEnter(event:DragEvent):void
    DragManager.acceptDragDrop(IUIComponent(event.target));
    private function dragOver(event:DragEvent):void
    DragManager.showFeedback(DragManager.COPY);
    ]]>
    </mx:Script>
    <mx:Canvas width="74" height="66"
    mouseMove="moveItem(event);" backgroundColor="#96A7F9" x="10"
    y="10"/>
    <mx:Canvas borderColor="#F000FF"
    backgroundColor="#F6FCB9" width="196" height="162"
    dragEnter="dragEnter(event);"
    dragOver="dragOver(event);" x="92" y="10"/>
    <mx:List id="myList" width="196" labelField="@label"
    left="296" top="10"
    dataProvider="{sampleData.file}"
    dragEnter="dragEnter(event);"
    dragOver="dragOver(event);" height="162"/>
    </mx:WindowedApplication>

    Thanks John.
    For this specific issue there's a work around by writing my own file download servlet...however could be a bug in the Oracle product. I'm checking to see if our company has the support contract but if not then I don't plan on paying to just log bugs at this point.
    Thank you,
    Kris

  • I have an imac with intel core 2 duo, I need to format and do't know how to do?

    Hi,
    I need to formate my imac, which has the processor 2.16 GHz intel core 2 duo. the operative system is mac os  version 10.4.11  withx what is the best way to do that. I have an extern hard disc and already made a back up. All I need is to formate my imac. I have never done this before and I will be greatful for some information.

    So, what are the problems requiring you to format it?
    Do you have the install disks that came with the computer? If yes, insert the disk, and hit restart while holding C on the keyboard. Once you are past the language selection, go to the Utilities in the top menu, choose Disk Utility and choose your hard drive - you can format/partition/erase it from there.
    Or, if the backup up you made is bootable, you can use it for boot with, then use Disk Utility as above.

  • Adobe Cs6 Standard Student and Teacher Edition or photoshop and illustrator seperately

    Hi guys, i have decided to use illustrator/photoshop, but would like to know if Adobe CS6 Design Standard Student and Teacher Edition has everything i need to design t-shirts? Or would i need to buy these seperately? Thanks.

    Hi thritchie,
    You can check the version of Photoshop by launching it, and selecting 'About Photoshop' from the 'Help' Menu at the top.

  • Bugs with Custom Status not getting displayed on Product Backlog and Sprint Backlog

    We added a couple of new states to the Work Item Type of Bug. We want all the bugs to show up in the Sprint Backlog items.
    In order to do this we added the custom states in Common Process Configuration file using witadmin and also in the Workflow tab of "Bug" using TFS Power Tools.
    The excerpts from the Common Configuration file for this is: 
    <BugWorkItems singularName="Bug" pluralName="Bugs" category="Microsoft.BugCategory">
       <States>
          <State value="New" type="Proposed"/>
          <State value="Open" type="Proposed"/>
          <State value="Deferred" type="Proposed"/>
          <State value="Approved" type="Proposed"/>
          <State value="Committed" type="InProgress"/>
          <State value="Ready
    For QA" type="InProgress"/>
          <State value="Devlopment
    in Progress" type="InProgress"/>
          <State value="Done" type="Complete"/>
          <State value="Closed" type="Complete"/>
          <State value="Reopen" type="Complete"/>
          <State value="Fixed" type="Complete"/>
       </States>
    </BugWorkItems>
    I assumed that this should have been sufficient to display all the Bug Work Items with these custom states.
    So, I created a new bug that had the state of "New" in the system. It was visible in the Product Backlog.
    When I changed the same work item's state from New to
    Open and save, the bug is removed from the backlog with this message.
    [Title] was removed because of your recent changes.
    The following changes removed the item:
    State was set to: Open
    Even after refreshing the page, the same work item does not appear in the product backlog page or the Sprint Backlog page.
    Any idea why this could happen?
    TSF Version : TFS 2013
    The Error I am getting on the Settings Page is :
    Page -> Control Panel > CollectionName > FabrikamFiber > FabrikamFiber Team
    Overview Tab > Settings Page
    Under BUGS sections:
    TF400917: The Current Configuration is not valid for this feature. This Feature cannot be used until you correct the configuration.

    Hi Augustya,
    I'd like to know the version of TFS you're using, and how did you customize the Common Process Configuration file for display the bugs on backlog page.
    You can add bugs or other work item types to appear in either the task board or the product backlog, but not both. I have a try and it wroks for me, you can follow the links below to add bugs to the backlog pages and check if it works.
    https://msdn.microsoft.com/en-us/library/jj920163.aspx?f=255&MSPPError=-2147217396
    http://blogs.msdn.com/b/visualstudioalm/archive/2013/02/12/add-bugs-to-the-task-board-or-backlog-pages.aspx
    Best regards,

  • Essential event viewer bugs with "Forwarded Events" log in Windows Server 2008 R2 and Windows 7

    To my general experience, Windows event viewer is one of the most problematic, faulty management tools in the case of extensive use of its more sophisticated capabilities. The sole description as well as reproduction of some entangled failures would require
    remarkable effort.
    With the "Forwarded Events" log however, the situation becomes particularly worse in that even simple functionality fails and workarounds are difficult to find. That’s what I’ll describe here in order to share my experience with interested users.
    For precision: I’ve extensively used event viewer on a German Windows Server 2008 R2 SP1 (Windows SBS 2011 Standard SP1). The bugs I found on that system, I could reproduce on a German Windows 7 Professional 64-Bit SP1, too.
    Problem 1: Failure of even simple event filtering
    To reproduce this problem, execute these steps on a test machine with any of the two OS mentioned above:
    (i) To prepare log contents, do either of the following:
    (a) populate some events to your local "Forwarded Events" log (most simply by subscribing events from other logs of the same machine; stop subscription if you have collected some events)
    Or
    (b) copy a non-empty log file "ForwardedEvents.evtx" from another machine (with any of the two OS mentioned above) to your test machine and open the file in event viewer.
    (ii) Navigate to your "Forwarded Events" test log and open the filtering dialog. In the "Includes/Excludes Event IDs" field, type: 1-9000. Click OK.
    (iii) Look at the results pane: Surprise, 0 Events! Do you really have no event IDs between 1 and 9000 in your test log?
    (iv) Another example, if you have forwarded security events in your test log: Clear filter, if any previous filter is in place. Open the filtering dialog. In "Keywords" sub-dialog, choose "Audit Success". Click OK.
    (v) Look at the results pane: Surprise, 0 Events! Do you really have no successful security monitoring events in your test log?
    I’ll finish here. If you have a rich variety of events in your test log available, let your imagination run wild to test around. Finally include some simple manually created or modified XPath filters on the XML tab of the filtering dialog. I promise, you’ll
    find a lot of additional strange results.
    Problem 2: Cannot save manually selected events to .evtx file
    Navigate to your "Forwarded Events" test log. In the results pane, select one or more events by highlighting them by mouse clicks. In context menu, choose "Save selected events". In the "save as" dialog, choose file type *.evtx
    and save your file. Open the newly created file in event viewer. Result: Surprise, no events inside the new file!
    Have more fun with forwarded events
    Helmut

    Did you mean that right click Forwarded Event and select "Filter Current Log..."? Since I can filter correct event vai the "Filter Current Log..." in my Lab environment.
    Hi Justin,
    yes, I mean "Filter Current Log ... " (in my German systems: "Aktuelles Protokoll filtern ... ").
    What do you mean with "my Lab environment" exactly?
    In the meantime, I performed additional tests. I copied the "ForwardedEvents.evtx" test file from Server 2008 R2 resp. Windows 7 to
    (i) German Windows 8 Pro 64-Bit RTM
    (ii) German Windows 8.1 Pro 64-Bit, up-to-date
    in order to view and filter the file there.
    Results: Same event viewer problem on Windows 8 RTM, but correct behavior on Windows 8.1!
    Best regards, Helmut

  • Wanting to use a 15" HDTV for editing on MBP and need to guidance.

    I searched the board and read several threads but am still confused.
    I really need a Broadcast Monitor but budget is tight. I am thinking of using a 15" Magnavox I have as my display for the Canvas for editing. It claims to be HDTV but doesnt have HDMI input, only component and a standard PC connection. How do I connect this to my MBP? And then if I can do that how do I assign the external display to only show the Canvas?
    Also I have two MBPs. Could I use one as the display for the Canvas?
    Any other suggestions welcomed.
    TIA

    Well if I dedicate the external display monitor to solely the Canvas I will have a much bigger screen for that window. Also I should get a better indication of how the final project will look on a TV monitor.

  • I I made a PDF fie to preview, but am still apprehensive to actually order the book, as I have ordered some prints of photos after I thought i had them cropped correctly and prints returned with heads, half of bodies have a book formatted and ready to buy

    I have formatted a photo book, but am apprehensive to push the "buy" button as I have ordered prints that I thought were cropped correctly, and they returned with heads cut off and half of bodies mising.  I have put the book on a PDF file as instucted, please reassure me that if everything looks right there, that is the way the book will look??

    If the PDF looks good then the printed copy should be OK.  The only problem you might run into is the color rendering.  As long as none of your photos use the sRGB profile and not the Adobe RGB color profile the color should be fine.
    On those prints that were cropped incorrectly: did you copy them to the print size ordered before uploading for printing? If not then they will be cropped by the printing equipment and you'll lose part of the top and bottom of the print (for landscape prints).
    OT

  • I bought a used iMac and I want to format and re-install the operating system however it didn't come w/operating system software.

    I bought an iMac from a client and I'm concerned that the software that is on the system is not secure. I would like to remove everything and start with factory default programs and settings. The system is about 3-4 years old and there are no original operating system software discs.
    How to I re-format the hard drive, and do I need to purchase an operating system for it?
    Thanks.

    Your best bet is to call AppleCare and order a set of original OS X Install Discs, you will need a credit card and the serial number of the computer. If you don't know what version of OS X was on the system when it originally was purchased that is the best thing to do, otherwise you're shooting in the dark. The cost is going to be in the $30-40 range I believe.
    You didn't complete your profile so we have no idea where you are located or anything about your system. You can use the following link to locate AppleCare's phone number in your country.
    http://support.apple.com/kb/HE57

  • HT2523 What is the difference between Pages and Text Edit? Pros and Cons?

    I just purchased a Macbook Pro, and I am currently exploring its features. I see that it comes with Text Edit, which seems to be its form of Microsoft Word...but I also know that you can purchase "Pages" for the computer. What is the difference? Pros and cons of each? I will be a freshman in college in the fall, so I need something that I can do lots of writing and editing on.

    TextEdit is a simple basic text editor. Far from what MS Word can do. This is Pages:
    http://www.apple.com/iwork/pages/

  • How to burn a dvd created in iMovie with OS Maverics - why is it in MP4 format and not .MOV?

    I have created a movie in iMovie, shared it and put it in a burn folder on my desktop, then tried to burn it. It seemed to work (the hard disc was spinning and computer told me when it was finished) but when i tried to play it on my Macbook Pro (which is where I created it) it won't play. It is in MP4 format. iMovie used to create movies in .Mov format. Is this the reason it won't play and what can i do about it?

    Hi
    A. making a .mp4 file then putting it onto a DVD (via Finder/DeskTop) results in a DATA-DVD - which can not be played by any (to my knowledge) Standard DVD-Player.
    But if inserted into a window-PC and using VLC-player - I GUESS that it will play just fine.
    B. To be played in a Standard DVD-Player You need to do a VIDEO-DVD and to do this You need a DVD-Authoring program (it is a MUST)
    C. Things that use to go wrong are:
    - Using cheap brands of DVD discs as Memorex, NoName etc - I only use Verbatim
    - Using DVD+/-RW - usually do not work, DVD+R usually works BUT not on older DVD-players - I only use DVD-R
    - BURN SPEED - as faster as more BURN ERRORS (WORSE) - in iDVD - Best IS NOT BEST AT ALL - I never go faster than x4 - most often I use x2
    Reg Authoring programs:
    If there is no iDVD on Your Mac (and it's not on newer Macs as Apple discarded it) then You need a program that can do this.
    Your Mac can burn CDs and DVDs - BUT DVD as Data-DVDs not as Video-DVDs - they need a program to be encoded and STRUCTURED as such.
    iDVD is part of the boxed version of iLife'11 and can only be bought outside Apple as on Amazon and e-bay
    DVD Studio pro - Part of FinalCut Studio Pro bundle - this to has expired and can only be bought second handed. (High price and tough learning Curve - but best ever done.)
    Roxio Toast™ - Not as elegant as iDVD - but has many other positive additions (I like it as 10-Pro incl BD-component) (now version 11)
    FinalCut Pro-X which also can burn to DVD but without any nice themes.
    AppleMan1958
    You can also buy Compressor from Apple for $50 US. It will also create DVD and BluRay but without the nice themes.
    Free solutions:
    Burn - a free alternative from Internet. Very simple - Just for doing a plain Video-DVD
    Burn http://www.digital-digest.com/software/Burn.html
    Gives a fairly good resulting Video-DVD
    Free DVD Creator.app - free from Apple Store
    (very simple - Quality ?? not sure - looked problematic reg. Interlacing)
    Yours Bengt W

Maybe you are looking for

  • Optional prompt in Universe level

    Hi All, I am having a date prompt in a WebI report in which some default value will get display while refreshing the report. The issue is when ever we change the browser locale this default date value is not getting change. The prompt is coming from

  • PDF Download doesn't keep an aggregate function result

    Hello, I have an interactive report that has a sum that I created using the aggregate function. When I download to a PDF, there is no sum. Does anyone have a solution? Thanks, Matt

  • FBA users in a role not able to log in.

    Hi I am in the process of doing a SP 2010 to 2013 upgrade for a number of extranet sites that use FBA. Both environments have now been configured to use the same membership services database. I have done a database attached upgrade and all looked oka

  • Disabling the field 'Bill-to party' in sales order screen

    Hi friends, I need to disable following fields in the partner functions tab of sales order ,while creating/changing a sales order,since they will be automatically populated and user should not be able to modify. 1.Bill-to party. 2.Payer. I have tried

  • How to get Desktop Software to update Automatically

    Hello Blackberry Community, I have someone trying to update there Blackberry Bold through the Desktop Manager. When he connects the device it updates nicely. However, after the update and he makes changes to his calendar, or dismisses a appointment o