CHOOSE Menu Malfunction, HP 48G Always returns "0" regardless of selection

I have a choose menu with various functions that prove useful when dealing with circles. I programmed it on my HP 50g and transferred it directly to my HP 48g via ASCII Kermit. The choose menu does not appear to highlight a specific choice as it does on the HP 50g, there is no indication as to which choice is selected, and jumping to menu options via entereing their number also does not function. On the debugger, no matter if OK or Enter is selected on any option "0" is always returned, as if I had cancled out of the menu. Any help would be appreciated. Perhaps CHOOSE menus are slightly different on the HP 48G?  

Hi!, Ranothil: Can you write, the program with, global variables  << >>, what your create, in your HP50G, for comparision, if are compatible 100% with HP48G ?. I'm have HP48G+/HP49G/HP50G. I'think, what, isn't compatible. Check entries equivalences ...HP48G/HP48G+https://staff.fnwi.uva.nl/c.dominik/hpcalc/entries/hp48g/entries.pdf HP49/HP50Ghttp://www.hpcalc.org/details.php?id=3248 

Similar Messages

  • Cascading LOV always returns first row in af:query

    HI
    JDEV 11.1.1.3.0
    A strange thing is happening with my cascading LOV which is input text with LOV.
    I have a read only table with a query section. I then also bring up any of the tables rows in a popup with single record view where the row is then in an af:form for inserting and updating.
    Both the af:query and af:form have the cascaing LOV in them.
    When testing the cascading LOV in the BC Browser it works fine. When I use it in the popup in the af:form record it works fine. But in the af:query section, no matter which row I choose in the LOV, it always returns the 1st row of the LOV back to my input text component.
    Has anyone experienced this...any ideas?
    Thanks,
    Mario

    Aha...and the above log message lead me to the solution!! :-)
    The VO is based on an Oracle data dictionary view, DBA_TAB_COLUMNS. When you create the read only VO, by default it does not create any of the attributes as "key" attributes, because the oracle view has no primary key.
    Setting owner, tableName and columnName as key attributes solved this issue, now my cascading LOV works in the BC Tester, af:query component and my af:form component.
    Regards,
    Mario

  • Compare always returns false

    can anyone see why this always returns false     regardless of ObservedType??
    <cfset isNullfwdExtraWindow = false>
        <cfif arguments.trade.ObservedType eq 'C'>
            isNullfwdExtraWindow = true>
        </cfif>
        <cfif arguments.trade.ignoreBarrierStyleAndObserved>
            isNullfwdExtraWindow = true>
        </cfif>

    nikos101 wrote:
    can anyone see why this always returns false     regardless of ObservedType??
    <cfset isNullfwdExtraWindow = false>
        <cfif arguments.trade.ObservedType eq 'C'>
            isNullfwdExtraWindow = true>
        </cfif>
        <cfif arguments.trade.ignoreBarrierStyleAndObserved>
            isNullfwdExtraWindow = true>
        </cfif>
    This code misses the cfset tag. You could try something like
    <cfset isNullfwdExtraWindow = false>
    <cfif trim(arguments.trade.ObservedType) eq 'c' OR arguments.trade.ignoreBarrierStyleAndObserved>
         <cfset isNullfwdExtraWindow = true>
    </cfif>

  • HT1600 Since the latest up-date I can't see any movies.  I always returns to the main menu.  Is anyone else having this problem and how do I fix it?

    Since the latest up-date I can't see any movies.  It always returns to the main menu.  Is anyone else having this problem and how do I fix it?  We have gone 3 days without the use of renting movies.

    Welcome to the Apple Community.
    First you should try logging out of your iTunes Store account (settings > iTunes Store > accounts) and then back in again.
    If that doesn't help, try resetting the Apple TV (Settings > General > Reset > Reset all settings). You should also try restarting your router.
    If both of the above don't help, you should try a restore (Settings > General > Reset > Restore).

  • I have tried to set my homepage to a specific website. However, whenever I open a new Safari window, it always returns to the last page I was at before I closed Safari. Any ideas? I did this was Safari preferences, open new window to homepage...

    I have tried to set my homepage to a specific website. However, whenever I open a new Safari window, it always returns to the last page I was at before I closed Safari. Any ideas? I did this under Safari preferences, open new window to homepage...

    Safari is opening using the resume feature. To disable that, quit Safari using Command+Option+Q or Hold Option when choosing the menu item Safari>Quit.

  • App store search always returns to  first page

    When I search the app store I am always returned to the 1st page after viewing an app description. This is very frustrating especially if there are hundreds of pages. Is there a way to get around this?

    I don't know if you noticed the small left-hand arrow head on the left-hand side of black menu bar?  It took me ages to notice this..

  • HasEventListener and willTrigger always return true

    Hi  everybody.
    I'm trying to achieve the following result.
    I'm listing all items in a form.
    When I encounter a button I check if it has already an event listener applied to it. If not , I apply the event Listener with addEventListener.
    In this way, the next time I'll list the whole form I won't apply the event listener another time (if for example I apply the same event listener twice to a button which insert a new record in a database as result I'll have 2 records added also if the user clicked once...no good at all!!!)
    To accomplish this task I'm using the Actionscript function hasEventListener(EventType) and here comes the weird thing.
    Eveytime I invoke hasEventListener on the form's button it always returns true event if is the first time a list the form (so no event listener applied yet) , even if before to invoke hasEventListener I run removeEventListener.
    I've got the same behavior when i use willTrigger() function, it always returns true no matter when i call it.
    One possible solution could be set a global boolean property to store if Ialready listed the form and applied the event listener to it, but it would be better using hasEventListener, because I've got a class that perform this form listing , and this class is used on wide project, so if I get to fix this problem inside the class I would fix the problem in the entire project in on shot (I love oop programming!!!!)
    Has anybody already addressed this problem?
    Any advisement would be really appreciated.
    Thanks in advance for the attention.
    Best regards!!
    Luke

    Hi, flex harUI.
    Thanks very much for your reply.
    I knew that if I apply an event listener twice it should fire up only once, but this isn't what happen.
    Here's my scenario:
    -  I've got a component with the form inside it
    - Through a menu a go to the state the component is in and I call an "init" function inside the component
    - In the init function I call the Class which activate the form by applying eventlistener on the button
    - The user can navigate away from the component by click another menu item and then return to the component invoking again the form activation (and so let my application apply once again the addEventListener)
    - Here's what happen: the second,third,... time the user return to the component, when he try - for example - to add a record, the record is added two,three... times according to how many times the users "reinitialized" the component. The same things happen when the user tries to delete a record, he is prompted two,three,.... times if he's sure to delete it.....
    It's a really strange behaviour.
    I've found i worked around, by setting a global bool var "initialized" and before call the form activation i check the value of this var, but It's not a very beautiful solution, 'cause I would prefer to fix this problem inside the class, so the fix the problem in the whole project just in one shot!!! (that's why I would like to use hasEventListener() to check if the button has already an eventListener)
    Thaks anyway for the reply!
    If I've some news I'll update ya.
    Bye!

  • System.capabilities.language always returns en on OS X Leopard

    Hello everyone!
    I am having some trouble with the Flash (ActionScript 2.0) on
    an Intel MAC running OS X Leopard. It seems that no matter how i
    change the OS language (via System Preferences or at installation)
    the System.capabilies.language call always returns "en". More
    bothering is that apparently, on non-intel macs running Leopard,
    some languages are detected and shown correctly (German and
    Italian)...
    I looked al over the Internet for a hint but i could not find
    any. So ... please help... is this an OS problem, a Flash problem
    or do i need a "native french" (or any other language) Leopard
    installation disk ?
    Thanks!

    Hello,
    Here's information for Resolving Kernel Panics
    You've done a great job so far of trouble shooting...
    -did the apple hardware test
    -tested the RAM for any defects
    -recently did an ARCHIVE and INSTALL
    Before you go to the link above, have you tried checked the boot disk for errors? If not..;.
    Restart your Mac while holding down the C key, pressing the power button and inserting your restore disk all at the same time. An Installer window will open, but do not proceed with any installations. Instead, from the Menu Bar, select Utilities > Disk Utility. In the Disk Utility window click First Aid, and then click Verify. If Disk Utility reports errors, click Repair. When Disk Utility is finished, from the Menu Bar, select Utilities/Startup Disk. Select MacintoshHD 10.x.x and click Restart.
    Try disconnecting any peripherals, iPod's, mice, keyboards, cameras....
    (I know you have a MacBook, but many people use the peripherals anyway).
    Reboot and see if that makes a difference.
    Get Leopard Cache Cleaner available here:
    http://www.apple.com/downloads/macosx/systemdiskutilities/leopardcachecleaner.html
    "Leopard Cache Cleaner lets you create bootable Emergency Disks that include system repair utilities and LCC’s powerful cache cleaning functions. If disaster strikes, the power of Leopard Cache Cleaner is available at the command prompt in Single User Mode"
    If none of the above help, then go to the link above for kernel panics.
    Carolyn

  • RowAtPoint and columnAtPoint always return 0

    //in NormalGUI
         ptsinfo.addActionListener(new NTListener());
         delete.addActionListener(new NTListener());
         nTable.addMouseListener(new NTListener());
    //in NormalGUI
    public class NTListener extends MouseAdapter implements ActionListener{
         int selectRow,selectColumn;
         public void mousePressed(MouseEvent e){
              if (e.isPopupTrigger()) {
                   showPopup(e);
         public void mouseReleased(MouseEvent e){
              if (e.isPopupTrigger()) {
                   showPopup(e);
         public void showPopup(MouseEvent e){
              NormalGUI.nPop.show(e.getComponent(), e.getX(), e.getY());
              selectRow = NormalGUI.nTable.rowAtPoint(new Point(e.getX(),e.getY()));
              selectColumn = NormalGUI.nTable.columnAtPoint(new Point(e.getX(),e.getY()));
              System.out.println(new Point(e.getX(),e.getY()));     
    }the point printed has not problem but rowAtPoint and columnAtPoint.
    The popup menu shows at the right point
    I try to use e.getSource and find that it really from nTable.
    they are always return 0 instead of -1?
    Why it happens? Thanks.

    Darryl.Burke wrote:
    Doesn't happen to me. To get better help sooner, post a SSCCE that clearly demonstrates your problem.
    db
    import javax.swing.table.*;
    import javax.swing.*;
    import java.util.*;
    class NTable extends AbstractTableModel{
         static Object[] cells = {"",".mpg","&#22823;&#22618;&#24859;","&#12518;&#12513;&#12463;&#12452;",Boolean.FALSE,"2006-08-04","","M&#12473;&#12486;","00:02:34","1440x1080","323014660","","","[HDTV] &#22823;&#22618;&#24859; - [2006.08.04] - &#12518;&#12513;&#12463;&#12452; ( M&#12473;&#12486; - 17Mbps 2m34s 1440x1080).mpg","&#22823;&#22618;&#24859; - &#12518;&#12513;&#12463;&#12452; (2006.08.04 M&#12473;&#12486;) .ts",new Integer(0)};
         static Object[] cells2 = {"",".m2t","&#22823;&#22618;&#24859;","&#37329;&#39770;&#33457;&#28779;",Boolean.FALSE,"2004-08-29","BShi","BEAT MOTION","00:02:32","1440x1080","397588604","","","[HDTV-TS] &#22823;&#22618;&#24859; - [2004.08.29] - &#37329;&#39770;&#33457;&#28779; (BShi BEAT MOTION - 20Mbps 2m32s 1440x1080).m2t","&#22823;&#22618;&#24859;-&#37329;&#39770;&#33457;&#28779;[BEAT.MOTION.2004.08.29].ts",new Integer(0)};
         int noOfFile;
         static String[] col = {"no.","Suffix","Artist","Songs","Talk","Date","TV station","Program","Duration","Resolution","Filesize","ptsinfo","Date added","new name","old name","rare"};
         static ArrayList<Object[]> datas = new ArrayList<Object[]>();
         public NTable(){
                   datas.add(cells);
                   datas.add(cells2);
         public int getRowCount(){
              return datas.size();
         public int getColumnCount(){
              return col.length;
        public Object getValueAt(int r, int c){
             if(c==0){
                  return String.format("%04d", r+1);
            return getDataList(r)[c];      
         public Class getColumnClass(int c){
              if(c==11){
                   try{
                        return JButton.class;
                   }catch(Exception e){}
              return getDataList(0)[c].getClass();
         public String getColumnName(int c){
              return col[c];
         public void setValueAt(Object obj, int r, int c){
              Object[] tempArray = getDataList(r);
              tempArray[c] = obj;
              datas.set(r, tempArray);
              if(c==15){
                   NormalGUI.nTable.changeSelection(r+1, c, false, false);
         public boolean isCellEditable(int r, int c){
              if(c>0&&c<=10||c==15){
                   return true;
              }else{
                   return false;
         public static int getdatas(){
              try{
                   return datas.size();
              }catch(Exception e){
                   return 0;
         public static Object[] getDataList(int r){
              return datas.get(r);
    import java.awt.Point;
    import java.awt.event.*;
    public class NTListener extends MouseAdapter implements ActionListener{
         int selectRow,selectColumn;
         public void mousePressed(MouseEvent e){
            if (e.isPopupTrigger()) {
                 showPopup(e);
         public void mouseReleased(MouseEvent e){
            if (e.isPopupTrigger()) {
                 showPopup(e);
         public void mouseClicked(MouseEvent e){}     
         public void mouseExited(MouseEvent e){}
         public void mouseEntered(MouseEvent e){}
         public void showPopup(MouseEvent e){
              NormalGUI.nPop.show(e.getComponent(), e.getX(), e.getY());
             selectRow = NormalGUI.nTable.rowAtPoint(new Point(e.getX(),e.getY()));
             selectColumn = NormalGUI.nTable.columnAtPoint(new Point(e.getX(),e.getY()));
             System.out.println(new Point(e.getX(),e.getY()));     
         public void actionPerformed(ActionEvent e){
              if(e.getSource().equals(NormalGUI.ptsinfo)){
                    try {
                         Runtime rt = Runtime.getRuntime();               
                         Process prcs = rt.exec("C:\\WINDOWS.0\\AppPatch\\AppLoc.exe \"E:\\(A)&#31243;&#24335; (F)\\&#30475;&#22294;&#25991;&#38899;&#27138;&#39006;\\ptsInfo050\\ptsinfo.exe\" \"/L0411\"");
                         } catch(Exception ioe) { System.out.println(ioe); }
              }else if(e.getSource().equals(NormalGUI.delete)){
                   System.out.println(selectRow+"+"+selectColumn);
                   NTable.datas.remove(selectRow);
                   NormalGUI.nTable.updateUI();
    import java.awt.Font;
    import javax.swing.*;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    public class NormalGUI extends JFrame{
         static TableModel nModel;
         static JTable nTable;
         static JScrollPane nPanel;
         static JPopupMenu nPop = new JPopupMenu();
         static JMenuItem ptsinfo = new JMenuItem("Open ptsinfo");
         static JMenuItem delete = new JMenuItem("Delete this file");
         public NormalGUI(){
              setBounds(0,0,500,500);
              nModel = new NTable();
              nTable = new JTable(nModel);   
              nPanel = new JScrollPane(nTable);
              nTable.setRowHeight(20);
              int[] columnWidth={45,145,100,150,45,105,95,200,85,105,115,65,100,900,400,40};
              nTable.setFont(new Font("&#24494;&#36575;&#27491;&#40657;&#39636;", Font.BOLD, 16));
              nTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
              nTable.addMouseListener(new NTListener());
              ptsinfo.addActionListener(new NTListener());
              delete.addActionListener(new NTListener());
              nPop.add(ptsinfo);
              nPop.add(delete);
              TableColumn column;
              for (int i = 0; i<nTable.getColumnCount(); i++) {               
                   column = nTable.getColumnModel().getColumn(i);
                   column.setPreferredWidth(columnWidth);
              add(nPanel);
              setVisible(true);
         public static void main(String[] args){
              new NormalGUI();

  • Man -k always returns "nothing appropriate"

    I'm running 10.5.3 on a Macbook Pro. It is a new MacBook that originally had 10.5.2, and I upgraded from that.
    In Terminal, "man xxxx" works fine, but "man -k xxxx" always returns "nothing appropriate."
    This problem also existed when it was running 10.5.2.
    Anybody know how I can fix this?

    Welcome to Apple Discussions!!
    stugotsxxxx wrote:
    In Terminal, "man xxxx" works fine, but "man -k xxxx" always returns "nothing appropriate."
    This problem also existed when it was running 10.5.2.
    Always?
    What about choosing something that obviously should return something, like man -k error ? And try apropos error and whatis error. The first two should return the same, while the last will return a smaller selection (it only matches whole words). So you should get something like:
    macbook:~ michaelc$ apropos error | wc
    87 1037 9843
    macbook:~ michaelc$ man -k error | wc
    87 1037 9843
    macbook:~ michaelc$ whatis error |wc
    63 655 5738
    If you are getting zero output from all these, try
    sudo periodic weeklySupply your password when prompted (it is not echoed) and give it a few minutes to run. Then try those three commands again. Post back to let us know what you see.

  • Request.getParameter() always returns null

    I have a html file and am trying to retrieve the values from a formin my servlet.
    here is the html code:
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <h1><b>Add DVD</b></h1>
    </head>
    <body>
    <form action="add_dvd.do" method="POST">
    Title:<input type="text" name="title" />
    Year:<input type="text" name="year" />
    Genre: <select name='gselected'>
    <option value='Sci-Fi'>Sci-Fi</option>
    </select>
    or enter new genre:<input type="text" name='gentered' value="" />
    <input type="submit" value="Add DVD" />
    </form>
    </body>
    </html>
    and here is the servlet code:
    public class AddDVDServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    // System.out.println("in AddDVDServlet post method");
    List errorMsgs = new LinkedList();
    //retrieve form parameters
    try{
    String title = request.getParameter("title").trim();
    String year = request.getParameter("year").trim();
    *String gentered = request.getParameter("gentered");
    String gselected = request.getParameter("gselected");
    String genre="";
    if("".equals(gentered))
    genre = gselected;
    else
    genre = gentered;
    // System.out.println("parameter retrieved");
    if(!year.matches("\\d\\d\\d\\d"))
    // System.out.println("year not 4 digit long");
    errorMsgs.add("Year must be four digit long");
    if("".equals(title))
    // System.out.println("title not entered");
    errorMsgs.add("Please enter the title of the dvd");
    if("".equals(genre))
    // System.out.println("genre not valid");zdf
    errorMsgs.add("Enter genre.");
    if(! errorMsgs.isEmpty())
    //System.out.println("errors in entry ");
    request.setAttribute("errors",errorMsgs);
    // System.out.println("error attribute set in request");
    RequestDispatcher rd = request.getRequestDispatcher("error.view");
    rd.forward(request, response);
    return;
    //create DVDItem instance
    DVDItem dvd = new DVDItem(title,year,genre);
    request.setAttribute("dvdItem",dvd);
    RequestDispatcher rd = request.getRequestDispatcher("success.view");
    rd.forward(request, response);
    catch(Exception e){
    errorMsgs.add(e.getMessage());
    request.setAttribute("errors",errorMsgs);
    RequestDispatcher rd = request.getRequestDispatcher("error.view");
    rd.forward(request, response);
    e.printStackTrace();
    System.out.println("exception:"+e);
    why does getParameter always return null??? whats wrong?

    I don't know. However, I suspect that because you have a tag with the same name as 'title', its causing a name conflict. Chnage the name to something else. If it works, then that's the likely explaination.

  • My iphone 4 is stuck on the hello screen...with a white background after i tried to update it.  How do i correct this?  I have already gone to itunes and backed it up.  But after i back it up it always return to the hello screen in  different languages ?

    My iphone 4 is stuck in the setup phase with a white background.  It tells me hello in several diffrent  languages and tells me to slide to set up.  I have already backed it up on itunes several times but it always returns to the hello screen with the white back ground.  Can anyone please help me with this?  All of this happened after i updated it for the 1st time. Help pLease?
    Edward

    Hello Edward
    Follow the prompts on your iPhone and you will get either at your home screen like normal or get to a point of restoring from back up. The article below will give step by step for restoring from back up.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Global Temp Table, always return  zero records

    I call the procedure which uses glbal temp Table, after executing the Proc which populates the Global temp table, i then run select query retrieve the result, but it alway return zero record. I am using transaction in order to avoid deletion of records in global temp table.
    whereas if i do the same thing in SQL navigator, it works
    Cn.ConnectionString = Constr
    Cn.Open()
    If FGC Is Nothing Then
    Multiple = True
    'Search by desc
    'packaging.pkg_msds.processavfg(null, ActiveInActive, BrandCode, Desc, Itemtype)
    SQL = "BEGIN packaging.pkg_msds.processavfg(null,'" & _
    ActiveInActive & "','" & _
    BrandCode & "','" & _
    Desc & "','" & _
    Itemtype & "'); end;"
    'Here it will return multiple FGC
    'need to combine them
    Else
    'search by FGC
    SQL = "BEGIN packaging.pkg_msds.processavfg('" & FGC & "','" & _
    ActiveInActive & "','" & _
    BrandCode & "',null,null); end;"
    'will alway return one FGC
    End If
    ' SQL = " DECLARE BEGIN rguo.pkg_msds.processAvedaFG('" & FGC & "'); end;"
    Stepp = 1
    Cmd.Connection = Cn
    Cmd.CommandType = Data.CommandType.Text
    Cmd.CommandText = SQL
    Dim Trans As System.Data.OracleClient.OracleTransaction
    Trans = Cn.BeginTransaction()
    Cmd.Transaction = Trans
    Dim Cnt As Integer
    Cnt = Cmd.ExecuteNonQuery
    'SQL = "SELECT rguo.pkg_msds.getPDSFGMass FROM dual"
    SQL = "select * from packaging.aveda_mass_XML"
    Cmd.CommandType = Data.CommandType.Text
    Cmd.CommandText = SQL
    Adp.SelectCommand = Cmd
    Stepp = 2
    Adp.Fill(Ds)
    If Ds.Tables(0).Rows.Count = 0 Then
    blError = True
    BlComposeXml = True
    Throw New Exception("No Record found for FGC(Finished Good Code=)" & FGC)
    End If
    'First Row, First Column contains Data as XML
    Stepp = 0
    Trans.Commit()

    Hi,
    This forum is for Oracle's Data Provider and you're using Microsoft's, but I was curious so I went ahead and tried it. It works fine for me. Here's the complete code I used, could you point out what are you doing differently?
    Cheers,
    Greg
    create global temporary table abc_tab(col1 varchar2(10));
    create or replace procedure ins_abc_tab(v1 varchar2) as
    begin
    insert into abc_tab values(v1);
    end;
    using System;
    using System.Data;
    using System.Data.OracleClient;
    class Program
        static void Main(string[] args)
            OracleConnection con = new OracleConnection("data source=orcl;user id=scott;password=tiger");
            con.Open();
            OracleTransaction txn = con.BeginTransaction();
            OracleCommand cmd = new OracleCommand("begin ins_abc_tab('foo');end;", con);
            cmd.Transaction = txn;
            cmd.ExecuteNonQuery();
            cmd.CommandText = "select * from abc_tab";
            OracleDataAdapter da = new OracleDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);
            Console.WriteLine("rows found: {0}", ds.Tables[0].Rows.Count);
            // commit, cleanup, etc ommitted for clarity
    }

  • In scene selection mode, can you make iDVD return to the scene selection menu after playing that scene without continuing to play all the other scenes?

    After selecting one scene from the scene selection menu, the following scenes play automatically, as if it were in "play movie" mode. Is there a way to stop that behavior and have the DVD return to the scene selection menu after playing just the selected scene?

    OK
    So what You want is a "Play All" button resp. a "Play one Chapter at a time" one.
    Then
    BAD News - There are Non ! in iDVD
    GOOD News - it can in part be faked.
    read on
    Play all resp. one chapter at a time
    Play All Button 
    1. There are NO - Play All - button in any version of iDVD
    2. It can be faked in several ways
    • Easiest and most fault proof way is to make a doublet movie containing All and with
    Chapters set to match. It will take up x2 space but is easy to understand and produce.
    Cons: Tried this in iMovie’11 by Exporting out each part as a full Quality QT.mov then Importing back into new events and putting these into a new project (Play All project). Resulting DVD had Audio that was OK (as parts) - BUT the picture was very bad and standing photo were cut of in height. So the Play All movie has to be created from same material and exactly in the same way as the individual parts + then Chapters has to be set to match.
    • It's said that one can put all movies into a Photo/SlideShow and this will also
    give the function of a Play All button - Tested - and ONE HAS TO un-cheque - Scale pictures to TV-Safe area else it will be a black frame all around and a small picture !
    Mike Evangelist1
    You might be able to get close to what you want by using a slideshow in iDVD. (It's not widely known, but you can put videos in a slideshow.) If you set the slide duration to manual, playback will pause after each movie/slide, and you can continue with the 'next' button.
    3. Using another program to do this e.g.. Roxio Toast™ where there is a Play All button option.
    Summary
    a. Making a Play All movie with same care as the individual Part movies - gives a very Good Result
    b. Using Roxio Toast™ - also an usable way to go
    Yours Bengt W

  • Java always returns 15 minutes greater than the current time.

    Hi,
    I am using Microsoft Windows Server 2003R2,Standard X64 edition with Service Pack 2 and jdk1.6.0-03.
    Java always returns time 15 minutes greater than the current system time.
    eg:
    SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    System.out.println("Now time: "+simpleDateFormat.format(new Date()));
    System.out.println("Now time: "+new Date());The output of the program is :
    Now time: 2008-12-22 18:47:04
    Now time: Mon Dec 22 18:47:04 NPT 2008
    When my actual system time is 6:32 PM or (18:32)
    I have checked the current time with other programming languages like python and it always returns the actual date and time.
    Note: To my observation java is always utilizing a time which is 15 minutes greater than the current time even for its log.
    Thanks,
    Rajeswari (Msys)

    I think a more practical time machine would be one that actually travels back in time rather than forward (by 15 minutes). Sounds like it needs some more work.
    Anyway, I suggest changing the system time on your computer to some other value (say, 2 hours ahead), then running the program again. If its off by 2 hours and 15 minutes, its getting the time from your computer. However, if its still off by only 15 minutes (from your wristwatch's time), then its getting the time form somehere other than the computer clock.

Maybe you are looking for