Confusion in output

double d = 2.2;          
System.out.println( d == 2.2f );gives output as false
and
double d = 2.0;          
System.out.println( d == 2.0f );gives output as true.
Why is the first output false. isn't float converted to double before performing d==2.2f and since float is getting converted to double there shouldnt be any loss of precision. isn't it?

It gets even more confusing:
System.out.println(1.25d == 1.25f);Prints true, even 'though there are places after the decimal point.
The problem is, that those numbers you used (1.1, 1.2, ...) are not representable as binary numbers with a finite number of digits (they are repeating the same way that 1/3 is repeating in the decimal system).
Now let's assume for a moment you've got a number that looks like this in binary:
0.110 (i.e. the "110" part is repeating)If you now print 10 digits of that number it looks like this:
0.1101101101If you print 20 digits of that number it looks like this:
0.11011011011011011011That similar to how float and double work in Java (and pretty much every other language out there). Now let's assume you want to compare those two numbers. First you need to bring them to the same format, which you do by appending zeroes to the end. The result will look like this:
0.11011011010000000000 and
0.11011011011011011011Those two numbers are obviously different, so "==" will return false. The moral of the story is:
Don't use "==" comparison if you are doing any calculation and/or conversion with floating point numbers, always check for a (small) range of values instead.
(Note: I made some important simplifications and probably some erros as well, but that should describe the principles at work here).
Read What Every Computer Scientist Should Know About Floating-Point Arithmetic for a more complete and correct explanation, that's probably a bit harder to read.

Similar Messages

  • Confused about output of show vlan id command

    I  configured a few vlans on a switch. 3 vlans, each assigned only one port. The ouput of show vlan brief shows me exactly what I would expect:
    IOU1#show vlan bri
    VLAN Name                             Status    Ports
    1    default                          active    Et0/0, Et0/3, Et1/3
    101  VLAN0101                         active    Et1/0
    102  VLAN0102                         active    Et1/1
    103  VLAN0103                         active    Et1/2
    1002 fddi-default                     act/unsup
    1003 token-ring-default               act/unsup
    1004 fddinet-default                  act/unsup
    1005 trnet-default                    act/unsup
    But confusingly when I do a show vlan id for one of my vlans it lists the vlan's interface and then two other interfaces:
    IOU1#show vlan id 102
    VLAN Name                             Status    Ports
    102  VLAN0102                         active    Et0/1, Et0/2, Et1/1
    VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
    102  enet  100102     1500  -      -      -        -    -        0      0
    Primary Secondary Type              Ports
    Et0/1 and Et0/2 are trunks to two other switches. I don't get why its listing those trunk ports though I was only expecting it to show Et1/1. Is listing those ports there because this vlan is connected via trunk ports to other switches? I don't know exactly what those two interfaces there is telling me.

    I think IOU and IOL behave this way. When you say real switch, on nexus platforms in my experience they are same as what you have shown above as IOU.
    A switch like C3750, C3560, C3650, C3850 etc.... they will have regular output that you might be used to, i.e. not showing trunk interfaces in the vlan id output.
    Hope this helps.

  • Confused with output (code compiles)

    For some reason i cant get the output to display correctly....I keep checking to make sure the order of statements is correct and it appears to be but the output isnt displaying right...heres the method:
    public static void buildReport() throws IOException
            double centigradeTemp=0.00;
            String inputTemp="";
            boolean exists=(new File(CENTIGRADE_DATA_FILE)).exists();
            BufferedReader inputDataFile;
            PrintWriter outFile;
               //Open file writer to write report
            outFile=new PrintWriter(new FileWriter("TempReport.txt"));
            outFile.println("\n\t\tTEMPERATURE REPORT \n \t\t by Matt Mattson\n");
            if(exists)
                //Open centigrade temps to be read and converted
                inputDataFile=  new BufferedReader(new FileReader(CENTIGRADE_DATA_FILE));  
                outFile.println("CENTIGRADE\tFAHRENHEIT\tCOMMENTS");
                while((inputTemp= inputDataFile.readLine())!=null)
                    outFile.print(inputTemp);
                    centigradeTemp=Double.parseDouble(inputTemp);  
                    outFile.print("\t\t"+fahrenheit(centigradeTemp));
                    if(centigradeTemp<=FREEZING_POINT)
                        outFile.println("\tFREEZING");
                    else if(centigradeTemp>=BOILING_POINT)
                        outFile.println("\tBOILING");
                    else if(centigradeTemp==ROOM_TEMP)
                        outFile.println("\tROOM TEMP");
            else
                outFile.println("The temperature file: "+CENTIGRADE_DATA_FILE+" does not exist!\n\n"
                +"*****************************************************");
            outFile.close();
        its output:
    ***************FILE:TempReport.txt***************
              TEMPERATURE REPORT
               by Matt Mattson
    CENTIGRADE     FAHRENHEIT     COMMENTS
    26.7          80.0622.0                      71.6        ROOM TEMP
    32.0          89.60.0          32.0     FREEZINGcorrect output:
    ***************FILE:TempReport.txt***************
              TEMPERATURE REPORT
               by Matt Mattson
    CENTIGRADE     FAHRENHEIT     COMMENTS
    26.7          80.06
    22.0          71.6                     ROOM TEMP
    32.0          89.6
    0.0          32.0                      FREEZINmaybe i missed something?

    i got the temps to line up but why arent the comments lining up is my IF statement in the right place?
        public static void buildReport() throws IOException
            double centigradeTemp=0.00;
            String inputTemp="";
            boolean exists=(new File(CENTIGRADE_DATA_FILE)).exists();
            BufferedReader inputDataFile;
            PrintWriter outFile;
               //Open file writer to write report
            outFile=new PrintWriter(new FileWriter("TempReport.txt"));
            outFile.println("\n\t\tTEMPERATURE REPORT \n \t\t by Matt Mattson\n");
            if(exists)
                //Open centigrade temps to be read and converted
                inputDataFile=  new BufferedReader(new FileReader(CENTIGRADE_DATA_FILE));  
                outFile.println("CENTIGRADE\tFAHRENHEIT\tCOMMENTS");
                while((inputTemp= inputDataFile.readLine())!=null)
                    outFile.print(inputTemp);
                    centigradeTemp=Double.parseDouble(inputTemp);  
                    outFile.print("\t\t"+fahrenheit(centigradeTemp)+"\n");
                    if(centigradeTemp<=FREEZING_POINT)
                        outFile.print("\tFREEZING\n");
                    else if(centigradeTemp>=BOILING_POINT)
                        outFile.print("\tBOILING\n");
                    else if(centigradeTemp==ROOM_TEMP)
                        outFile.print("\tROOM TEMP\n");
            else
                outFile.println("The temperature file: "+CENTIGRADE_DATA_FILE+" does not exist!\n\n"
                +"*****************************************************");
            outFile.close();
        }OUTPUT:
    ***************FILE:TempReport.txt***************
              TEMPERATURE REPORT
               by Matt Mattson
    CENTIGRADE     FAHRENHEIT     COMMENTS
    26.7          58.7
    22.0          54.0
         ROOM TEMP
    32.0          64.0
    0.0          32.0
         FREEZINGvery close just need a lil help here

  • Confused about output

    hi all... i wrote a prgram to generate numbers for a bingo like game first it ask for user input on board size and how many times try it so that they can collect data on the average number of calls it takes for a bingo. Mr prgram runs perfect for 5 tries but anything higher like 10 t0 1000 runs... it has a barin fart and then fills ones evryeheer.
    user input
    insitate and arrar of arras
    fill it with 0's
    then i have a loop that runs the loop to generate numbers and insert them user amout specified of times.
    ihope this make sense .... as i choose larger times to run it like 1000 or even smaller like 10 .... my data gets all corrupted i am blank....

    You need to post some code...we don't know what is wrong unless you show us your mistakes.
    put them in the code blocks. They are like the following, except where you see the angular brackets (< and >) put in the square brackets ([ and ])
    <code>
    your code here
    </code>

  • Colour management or adjustment layer for broadcast output

    Hi all,
    I'm a bit confused about outputting broadcast safe colours and black and white levels. I am used to passing on my final render to a facilities house or an editor so am a bit green at this kind of thing.
    In the help files it says its better to use color management so I've set my project settings/color settings to "SDTV PAL 16-235"
    when I rendered out a few test stills and opened them in Photoshop to sample the colours, there are black levels of 0 rather than 16.
    I've resorted to adding an adjustment layer to the top of the master comp and adding Broadcast Colors filter and adding Levels effect and setting Output Black to 16 and Output White to 235.
    Is this an acceptable quick fix way of working?
    I suppose I should have a look at color finesse when I get a moment
    thanks in advance
    s

    Hi blabber,
    Can you give me more info about step 2?  I would like to repro exactly what you are seeing here at Adobe.  How are you exporting your final animation?  What format, codec, etc...  Also small sample projects with single frames etc would be very useful.
    Thanks
    David McGavran
    Engineering Manager

  • Weird output message determination in po

    dear all,
    i'm a little confuse about output message determination in PO.
    when i create a PO with me21n, i set a vendor and then verify message output determination : a message is generated.
    but then, when i modify an item and change po type, which also have an info record, the message generated previously disappear.
    the same problem appear with all po type and they all have an info record...
    thank you for helping

    Hi,
    The PO type you mean is the document type (NB and all)
    makes your message output disappear. The you have condition record maintained for that PO document type.
    Go to MN04 select your output type whatever you are getting with the first document type and select key combination, Purchasing outputdetermination : document type and enter the new document type you are using and execute
    with other details like function as VN and all as per your requirement.
    This is a master data and has to be maintained like material masters and you can decide upon the key combinations and the output trigger methods ( fax, print and all) here.
    Best regards,
    Sridhar.
    Award points for useful answers

  • PL/SQL Procedure Calling Java Host Command Problem

    This is my first post to this forum so I hope I have chosen the correct one for my problem. I have copied a java procedure to call Unix OS commands from within a PL/SQL procedure. This java works well for some OS commands (Eg ls -la) however it fails when I call others (eg env). Can anyone please give me some help or pointers?
    The java is owned by sys and it looks like this
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "ExecCmd" AS
    //ExecCmd.java
    import java.io.*;
    import java.util.*;
    //import java.util.ArrayList;
    public class ExecCmd {
    static public String[] runCommand(String cmd)
    throws IOException {
    // set up list to capture command output lines
    ArrayList list = new ArrayList();
    // start command running
    System.out.println("OS Command is: "+cmd);
    Process proc = Runtime.getRuntime().exec(cmd);
    // get command's output stream and
    // put a buffered reader input stream on it
    InputStream istr = proc.getInputStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(istr));
    // read output lines from command
    String str;
    while ((str = br.readLine()) != null)
    list.add(str);
    // wait for command to terminate
    try {
    proc.waitFor();
    catch (InterruptedException e) {
    System.err.println("process was interrupted");
    // check its exit value
    if (proc.exitValue() != 0)
    System.err.println("exit value was non-zero: "+proc.exitValue());
    // close stream
    br.close();
    // return list of strings to caller
    return (String[])list.toArray(new String[0]);
    public static void main(String args[]) throws IOException {
    try {
    // run a command
    String outlist[] = runCommand(args[0]);
    for (int i = 0; i < outlist.length; i++)
    System.out.println(outlist);
    catch (IOException e) {
    System.err.println(e);
    The PL/SQL looks like so:
    CREATE or REPLACE PROCEDURE RunExecCmd(Command IN STRING) AS
    LANGUAGE JAVA NAME 'ExecCmd.main(java.lang.String[])';
    I have granted the following permissions to a user who wishes to run the code:
    drop public synonym RunExecCmd
    create public synonym RunExecCmd for RunExecCmd
    grant execute on RunExecCmd to FRED
    grant javasyspriv to FRED;
    Execute dbms_java.grant_permission('FRED','java.io.FilePermission','/bin/env','execute');
    commit
    Execute dbms_java.grant_permission('FRED','java.io.FilePermission','/opt/oracle/live/9.0.1/dbs/*','read, write, execute');
    commit
    The following test harness has been used:
    Set Serverout On size 1000000;
    call dbms_java.set_output(1000000);
    execute RunExecCmd('/bin/ls -la');
    execute RunExecCmd('/bin/env');
    The output is as follows:
    SQL> Set Serverout On size 1000000;
    SQL> call dbms_java.set_output(1000000);
    Call completed.
    SQL> execute RunExecCmd('/bin/ls -la');
    OS Command is: /bin/ls -la
    total 16522
    drwxrwxr-x 2 ora9sys dba 1024 Oct 18 09:46 .
    drwxrwxr-x 53 ora9sys dba 1024 Aug 13 09:09 ..
    -rw-r--r-- 1 ora9sys dba 40 Sep 3 11:35 afiedt.buf
    -rw-r--r-- 1 ora9sys dba 51 Sep 3 09:52 bern1.sql
    PL/SQL procedure successfully completed.
    SQL> execute RunExecCmd('/bin/env');
    OS Command is: /bin/env
    exit value was non-zero: 127
    PL/SQL procedure successfully completed.
    Both commands do work when called from the OS command line.
    Any help or assistance would be really appreciated.
    Regards,
    Bernard.

    Kamal,
    Thanks for that. I have tried to use getErrorStream and it does give me more info. It appears that some of the commands cannot be found. I suspected that this was the case but I am not sure about how this can be as they all appear to reside in the same directory with the same permissions.
    What is more confusing is output like so:
    SQL> Set Serverout On size 1000000;
    SQL> call dbms_java.set_output(1000000);
    Call completed.
    SQL> execute RunExecCmd('/usr/bin/id');
    OS Command is: /usr/bin/id
    exit value was non-zero: 1
    id: invalid user name: ""
    PL/SQL procedure successfully completed.
    SQL> execute RunExecCmd('/usr/bin/which id');
    OS Command is: /usr/bin/which id
    /usr/bin/id
    PL/SQL procedure successfully completed.
    Regards,
    Bernard

  • Pages don't appear in HTML view

    Hello,
    I have a fairly large WebHelp project that I am trying to
    convert to HTML help. I have made HTML Help the Primary Layout for
    this project. When I generate it and preview the result, the
    frameset appears, but the actual topic pages do not - the
    following, standard error page appears:
    Action
    canceled
    Internet Explorer was unable to link to the Web page you
    requested. The page might be temporarily unavailable.
    Please try the following:
    Click the Refresh button, or try again later.
    If you have visited this page previously and you want to view
    what has been stored on your computer, click File, and then click
    Work Offline.
    For information about offline browsing with Internet
    Explorer, click the Help menu, and then click Contents and Index.
    Internet Explorer
    Why would this happen? Is there a step I am missing?
    Thanks in advance.
    Todd

    Hi again
    I think you are misunderstanding .CHM output.
    I say this because of your statement:
    Part of the attraction for HTML (CHM) for our development team
    is that only two files are involved (CHM, TOC).
    You need to undertstand that only a single file is normally
    involved that you would need to ship. Just the .CHM. Like computers
    with "Intel Inside", the .CHM has the "TOC Inside". The TOC is part
    of the .CHM file itself. I'm guessing here that perhaps you are
    confusing .CHM output with it's elder cousin, .HLP output where you
    also had the TOC external to the .HLP file. (the .CNT file)
    So yes, your problems are stemming from the fact you are
    trying to view the .CHM while it is in a network location. If your
    end users will be copying the .CHM locally (or if an installation
    application is placing them there for the user) you really have no
    concerns and all should be fine.
    Cheers... Rick

  • Strange 9i behaviour on scheduled report

    Windows 2000 server, 9ias RL 2, patches applied according Note 215882.1.
    I have a report that used to run well in 6i (9ias RL1). It is a scheduled report. It takes current (system) month and year as parameters. In the After-Report-Trigger I run the same report using srw.run_report and replace current month with previous month.
    Desformat=PDF, Destype=file, desname is generated dynamically depending on parameter value (e.g. monthly_orders_2003_10.pdf and monthly_orders_2003_09.pdf).
    In 9i, the same report only returns the pdf output for the previous month (monthly_orders_2003_09.pdf) in the specified directory, but not for the current.
    To make this more confusing: Both outputs (current month and previous month) are stored in the cache directory with randomly generated names (e.g. 41831406.pdf and 49155045.pdf).
    Any hints are deeply appreciated.
    Gerald Krieger

    Theoritically this should reproduce even without scheduling ie in a client-server non-scheduled run.
    1) Please see whether the child output is generated anywhere in REPORTS_PATH ( registry var in HKLM\software\oracle\Homex in Windows and env var in Unix ).
    2) In srw.run_report() give full path name if child report and try
    If it still does not work then it may be a bug. Please raise a TAR ( Technical Assistance Request ) with Oracle Support. If the issue is already fixed after 9.0.2.2 you can get a patch.
    Thanks
    Ratheesh
    The statements and opinions expressed here are my own and not that of my employer

  • Sound breaking up after installing Leopard

    I just installed Leopard on my G5, updated the OS to 10.5.4. But I noticed that under both 10.5.1 and 10.5.4, sound "streamed" via my browser--demo'ing cuts off eMusic for instance--break up. I'd post to the Safari topic, but I've confirmed this phenomenon is happening across browsers. Firefox does it, too. As this phenomenon did not occur under any flavors of 10.4, I figure it has to be something in the new Leopard's setup.
    Anyone else seeing this and is there any sort of tweak to fix it?
    gf

    I have a similar problem after upgrading my older iMac to 10.5.5. (YouTube videos skipping). It looks like the audio channels are confused (all output going to only one speaker, thus interfering with itself). Though it didn't happen all of the time, at first...
    Ref: http://discussions.apple.com/message.jspa?messageID=8384015#8384015
    I changed the Right/Left balance to full Right, which seems to have cleared up the interference. Though I haven't tested exhaustively.

  • Consistent RGB Color Values with Photoshop CS4: An Impossibility??

    What I want is very simple: I want the Photoshop files I am working on and the rendered PNGs in my browser to have the same color values. I don't care if my web images look the same color on other screens or anything like that. All I want is for the screenshots of PNGs my web browser to match the color values I have used in Photoshop. I've had it up to here with color shiftsthis did not used to be an issue in CS3.
    Moreover, if I save a file on my Mac, and a color value is, say, #cf4640, I want someone who opens the file on a Windows box to get the same color value for that pixel. Ditto for the images I have saved for the webI want the RGB values to be consistent. This does not seem like too much to ask, does it?
    Right now, I have turned all color management policies set to Off, working spaces are all set to Generics, and documents are set to "Don't Color Manage"my Windows colleagues also have these same settings. This used to work as expected in CS3we all got the same color values on the same files, and colors didn't shift when viewed in a browser.
    Once again, I don't care if the colors *look* the same from platform to platform or screen to screen. I just want consistent RGB values.
    Color management has never caused me anything but headachesleave my colors alone, Photoshop! I really really wish there was a "Work Like Photoshop 4" setting for color management.
    Does anyone have any ideas how I might solve my problems?
    Thanks very much.
    Oh, and, incidentally, I was originally thinking of calling Adobe about this; how foolish of me. I looked into it, and can I just say how fantastic it is that you have to pay extra money for actual first-party tech support on a $700 piece of software?

    The sounds/language analogy isn't really relevant to this problem, because it suggests transforming between two entirely different media. One medium: the medium of sound information, to another entirely different medium: the medium of thoughts and meanings. That's something that simply can't be done without an intermediate translation. That's not the case with color transforms in the RGB space, where it's just a matter of taking RGB values and pushing them through a matrix to produce other RGB values. That's the process that messes everyone up and creates all the confusing color output, and frankly it's an unnecessary process. Your assertion that the values in a source image have no meaning without an associated profile isn't entirely true. What if those source values were simply pushed directly though to the display? After all, a display simply renders 8 bits of R, 8 bits of G, and 8 bits of B for each pixel.
    I think the original poster has some very valid concerns. Sometimes we just want to set some color values, and know that everybody's display, on every platform, will render those color values the same way. As he said, they may not look identical to the eye, but the values going through that DVI cable will be setting that pixel to the same 24-bit value no matter what. That's how things would be if there were no such thing as color management. That's how things used to be long ago, and in many ways the world of color was far more predictable and less confusing back then.
    Here's my vision for a perfect world: color management doesn't exist in the RGB space. None. No such thing. Source RGB values in images get pushed right through to the display. The onus is on the display manufacturers to produce hardware that renders those values as consistently as possible. In the world of print, sure- color management is incredibly useful. But if only we could go back in time and keep color profiles out of our RGB, I believe we'd be much better off today.

  • MAXDB installation issue

    hi everyone,
    i'm trying to install MaxDB 7.8 on HP-UX 11.31 parisc.
    After unzipping the package i'm creating the sdb/sdba user and group. then I start the installation as root ./SDBSETUP and leaving all the default values and paths...the program is installing to the folder /sapdb.
    When the installation finished i logged in as the su - sdb user and starting the x_server and running the db_create to create the default DB in MaxDB but i get this error:
    create TST failed: create_demo_db.sh[58]: dbmcli:  not found.
    Then i'm setting the env variables:
    export PATH=$PATH:/sapdb/MaxDB/db/bin:/sapdb/programs:/sapdb/data
    export DEP=/sapdb/MaxDB/db
    after that i successfully create the TST database. i go to /sapdb/MaxDB/db/bin and try manually to create one
    $ dbmcli -d TEST -u dba,dba
    Error! Connection failed to node (local) for database TEST:
    database instance not found
    it seems the instance is not available or not present, although i created it in the start with the installation: MaxDB dba,dba
    does anyone know what the solution for this issue?
    thanks,
    Dzana

    hi,
    sorry i did explain it a big confusing, the output i get is
    $ dbmcli db_enum
    OK
    TST     /sapdb/MaxDB/db                         7.8.01.14       fast    running
    TST     /sapdb/MaxDB/db                         7.8.01.14       quick   offline
    TST     /sapdb/MaxDB/db                         7.8.01.14       slow    offline
    TST     /sapdb/MaxDB/db                         7.8.01.14       test    offline
    MAXDB   /sapdb/MaxDB/db                         7.8.01.14       fast    running
    MAXDB   /sapdb/MaxDB/db                         7.8.01.14       quick   offline
    MAXDB   /sapdb/MaxDB/db                         7.8.01.14       slow    offline
    MAXDB   /sapdb/MaxDB/db                         7.8.01.14       test    offline
    i have cretaed both DBs..one by installation and the second one by dbmcli - manually and then i also set the DBs online
    $ dbmcli -d MAXDB -u dba,dba db_state
    OK
    State
    ONLINE
    also i verified the installation and it is ok.
    the thing is that i'm using the MAXDB as a part of HP Data Protector integration and it cannot recognize the MAXDB instance for integration configuration. and i don't think this as DP issue :S
    any idea?
    Regards,
    dzana

  • Is it safe to charge playbook (no wifi) with phone charger?

    hi there,
    i lost my playbook charger,
    im looking to buy new but im afraid that i might choose wrong due to uncertain of power output for playbook.
    so im lil bit confuse what output for playbook charger ? and is it safe to use phone charger instead of playbook charger while the tablet is on or is better when is off?
    Solved!
    Go to Solution.

    I have the above Rapid Charging Stand and it is excellent but be aware that the PlayBook will not sit on this with a case. In that case you may wish to consider the Rapid Travel Charger available at a similar price. More bulky than the original charger but none the less a great product.
    BlackBerry is for Life not just for Christmas

  • Decode Colormanagement "Conversion Profile"

    Can any one explain how to simply select a destination profile in this box?
    View> Tools> Print Production> Convert Colors
    It is probably "Conversion Profile" but I've never seen that terminology used by Adobe and I am doubly confused by "Output Intent" option.
    What settings are recommended to Convert to a destination profile?

    using this control set of 10 PDI images (in one PDF) of five color spaces (five tagged/untagged pairs):
    gballard.net/photoshop/pdi_download/PDI_Color_Profile_Test.pdf
    i tried two of the most obvious settings -- neither one appears to work corectly (Source> Destination)
    if a true convert to profile (embed profiles) was working -- the five tagged files should be displaying properly
    what am i missing
    PS
    the object inspector is more confusing...

  • Cannot burn NTSC DVD after burning PAL DVD

    Using Adobe Premiere Elements vers.10, I created a video which I need to burn onto DVDs, in PAL format for European users and NTSC for North American recipients.  I successfully burned (to folder) in NTSC, and then in PAL.  Produced two sample DVDs from those two folders and reviewed them.  This highlighted the need for a few corrections to the project.  I carried these out, burned the revised film to folder in PAL format, and then wanted to do the same in NTSC format.  The computer appears to work on the task, but produces no folder and no files.  I am no longer able to procude a DVD in NTSC format, either by burning to a folder or burning directly on a DVD.  What is the cause of this problem ?
    Thanks in advance for any help you can provide with this issue.
    Paul

    Paul,
    I do not recall any issues, where the program gets hung up, though as a precaution, maybe clear the Media Cache in the Scratch Disks. I know that Encore (sort of the authoring "big-brother" to the authoring function in PrE) can get confused, when it has some older Media Cache files. It assumes that things have already been done, when it needs to "start over."
    Also, I would create a new, empty folder, with a unique name, and direct the Burn to Disc to THAT folder. Since all that one gets is the VIDEO_TS, AUDIO_TS (empty), and then another folder, whose name I cannot recall (Encore does not write anything but the VIDEO_TS folder and IFO, BUP and VOB files), it's easy to confuse the output. Just thinking here.
    Good luck,
    Hunt

Maybe you are looking for

  • HT204053 Link multiple devices to one account

    How do I link multiple devices to one master account for purchases with multiple usernames

  • Parsing a field in CFQUERY WHERE clause

    I have a fairly large database that I need to run queries on.  I have one field that represents where store items are stocked by aisle, section and bin. This location field is concatenated with underscore delimiters: aisle_section_bin .  An example l

  • Print Cartridge Error (Electrical Failed Pen)

    I'm using an HP Deskjet F4400 series, and I just replaced my empty black cartridge.  Prior to that, the color cartridge was around 75% full.  After installing the black cartridge, I have an error with the color cartridge, Print Cartridge Error (Elect

  • Redirect always in the same window

    Hi to all I'm using a goLink tag to redirect after pressing on a link, like this: <af:goLink text="View" destination="#{row.link}" targetFrame="_blank" id="gl1"/> But what if a want that if the user click on the link twice or on two link in the table

  • PEXR2002 BPM

    Hi I have two IDOCS pexr2002 and eupexr.........  I have to built a BPM in such a way that after I receive all PEXR2002 idocs.. i receive the eupexr for that payment run. How can the BPM be designed? REgards, Vinithra