No code errors but before running. Plug-in problem??

When I choose to run my app in Eclipse I choose the project I want, but immedliaty when I choose the project I get errors in the error log and I cant choose to run it.
Both problems referes to the org.eclipse.ui in the column "Plug-in"
Unhandled event loop exception
It has no exception stack trace, it just says "An exception stack trace is not available."
and
java.lang.NullPointerException
java.lang.NullPointerException
     at org.eclipse.jdt.internal.debug.ui.launcher.AbstractJavaMainTab.handleProjectButtonSelected(AbstractJavaMainTab.java:179)
     at eclipseme.ui.internal.launching.MidletTab.access$2(MidletTab.java:1)
     at eclipseme.ui.internal.launching.MidletTab$9.widgetSelected(MidletTab.java:439)
     at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90)
     at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
     at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
     at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
     at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
     at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)
     at org.eclipse.jface.window.Window.open(Window.java:796)
     at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1086)
     at org.eclipse.debug.ui.DebugUITools$1.run(DebugUITools.java:383)
     at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
     at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:387)
     at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:329)
     at org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run(OpenLaunchDialogAction.java:80)
     at org.eclipse.jface.action.Action.runWithEvent(Action.java:499)
     at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539)
     at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
     at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400)
     at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
     at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
     at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
     at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
     at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1930)
     at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
     at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:422)
     at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
     at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95)
     at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
     at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
     at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
     at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
     at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
     at java.lang.reflect.Method.invoke(Unknown Source)
     at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
     at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
     at org.eclipse.core.launcher.Main.run(Main.java:977)
     at org.eclipse.core.launcher.Main.main(Main.java:952)Message was edited by:
sandsater

it is more an eclipseme topic than j2me topic...
http://eclipseme.org/docs/troubleshooting.html#x3

Similar Messages

  • Kernel_data_inpage_error & non-system disk error but everything running OK for a while

    Hi,
    can someone please help me out since I have a deadline in coming up and need my laptop to work properly!
    I have windows 7 64bit running on a HP ProBook 6550b. My PC runs fine for about an hour, after an hour the screen freezes for 10 seconds and then I get the KERNEL_DATA_INPAGE_ERROR. He reboots and then I get the message 'Non-system disk or disk error'
    Then I just shut down my PC and start it back up and everything works perfectly fine again for about 45 minutes. Then again the same problem.
    I have tried multiple things. I executed a chkdsk /f /r  This did find some problems. I tried and followed some instructions about changing the paging file settings. I ran a memtest. No errors with the memtest.
    Finally I went in the BIOS and I did a HP harddrive test. This one failed almost immediately but I can just close the BIOS and start my PC and windows runs fine.
    What can I do to resolve this problem other then buying a new harddrive. (I intend to buy a new laptop anyways in couple of months after I have passed my deadline and test period has finished. But for short term I really needs this to work.)
    Many thanks!!
     Johan 
    This question was solved.
    View Solution.

    Just in case someone else encouters this.
    The problem was due to my SSD M4 hard drive. There was a problem with the firmware causing hourly crashes after the disk has been in use for more then +-5200 hours. Upgrading the firmware fixed this for me.

  • Code compiles but wont run

    Hi,
    My prgram was working fine until I added some database stuff to it, now it will compile but it wont run, heres my relevent code:
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.sql.*;
    public class DisplayController extends JFrame 
         public JTextField txtTime, txtInterest, txtAmount;
         public JLabel lblTotal;
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/Money?user=root&password=root";
         private Connection conn;
         private Statement stat;
         public JComboBox accountList;
         Vector vector1 = new Vector();
         ButtonHandler theButtonHandler = new ButtonHandler(txtTime, txtAmount, txtInterest, lblTotal);
       // set up GUI
       public DisplayController()
          super( "Goon Money Manager " );
          JTabbedPane tabbedPane = new JTabbedPane();
              /* sets up the transactions window and adds
                   it to the tabbedPane,this is where all the
                   transactions for all the accouns are displayed.
         try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT heading1 FROM demo");
                   while(rs.next()) vector1.add(rs.getObject(1));
              catch(SQLException sqlException)
                   System.exit(1);
              catch (ClassNotFoundException classNotFound)
                   System.exit(1);
              }

    thats exactly what I put in... what else can I do so I can see whats going on? Here's the entire code in case you need it:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.util.*;
    import java.sql.*;
    public class DisplayController extends JFrame 
         public JTextField txtTime, txtInterest, txtAmount;
         public JLabel lblTotal;
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/Money?user=root&password=root";
         private Connection conn;
         private Statement stat;
         public JComboBox accountList;
         Vector vector1 = new Vector();
         ButtonHandler theButtonHandler = new ButtonHandler(txtTime, txtAmount, txtInterest, lblTotal);
       // set up GUI
       public DisplayController()
          super( "Goon Money Manager " );
          JTabbedPane tabbedPane = new JTabbedPane();
    /* sets up the transactions window and adds
         it to the tabbedPane,this is where all the
         transactions for all the accouns are displayed.
          try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT accountName FROM Money");
                   while(rs.next()) vector1.add(rs.getObject(1));
              catch(SQLException sqlException)
                   System.exit(1);
                   sqlException.printStackTrace();
              catch (ClassNotFoundException classNotFound)
                   System.exit(1);
                   classNotFound.printStackTrace();
          JTextArea mainWindow = new JTextArea(600,300);
              accountList = new JComboBox(vector1);
              JPanel displayTabPanel = new JPanel(new FlowLayout());
              displayTabPanel.setLayout(new FlowLayout() );
              displayTabPanel.add(accountList);
              displayTabPanel.add(new JScrollPane(mainWindow));
              tabbedPane.addTab("Transactions",null,displayTabPanel,"Transaction List");
              accountList.addListSelectionListener(
              new ListSelectionListener()
                   public void valueChanged(ListSelectionEvent event)
                        try
                             ResultSet resultSet = stat.executeQuery("SELECT * FROM demo");
                             StringBuffer results = new StringBuffer();
                             ResultSetMetaData metaData = resultSet.getMetaData();
                             int numberOfColumns = metaData.getColumnCount();
                             for(int i = 1; i<=numberOfColumns; i++)
                             results.append(metaData.getColumnName(i) + "\t");
                             results.append("\n");
                             while (resultSet.next())
                                  for(int i = 1; i<= numberOfColumns; i++)
                                  results.append(resultSet.getObject(i) + "\t");
                                  results.append("\n");
                        catch(SQLException sqlException)
                             JOptionPane.showMessageDialog(null,sqlException.getMessage(),
                             "Database Error1", JOptionPane.ERROR_MESSAGE);
                             System.exit(1);
         );//end anonymous inner class
    /* sets up a savings planner to
         calculate various saving senarios
          JComboBox weekMonthYear;
              JLabel amount = new JLabel("Amount         ");
              JLabel time = new JLabel("Time               ");
              JLabel interestRate = new JLabel("Interest Rate");
              JLabel total = new JLabel("Total");
              JButton calc = new JButton("Calculate");
              JPanel top, panAmount, panTime, panTotal, panCalculate;
              JPanel panInterest = new JPanel();
              JPanel container1 = new JPanel();
              String comboNames[] = {"Weekly","Monthly","Yearly"};
              container1.setLayout(new BoxLayout(container1, BoxLayout.PAGE_AXIS));
              weekMonthYear = new JComboBox(comboNames);
              top = new JPanel();
              top.setLayout(new FlowLayout());
              top.add(weekMonthYear);
              panAmount = new JPanel();
              panAmount.setLayout(new FlowLayout());
              panAmount.add(amount);
              txtAmount = new JTextField(7);
              panAmount.add(txtAmount);
              panTime = new JPanel();
              panTime.setLayout(new FlowLayout());
              panTime.add(time);
              txtTime = new JTextField(7);
              panTime.add(txtTime);
              panInterest.setLayout(new FlowLayout());
              panInterest.add(interestRate);
              txtInterest = new JTextField(7);
              panInterest.add(txtInterest);
              panTotal = new JPanel();
              panTotal.setLayout(new FlowLayout());
              panTotal.add(total);
              lblTotal = new JLabel();
              panTotal.add(lblTotal);
              panCalculate = new JPanel();
              panCalculate.setLayout(new FlowLayout());
              panCalculate.add(calc);
              container1.add(top);
              container1.add(panAmount);
              container1.add(panTime);
              container1.add(panInterest);
              container1.add(panTotal);
              container1.add(panCalculate);
              tabbedPane.addTab("Savings Planner",null,container1,"Test Savings Senerios");
              JPanel budgetTop, budgetBottom, budgetMain;
              JList budgetList;
              JButton addBudget;
              JTextField txtAddBudget;
              budgetMain = new JPanel();
              budgetList = new JList();
              budgetList.setVisibleRowCount(10);
              budgetTop = new JPanel();
              budgetTop.setLayout(new FlowLayout());
              budgetTop.add(budgetList);
              addBudget = new JButton("Add Budgeted Item");
              txtAddBudget = new JTextField(20);
              budgetBottom = new JPanel();
              budgetBottom.setLayout(new FlowLayout());
              budgetBottom.add(addBudget);
              budgetBottom.add(txtAddBudget);
              budgetMain.setLayout(new GridLayout(2,1));
              budgetMain.add(budgetTop);
              budgetMain.add(budgetBottom);
              tabbedPane.addTab("Budget",null,budgetMain,"View and Edit your Budget");
          getContentPane().add( tabbedPane );
          setSize( 700, 400 );
          setVisible( true );
       } // end constructor
       public static void main( String args[] )
          DisplayController app = new DisplayController();
          app.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    } // end class DisplayController

  • HTML code appears corrupted - anyone run into this problem?

    Using RH8 HTML - All of my topics have unusual spacing in the html code.  This happens with a brand new project - starting right from the menu to select a new project.  As soon as the project is created I go into the first topic and look at the html code and it looks something like this:
    OK, even though it's hard to read, you can get the jist of it.  This happens with old or new projects.
    I am hoping I do not have to have our IT staff perform a uninstall/install.  Any feedback is greatly appreciate.
    Rob

    Just want to add that the usual trick of restoring the default font to Courier at 100% does not work as the dropdown is blank when Robert accesses it.
    Also this applies to any project Robert opens, including the samples.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Code error always..help needed

    Dear friends...im using my nokia e72 for the last 18 months...3 days before i reinstalled phone's FW 081.003.From that day onwards my phone is asking me lock code... And always showing lock code error...
    I already used the lock code option for restarting phone.I changed the default 12345 to 543215 and the feature is working smoothly until 3 days before..
    Now what happened is that phone is not allowing any of the codes.. I try 543215, 12345, 0000 everything I knew.But in vein...
    So guys IM totally screwed.I cannot use my phone anymore..Anybody plz help me. what I can do..???
    Help me plzz...

    i went to nokia care and solved the problem..password again changed to 12345..but its not all over there...
    When i reached home i reset my phone with *#7870# and then when my phone was on i clicked the phone lock facility... Just for checking...but then onwards the problem starts..
    Fon asked me password and i typed 12345...immediatly phone got locked and asked for PUK... I called customer care from another cell and got the code and entered it..nd evrythng got solved and the phon locking featur was turned off...
    Now what is happening is that, phone is asking me password at whatever time it wants..fon is asking me password always..when i enter 12345 , it shows pass code error, but then that window got closed and the phone is working as always...after sometime again phone is asking me password which i dont know..
    what to do?? What can i do?? Y my fon s behaving lyk dis??
    No memory card encryption...

  • Upgrade 10.1.3.4 to 10.1.3.5 before running the R12 upgrade driver.

    Hi Everyone,
    Is it OK to upgrade the 10.1.3.4 OH to 10.1.3.5 after we install the R12.1.1 file system but before running the R12.1.1 upgrade driver, so that we could complete the techstack related steps before the actual downtime to save time during the actual upgrade?
    Thanks

    965417 wrote:
    Hi Everyone,
    Is it OK to upgrade the 10.1.3.4 OH to 10.1.3.5 after we install the R12.1.1 file system but before running the R12.1.1 upgrade driver, so that we could complete the techstack related steps before the actual downtime to save time during the actual upgrade?
    ThanksYou cannot upgrade 10.1.3.x ORACLE_HOME after you lay down R12 software and before the actual upgrade since your instance should be on R12 to apply the patches in (Upgrading to the Latest OracleAS 10g 10.1.3.x Patch Set in Oracle E-Business Suite Release 12 [ID 454811.1]). So, upgrade to 12.1.1/12.1.3 then upgrade the 10.1.3 ORACLE_HOME to the latest patchset (10.1.3.5).
    Thanks,
    Hussein

  • Sun's JDBC Tutorial. Run Into a Problem

    im working through suns JDBC tutorial but ive run into a problem. when i try to run the application i get a whole lot of exceptions. heres my class for working through with the tutorial:
    package JavaPhonebook;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class JDBCTutorial{
        public static void main(String[] args){
            Connection con;
            Statement stmt;
            ResultSet srs;
            try{
                Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
                con = DriverManager.getConnection("jdbc.derby.COFFEES");
                stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
                srs = stmt.executeQuery("SELECT COF_NAME, PRICE FROM COFFEES");
                while(srs.next()){
                    String name = srs.getString("COF_NAME");
                    float price = srs.getFloat("PRICE");
                    System.out.println(name + " " + price);
            }catch(ClassNotFoundException ex){
                ex.printStackTrace();
            }catch(SQLException ex){
                ex.printStackTrace();
    }when i run it i get these exceptions:
    java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver
            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Class.java:169)
            at JavaPhonebook.JDBCTutorial.main(JDBCTutorial.java:30)Message was edited by:
    Alex1989

    Do you know what a classpath is?nope
    Well this (classpath) is the crux of your problem.
    How are you running this program? In netbeans.
    well i registered java db by going to tools ->
    options -> advanced options -> ide configuration ->
    server and external tool settings -> java db database
    and then choosing the java db location and database
    location... this seems to be something netbeansy.
    But this did not answer my question really.
    All I can tell you is that you need to have all the directories and/or jarfiles your program needs to run in your runtime classpath. Runtime as opposed to compile time. I suspect that this "registration" process of which you speak is related to your compile-time classpath but either not your runtime classpath or you are not running in Netbeans.

  • At DI R3trans fails with this error code ORA-12545, but CI runs

    Hello Gurus,
    We have our BW System on two instances with a separated oracle database server.
    Last week the system was unreachable and we must restarted it hard.
    After that, the Listener could  started and runs. The DB could started, mounted and opened successfully.
    Now we have a special problem.
    The central instance can connect at startup to the database. But the dialog instance not.
    The DI get the following error:
    |> R3trans -x
    This is R3trans version 6.14 (release 701 - 12.06.09 - 15:20:00).
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'BW2'"
    R3trans finished (0012).
    The trans.log entry are:
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12541'                        17  0.187511
    4 ETW000  [dev trc     ,00000]     set_ocica() -> SQL error code 12541                                    13  0.187524
    4 ETW000  [dev trc     ,00000]  -->oci_get_errmsg (con_hdl=0, rc=12541)                                   14  0.187538
    4 ETW000  [dev trc     ,00000]     OCIErrorGet -> SQL error code: 12541                                   14  0.187552
    4 ETW000  [dev trc     ,00000]     ORA-12541: TNS:no listener                                      
    4 ETW000                                                                                22  0.187574
    4 ETW000  [dblink      ,00433]  ***LOG BY2=>sql error 12541  performing CON [dblink#4 @ 433]           14396  0.201970
    4 ETW000  [dblink      ,00433]  ***LOG BY0=>ORA-12541: TNS:no listener [dblink#4 @ 433]                   39  0.202009
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'BW2'"
    A telnet connection test to port 1527 are also unsuccessful.
    But sporadicly the telnet or R3trans connection are successful, but the second check are unsuccessful.
    We have checked the telnet connection to another oracle database server (ERP) at port 1527 and it works.
    The CI have some entry's in ST22 with DBIF_RSQL_SQL_ERROR --> ORA-03114: not connected to ORACLE.
    Are someone known something about this issue?
    regards
    Chris

    @ Sunny Pahuja:
    We checked sapmnt.
    Sapmnt is common on CI and DI. It was never mounted on DB. But DB runs perfectly until this issue.
    @ Ankit Gupta
    We checked the configuration of listener.
    It is the same like the listener configuration of our ERP system with CI, DI and DB on separate Servers, too.
    @  Rajesh Narkhede
    From DB Server
    |> tnsping BW2
    TNS Ping Utility for IBM/AIX RISC System/6000: Version 10.2.0.2.0 - Production on 06-MAY-2010 07:40:56
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /oracle/BW2/102_64/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP)
    (HOST = bw2dba) (PORT = 1527))) (CONNECT_DATA = (SID = BW2) (GLOBAL_NAME = BW2.WORLD)))
    OK (100 msec)
    On CI and DI we don't have tnsping.
    Just copy it don't work.
    |> tnsping BW2
    TNS Ping Utility for IBM/AIX RISC System/6000: Version 10.2.0.2.0 - Production on 06-MAY-2010 08:39:17
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Message 3511 not found; No message file for product=network, facility=TNS
    Message 3512 not found; No message file for product=network, facility=TNS
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP)
    (HOST = bw2dba) (PORT = 1527))) (CONNECT_DATA = (SID = BW2) (GLOBAL_NAME = BW2.WORLD)))
    Message 3509 not found; No message file for product=network, facility=TNS
    How to get it on the CI and DI. In the SAR files at SAP it is not included. I can't found something in the Web.

  • Why do I get a "NullReferenceException was not handled by user code" error in one situation but not in the other?

    We are using Sharepoint 2010 and Infopath 2010.  In my form, I have a Managed Metadata field that I need to test for a Null value.  I found, with the help of this forum's participatns, that a [field]_Changed event for one MMD field runs multiple
    time because of the underlying XML elements (Terms, TermInfo, TermName, TermId).  So I'm trying to figure out how to test the XML to see when the TermName has a value.  By doing this, I hope to limit when the additional code in my form runs, i.e.
    I'll only trigger it when TermName is not null. 
    Just to test for null/empty (before doing anything that calls the addtional code) when I run this code, it completes correctly but always shows a message box:
    Dim strTest As String = Me.CreateNavigator.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad", Me.NamespaceManager).InnerXml
                If String.IsNullOrEmpty(strTest) Then
                Else
                    MessageBox.Show("This is the value of the States InnerXML   " & strTest)
                End If
    But when I run this code, I get a "NullReferenceException was not handled by user code.  Object reference not set to an instance of an object" at the "Dim strTest..." line:
       Dim strTest As String = Me.CreateNavigator.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad/pc:Terms/pc:TermInfo/pc:TermName", Me.NamespaceManager).InnerXml
                If String.IsNullOrEmpty(strTest) Then
                Else
                    MessageBox.Show("This is the value of the States InnerXML   " & strTest)
                End If
    Can any one explain why drilling down like this gives me this error?  And can you tell me how to get around it so I can limit how many times the code in my Infopath form needs to run?
    Thanks in advance.  Carol.

    Never mind, I think I've got it figured out.  When I do it this way, I get to the If Not...Nothing at the correct time. Thanks for sending me down the correct path, Scott. Carol.:
    Dim
    firstStr As
    String =
    String.Empty         
    Dim xNav
    As XPathNavigator = MainDataSource.CreateNavigator()
    Dim xFirst
    As XPathNavigator = xNav.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad/pc:Terms/pc:TermInfo/pc:TermName",
    Me.NamespaceManager)
    If
    Not xFirst
    Is
    Nothing
    Then               
    Dim strxFirst
    As
    String = xFirst.InnerXml
                    MessageBox.Show(
    "Value of InnerXML   " & strxFirst)
    Else
                    MessageBox.Show(
    "Empty or Null")           
    End
    If

  • I used to use SpeedBit Video Downloader with Mozilla Firefox, but suddenly a problem happened, I can not download with it now at all as there is an code error appears in the bar of SpeedBit like "XML Parsing Error: unclosed token Location: chrome://browse

    I used to use SpeedBit Video Downloader with Mozilla Firefox, but suddenly a problem happened, I can not download with it now at all as there is an code error appears in the bar of SpeedBit like "XML Parsing Error: unclosed token Location: chrome://browser/content/browser.xul Line Number 1, column 8702:....................."
    I did evrey thing, but the same problem
    reinstall SpeedBit, reinstall Mozilla Firefox.
    So what can I do!
    == This happened ==
    Every time Firefox opened
    == 4 days ago

    look people, i may have a solution for this. This happened to me a few times before and resolved alone, but last time it happened was when i turned off my router and back on while my comp was running and appeared when i tried opening firefox after that. so wat i did was i shutdown the computer and the router and tried turning both on again, and it resolved.
    Therefore, Summary: Shutdown computer then turnoff router then turn both back on
    Hope this helps anyone.

  • Running a query in a View Designer results in an error, but running the same query in a Query window works

    Hi everyone,
    Just as my title says, I have a query which I've written in a query window and it works perfectly.
    But when I try to add the query code into the view designer, it throws a Syntax error.
    Error in ON clause near '('.Unable to parse query text.
    Also, when running the query from the view designer (pressing red exclamation mark) I get a different error.
    SQL Execution Error.Executed SQL statement: SELECT Sku, ParentSku, UPC, ...Error Source: .Net SqlClient Data ProviderError Message: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    Has anyone else experienced this and is there any workaround?
    I have tried to create the view with T-SQL (CREATE VIEW etc.), but when opening it in the view designer I get the error from the 1st image.
    Thank you,
    Radu

    Hi Radu,
    Yes, I have faced similar issue. I had a View and it was working totally fine but when once I opened it in via right click - View Design, it was giving parse error.
    Cause is that Query designer parse and executes the query without error but the way View designer works, it can't parse it.
    Later I ignored View desinger and just used T-SQL like CREATE/ALTER view.
    Workaround is to do right click on View - Script View as - CREATE To/ ATER To.
    Regarding Timeout error, again the issue with View designer which couldn't execute query in there and ended up with timeout error.
    If your SELECT query and SELECT * FROM YourView works fine in Query designer, you are good to go.
    Similar threads:
    View with errors still saved, and still works...
    Parsing error when creating view
    -Vaibhav Chaudhari

  • Itunes says I must update to 11.1, but everytime I try to run it I get an error message saying:  "an error occured while running installation"  Help?

    Itunes says I must update to 11.1, but everytime I try to run it I get an error message saying:  "an error occured while running installation"  Help?

    The full message reads:  "Errors occurred during installation before iTunes could be configured.  Your system has not been modified.  To complete the installation, run the installer again.  Click finish to exit the installer."
    I have run it again and get the same message.  Have rebooted and tried again.  Same results.

  • My ipod touch 4 won't sync or register on my computer. The cord works, the usb port works, and when I plug my ipod into the wall to charge it work, but when i plug it to the computer nothing, not even charging. P.S. worked before I updated it.

    The cord works, theusb port works, and when I plug my ipod into the wall charger it works, but when I plug it into the computer, nothing, not even charging. P.S. it worked before I updated it to iOS  6.1.5

    You do have iTunes 10.7 or later on the computer, right?
    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Run this to help if it identifies the cause
    iTunes for Windows: Device Sync Tests
    Have you tried on another computer to help determine if you have a computer or iPod problem?

  • I installed Nik:s suite of plug-ins for LR5 but for some reason not all of them were installed. In the end I uninstalled all of the Nik programs from my Mac but before I reinstalled them I opened LR5 again to check. Under "photo" and "edit in" the plug-in

    I installed Nik:s suite of plug-ins for LR5 but for some reason not all of them were installed. In the end I uninstalled all of the Nik programs from my Mac but before I reinstalled them I opened LR5 again to check. Under "photo" and "edit in" the plug-ins were still presented but no programs opened, of course. after reinstalling the plug-ins one of the programs appeared twice in the list but not the others. I´m going to reinstall them again and I´m wondering if there is anyway of erasing the links to the plug-ins under "photo" and "edit in" ???

    Wow that was really quick, thank you so much.  Im not sure at all which version it was because i said it was around 4 years ago he bought it.  I know it isn't under his username, since he's a PC person (ugh) so i know its probably registered to one of our actual names.  isn't there some way to look it up since we did register it, because I'm not even sure where the disks are from when we bought it (we've moved a lot and also have two storage lockers, i know i would have kept it with other disks) but my cd rom drive is actually broken on my computer as well ( i think it got stepped on and is now squished and won't eject or run disks.)
    So is there anyway they can look up that its registered to one of our names since we did register it when we bought and installed it, or do i really have to find the disk with some sort of proof of purchase (i know there would be no receipt after all this time)
    either way, ill do what you suggested to the best of my abilities and thank you so much for answering my questions, i can't even open the program as its incompatible and find out the info from that) so I'm in a bit of a pickle and your response was so thorough and it didn't seem to be posted long enough to even write a well researched response, thanks, all the best,
    sarucia

  • Wait time in while loop: wait before all other code in the loop runs

    My vi is attached. 
    In the 'Check for Equilib' case, there is a while loop that takes data from a pressure gauge and compares it against data taken equilibTime seconds previous.  equilibTime is hooked up to a wait(ms) function inside the while loop.  Currently it appears that the code in the loop runs, and then the loop waits so many seconds before the next iteration.  I would like to reverse this process, i.e. in each iteration, the loop will wait so many seconds and then run the rest of the code in the loop.  I want to do this because I don't want there to be any delay between then time the 'check for equilib' code finishes and the start of the 'add shot' case.
    Can anybody suggest an elegant way of implementing this?
    Thank you
    Attachments:
    Take Isotherm.vi ‏294 KB

    No.  Use Flat sequences they are far preferable to stacked sequences.  Functionally they are the same.  But a flat sequence is easier to read, doesn't hide code, and you don't have to worry about backwards wiring caused by sequence locals in stacked sequence.
    Note, you have two oddities in your lower while loop.
    1.  Write a value to an indicator's terminal node and to a local variable of the same indicator is pointless.  They do the same thing.
    2.  Reading from a local variable of an indicator and writing to its terminal node is just as pointless, as you aren't doing anything.
    In your middle loop "Add shot" case, you have the local variable of DC estimate righting to a right hand side shift register, but you never use the left hand shift register.  So you are saving that value for future loop iterations, but never use it.

Maybe you are looking for

  • EPM 11.1.2 - epmsystem Configuration Manager service fails to start

    OracleEpmSystemc_oracle_middleware_user_projects_epmsystem1ConfigurationManager fails to start. I do not know how I am getting affected because everything else works fine. I have Essbase , Studio, Planning, EAS installed and all of them work fine. Do

  • Problem or recover database

    I am using Oracel 8i Version: 8.1.7.0.0. it was crash so I use following command to recvover database but error occurs alter database recover Sun May 28 13:10:54 2006 Media Recovery Start Media Recovery Log Recovery of Online Redo Log: Thread 1 Group

  • Question about folder permissions

    I have set up separate user accounts for myself (as administrator) and my wife and four kids (a total of six user accounts). After having problems in iTunes and iPhoto with messages regarding "locked disk, or no access" I created a group called "fami

  • Oracle on VMS question

    Hi, At the steel company I work at, We are starting to look at implementing a new ERP (i-Renaissance). We are seriously considering having the DB on oracle. We are thinking on having it on Windows or perhaps Unix. Some other people here are consideri

  • Alter tablespace

    hi all, what do the following means ? 1) ALTER TABLESPACE MYTABSPACE LOGGING 2) ALTER TABLESPACE MYTABSPACE NOLOGGING regards, Kong