Trouble with database path (DSC)

Hello,
I use DSC and LabVIEW 2009 in my application, and I created programmatically Shared variables, which have to be logged in Citadel database. For that, I create a database with Create Database VI with a specified path , and afterwards I use Configure Process Log State VI to bind values from my shared variables to the database.
The problem I have is the following: the database is created as expected in the correct path ( I have a folder created, with some .cdih , .cdin file), but after, on MAX, when I want to see trendings, i notice my database appears under Citadel 5, but nothing is inside. Actually, all my shared var are log in Default_database, the default database of DSC...Moreover, I have this event in Event Viewer (see attached image), which says
 I don't understand why i have such error...The problem is the final purpose is to create a standalone app with installer, and clients want to choose where they store their data...
thanks for your help
Antoine

Hi Antoine,
could you please post you code and your LabVIEW Version?
Kind regards
Carsten

Similar Messages

  • Trouble with clipping paths in Photoshop CS5

    Hello everyone, I am having trouble with clipping paths in Photoshop CS5. When I start a new path both path and anchor points are not visible. working on a Layer not background 0 and a Path Layer was created.I've also noticed that Photoshop started running pretty slow. All other programs are fine. Any Ideas or suggestions? Thank You

    edtGrfx wrote:
    Hello everyone, I am having trouble with clipping paths in Photoshop CS5. When I start a new path both path and anchor points are not visible. working on a Layer not background 0 and a Path Layer was created.
    What do you mean by "a Path Layer was created"?  Path are in the path palette, there is a path in shape layers and they is a path in a vector layer mask. I have never seen a reference to a path layer before this.  When a path in the path palette is selected activate it wall also be shown in the image window.  Does not matter if there is a targeted layer or not.  Control points may or may not be displayed. Using Path tool you can select and select segments and show some or all control points, Path are editable.
    View the following image in a new tab and scale to actual pixels for a clear image this site scales image poorly.

  • Trouble with database connector for FAST for Sharepoint

    I have plenty of experience with the JDBC connector for FAST ESP using Oracle, but this is the first experience I have with the same connector for FAST for Sharepoint (F4SP).  I've created the XML config exactly to specs based on the technet guides
    and configured my user accounts on the SQL Server appropriately.  I'm using SQL Server 2008 R2.
    If I try to use a Windows account, no level of access granted on the SQL Server results in a successful login.  Any attempt to use the connector is met with "Login failed for user:  domain\username".  If I try a SQL Server account, I no longer
    see a login failure, but this instead:
    PS C:\FASTSearch\bin> jdbcconnector start -f ..\etc\DTtest.xml
    Copyright (c) Microsoft Corporation.  All rights reserved.
    14:44:59,870 INFO  [JDBCConnector] Starting the connector!
    14:44:59,870 INFO  [JDBCConnector] Validating config.......
    14:45:00,136 INFO  [JDBCConnector] Testing connections to external systems
    14:45:00,198 INFO  [JDBCConnector] Checking if connections to source and target work....
    14:45:00,620 INFO  [JDBCAdapter] Opened JDBC Connection
    14:45:00,620 INFO  [JDBCConnector] Connection made to source system
    14:45:00,620 INFO  [CCTKDocumentFeeder] Publisher :Initializing: com.fastsearch.esp.cctk.publishers.CCTKDocumentFeeder
    14:45:00,620 ERROR [JDBCConnector] Failed creating publisher. Test connection failed.
    14:45:00,620 ERROR [JDBCConnector] Caused by: Unable to create status tracker.
    14:45:00,620 ERROR [JDBCConnector] Caused by: Could not connect to database. Make sure TCP/IP is enabled for SQLServer.
    14:45:00,620 ERROR [JDBCConnector] Caused by: No suitable driver found for ;integratedSecurity=true
    14:45:00,620 INFO  [JDBCConnector] Connection made to target system
    TCP/IP is certainly enabled for SQL Server -- I am connecting to it with Sharepoint 2010, not to mention a test install of Toad Freeware for SQL Server from another machine, resulting in no errors.  My connection string, username and password are all
    set up according to the technet guide, including the encrypted password set by the encryption utility run the in F4SP Powershell.  The same user who runs the connector also ran the encryption tool, so that should not be a problem either.
    I've never had this kind of trouble connecting to Oracle databases with the JDBC connector for FAST ESP.  Any suggestions?  These failures aren't exactly helpful to me.  Thanks in advance.

    I found the solution to this problem in case anyone else was still curious.
    This was caused not by JDBC settings, permissions/access on SQL Server, etc.  It was caused simply by a missing SQL Server in F4SP configuration.  When you run the F4SP config wizard, either as single-node or multi-node installations, the wizard
    might end up ignoring the value you select for SQL Server, even if you are using a deployment XML file.  When configuring as a multi-node setup, the wizard ignored both my deployment XML tag <connector-databaseconnectionstring> and the SQL Server
    setting done manually in the wizard itself.  Examing the evidence, I suspect this was caused by corrupt installation media (since the installer also failed to create some core files in /etc upon doing a reinstall).
    The bottom line is that you must see a value for SQL Server in your install_info.txt file in order for the JDBC connector to work with SQL Server, like this:
    Other services
    Log Server:             myserver.mydomain.com:13415
    SQL Server database:    jdbc:sqlserver://myserver.mydomain.com;DatabaseName=FASTSearchAdminDatabase;integratedSecurity=true
    If you see this instead, the connector will never work:
    So, the JDBC connector is certainly dependent on the main configuration of F4SP, regardless of what SQL Server is targeted in your connector's XML configuration.
    Other services
    Log Server:             myserver.mydomain.com:13415
    SQL Server database:   
    ;integratedSecurity=true
    I had no idea there was a connection between my install_info setup and the use of the JDBC connector.  But, the connection makes sense considering this was the error message from the JDBC connector:
    09:20:04,016 ERROR [JDBCConnector] Caused by: No suitable driver found for ;integratedSecurity=true

  • Trouble with database data retrieving!!!Please someone help me!!

    Hello people!!
    I'm havin g a trouble in getting the data from a bean , someone could give me a hand?
    That's the following: The Database class get a conection, a DetalhesLivro.class arraylist
    is obtained with the method getBooks, and I start my servlets apllication with contextListener
    where i staciate this class, so when i retrieving the value the browser keep too long loading
    and give me no data from the class here is piece of code :
    the context:
    package servlets;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.*;
    public final class Contexto implements ServletContextListener{
    private ServletContext context = null;
    public Database db;
    public void contextInitialized(ServletContextEvent event) {
    context = event.getServletContext();
    try {
    db = new Database();
    context.setAttribute("dados", db);
    } catch (Exception ex) {
    System.out.println("Imposs�vel a cria��o do bean:" +
    ex.getMessage());
    public void contextDestroyed(ServletContextEvent event) {
    context = event.getServletContext();
    Database lixo = (Database)context.getAttribute("dados");
    if (lixo != null)
    lixo.remove();
    and this is the class to retrieving the data :
    package servlets;
    import java.io.*;
    import java.sql.SQLException;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Resultado extends HttpServlet {
    DetalhesLivros livro;
    Database db;
    ArrayList livros;
    public void init() throws ServletException {
    db = (Database)getServletContext().getAttribute("dados");
    if (db == null){
    throw new UnavailableException("Couldn't get database.");
    public void destroy() {
    db = null;
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    /* HttpSession session = request.getSession();
    procura = (Procura)session.getAttribute("dados"); */
    response.setContentType("text/html");
    response.setBufferSize(8192);
    String valorRadio = request.getParameter("radio");
    String valorInput = request.getParameter("campo");
    try{
    livros = db.getBooks();
    }catch(Exception e){
    e.getMessage();
    PrintWriter out = response.getWriter();
    // then write the data of the response
    out.println("<html><head><title>Livraria Online!!!</title></head><body><div align=\"center\"><p><strong>"+
    "<p><font size=\"+7\">Loja de Livros</font></p>");
    Iterator iterator = livros.iterator();
    try{
    while(iterator.hasNext()){
    if(valorRadio=="titulo"){
    livro = (DetalhesLivros)iterator.next();
    if(livro.getTitulo()==valorInput){         
    out.println("<p> </p><p><strong>Nome do Livro:"+livro.titulo+
    "</strong></p><p><strong>Autor:"+livro.autor+"</strong></p><p><strong>Pre&ccedil;o:"+livro.getPreco()+"</strong>"+
    "</p><p><strong>C&oacute;digo:"+livro.getCod()+"</strong></p>");
    break;
    break;
    }catch(Exception e){
    e.getMessage();
    out.println("<p></p><br><br><br><table width=\"48%\" border=\"0\"><tr><td width=\"60%\"><a href=\"\"><strong>Pesquisar</strong>"+
    "</a></td><td width=\"40%\"><a href=\"\"><strong>Listar</strong></a></td></tr></table><strong>"+
    "</strong></div></body></html>");
    out.close();
    thanks a lot for some help!!!

    sorry!!
    package servlets;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.*;
    public final class Contexto implements ServletContextListener{
        private ServletContext context = null;
        public Database db;  
        public void contextInitialized(ServletContextEvent event) {
            context = event.getServletContext();             
            try {
                  db = new Database();
                  context.setAttribute("dados", db);
            } catch (Exception ex) {
                System.out.println("Imposs�vel a cria��o do bean:" +
                    ex.getMessage());
        public void contextDestroyed(ServletContextEvent event) {
            context = event.getServletContext();
            Database lixo = (Database)context.getAttribute("dados");
            if (lixo != null)            
                   lixo.remove();                     
    }package servlets;
    import java.io.*;
    import java.sql.SQLException;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Resultado extends HttpServlet {
    DetalhesLivros livro;
    Database db;
    ArrayList livros;
    public void init() throws ServletException {
    db = (Database)getServletContext().getAttribute("dados");
    if (db == null){
    throw new UnavailableException("Couldn't get database.");
    public void destroy() {
    db = null;
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    /* HttpSession session = request.getSession();
    procura = (Procura)session.getAttribute("dados"); */
    response.setContentType("text/html");
    response.setBufferSize(8192);
    String valorRadio = request.getParameter("radio");
    String valorInput = request.getParameter("campo");
    try{
    livros = db.getBooks();
    }catch(Exception e){
    e.getMessage();
    PrintWriter out = response.getWriter();
    // then write the data of the response
    out.println("<html><head><title>Livraria Online!!!</title></head><body><div align=\"center\"><p><strong>"+
    "<p><font size=\"+7\">Loja de Livros</font></p>");
    Iterator iterator = livros.iterator();
    try{
    while(iterator.hasNext()){
    if(valorRadio=="titulo"){
    livro = (DetalhesLivros)iterator.next();
    if(livro.getTitulo()==valorInput){         
    out.println("<p> </p><p><strong>Nome do Livro:"+livro.titulo+
    "</strong></p><p><strong>Autor:"+livro.autor+"</strong></p><p><strong>Pre&ccedil;o:"+livro.getPreco()+"</strong>"+
    "</p><p><strong>C&oacute;digo:"+livro.getCod()+"</strong></p>");
    break;
    break;
    }catch(Exception e){
    e.getMessage();
    out.println("<p></p><br><br><br><table width=\"48%\" border=\"0\"><tr><td width=\"60%\"><a href=\"\"><strong>Pesquisar</strong>"+
    "</a></td><td width=\"40%\"><a href=\"\"><strong>Listar</strong></a></td></tr></table><strong>"+
    "</strong></div></body></html>");
    out.close();
    --------------------------------------------------------------------------------------------

  • Trouble with clipping paths and expanding

    Hey y'all. Okay, so I have a Illustrator element that uses a clipping path.
    Even after I run "Expand Appearance" on it, it's not trimming the art to the bounds of the path.
    It's making for difficult to position correctly when copying into Photoshop as a Smart Vector or Shape Layer:
    And it isn't correct in After Effects either.

    What you are describing is just another example of the very common need to trim artwork (including filled, unfilled, open, and/or closed paths) without wrecking its already-applied Attributes, Appearances.
    As has been discussed many many times here, Illustrator simply does not provide that basic functionality...neither by its horribly-designed cutting tools nor through its problematic and caveat-riddled Pathfinders. Expanding a Clipping Path doesn't serve as a workaround for this long-missing functionality; nor does flattening transparency. You can't do it without resorting to the workarounds you've already tried or others that will no doubt be suggested.
    Once again:
    NONE of Illustrator's cutting tools (Knife, Scissor) can cut across artwork that includes multiple open, unfilled paths. Open unfilled paths are ignored by the Knife cut. The Scissor cannot cut across multiple paths at once.
    Illustrator's recently-added, very poorly implemented Eraser tool comes nearest to the needed functionality. It can at least cut multiple unfilled open paths without their becoming converted to unstroked, closed fills. But it unpredictably alters the shapes of remaining portions and has no means by which to accurately control a cutting shape other than rectangular.
    This is a prime example (there are others) of how Illustrator confuses and clutters the interface with multiple under-powered tools designed for similar functions, none of which measure up to a single tool properly designed for the same purposes in most other programs.
    Pathfinders are riddled with ridiculous caveats. Those which come close to providing the needed functionality are incapable of ommitting the unwanted deadwood and/or wreck strokes by outlining them.
    Illustrator needs a feature that allows any given path to be employed as either a selection marquee or a cutting path. And the cutting operation needs to act as expected regarding strokes as well as fills--as common in any other drawing program that does provide the long-missing functionality (most do; Illustator never has).
    JET

  • Trouble with database on Windows 7

    Dim WshShell As Object
    Set WshShell = CreateObject("WScript.Shell")
    WshShell.SendKeys "{Tab}"
    ===================================================
    SendKeys "{Tab}" problem Solved in Windows8.
    What i did .........keep UAC settings  to (no notification) and use above code.
    problem solved............... thanks to
    rakha india1.........Thanks  a lot.
    Can You give me a trick how vb6 project can be converted to vb.net............?
    I have an database program that tracks tickets running on windows xp. I recently made a Windows 7 machine. I know nothing about the code underneath the database, just how to use the db. I do have a decent knowledge of computers though. Whenever I open the
    database I get an error "The sendkeys action requires the ticket trakker utility addon to be loaded." I click ok an go to track a ticket and hit enter in the keyfield and I get "runtime error '70' Permission denied". Googling that error lead me to this webpage. 
    Where would I enter that code in order to test it out? 

    Hello,
    I'd ask in the
    Microsoft Access forum on Microsoft Community.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Trouble with Databases and putting data into them

    I have been working on this application for about three days and choose the tool because I thought database connectivity was super simple. Provided I didn't need to anything but get data or add data I could use the WYSIWG editor to drag and drop items to make the connections. Every single sample, book, tutorial or helpful guide I have found on the internet does the same thing.
    I can always get data from the database but when I press the submit button using their examples they all fail. Plus, most of these from the beta 2 and I have not found anything useful for FB4 (Release), PHP and MySQL.
    I can provide whatever information is need to help me understand I am hoping for answer, link to current tutorial or article full explaining how it works using the automated system or confirmation it does work use this other technology that works better.
    Anything you might have would be super thanks!
    Frank

    I have some more information that I think might be helpful. I am following the samples on lynda.com for their Flex 4 and Flash Builder 4 Essential training. Attached is the code that I created as part of the example. When I press the submit button it says in the status bar transferring data to localhost like it is stuck. When I trace createCategoryResult.token.result it shows null in the console. Then I thought why not debug. I put my breakpoint on the line that calls the createCategory method. When I viewed the variables I was able to see the form picked my up items then dropped them into the object. Further, when I debugged createCategoryResult.token = categoryService.createCategory(item); line I found that it was giving me back a lot of undefined. I am not sure where I am going wrong. Can anyone confirm if the Flex and Action Script is correct or point me where to debug and what to look for. I really appreciate any assistance available.
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      skinClass="skins.HPAppSkin"
      xmlns:views="views.*"
      xmlns:categoryservice="services.categoryservice.*"
      xmlns:forms="forms.*">
      <fx:Script>
        <![CDATA[
          import events.CategoryEvent;
          import mx.controls.Alert;
          import mx.events.FlexEvent;
          import mx.rpc.events.ResultEvent;
          import valueObjects.Category;
          protected function categoryGrid_creationCompleteHandler(event:FlexEvent):void
            getAllCategoryResult.token = categoryService.getAllCategory();
          protected function createCategory(item:Category):void
            createCategoryResult.token = categoryService.createCategory(item);
            trace(createCategoryResult.token.result);
          protected function myForm_insertHandler(event:CategoryEvent):void
            createCategory(event.category);
            trace(event.category.category);
          protected function createCategoryResult_resultHandler(event:ResultEvent):void
            myForm.category = new Category();
            currentState = "default";
            Alert.show("Your data was inserted", "Success");
        ]]>
      </fx:Script>
      <s:states>
        <s:State name="default"/>
        <s:State name="insert"/>
      </s:states>
      <fx:Declarations>
        <s:CallResponder id="getAllCategoryResult"/>
        <categoryservice:CategoryService id="categoryService"
          fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
          showBusyCursor="true"/>
        <s:CallResponder id="createCategoryResult" result="createCategoryResult_resultHandler(event)"/>
      </fx:Declarations>
      <s:Panel title="Categories" title.insert="Insert New Category">
        <views:CategoryGrid
          width="700" height="250"
          includeIn="default" id="categoryGrid" creationComplete="categoryGrid_creationCompleteHandler(event)" dataProvider="{getAllCategoryResult.lastResult}"/>
        <forms:CategoryForm2 id="myForm" includeIn="insert"
          cancel="currentState='default'" insert="myForm_insertHandler(event)"/>
        <s:controlBarContent>
          <s:Button
            label="Insert Category" click="currentState='insert'"
            includeIn="default"/>   
        </s:controlBarContent>
      </s:Panel>
    </s:Application>
    ______Form_______
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:valueObjects="valueObjects.*">
      <fx:Metadata>
        [Event(name="insert", type="events.CategoryEvent")]
        [Event(name="cancel", type="flash.events.Event")]
      </fx:Metadata>
      <fx:Script>
        <![CDATA[
          import events.CategoryEvent;
          protected function submitBtn_clickHandler(event:MouseEvent):void
            category.category = categoryTextInput.text;
            category.description = descriptionTextInput.text;
            var ev:CategoryEvent = new CategoryEvent("insert");
            ev.category = this.category;
            dispatchEvent(ev);
          protected function cancelBtn_clickHandler(event:MouseEvent):void
            dispatchEvent(new Event("cancel"));
        ]]>
      </fx:Script>
      <fx:Declarations>
        <valueObjects:Category id="category"/>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
      </fx:Declarations>
      <mx:Form defaultButton="{submitBtn}">
        <mx:FormItem label="Category">
          <s:TextInput id="categoryTextInput" text="{category.category}"/>
        </mx:FormItem>
        <mx:FormItem label="Description">
          <s:TextInput id="descriptionTextInput" text="{category.description}"/>
        </mx:FormItem>
        <mx:FormItem direction="horizontal">
        <s:Button id="submitBtn" label="Submit" click="submitBtn_clickHandler(event)"/>
         <s:Button id="cancelBtn" label="Cancel" click="cancelBtn_clickHandler(event)"/>     
        </mx:FormItem>
      </mx:Form>
    </s:Group>

  • Trouble with file paths

    Hi,
    I'm trying to read a XML file using:
    XMLDocBuilder.java
    public Document getXML(String filepath) throws SAXException, IOException, ParserConfigurationException
              File myFile = new File(filepath);          
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              dbf.setNamespaceAware(false);
              DocumentBuilder docBuilder = dbf.newDocumentBuilder();
              Document myDoc = docBuilder.parse(myFile);
              return myDoc;
         }If I run it directly from Eclipse/Tomcat, it works fine, but if I try to run it from the browser I get the exception "java.io.FileNotFoundException: C:\Documents and Settings\daugusto\content.xml (The system couldn't find the specified file)". (The file isn't there, it's on D:\MyFiles\myProject\WebContent\content.xml)
    I've tried quite some ways now and still couldn't get this to work.
    How can I get it to work from a browser?

    The class receives the filepath argument from a JSP page, after the user submits a form.
    I'm trying to load the XML Document and return it to the JSP page so I can work with it's elements. Using the <input type="file"> component?
    You don't want to retrieve the file using the java.io library.
    The server normally doesn't have access to the client file system. The only exception is when you are a developer working on your local machine where the server and the client are one and the same. That is not the general case :-).
    Intead use a library like the apache commons file upload to read the binary data of the file uploaded.
    cheers,
    evnafets

  • Trouble with Component Wizard and User Database

    Hello,
    I am a user of Circuit Design v.13.0 Power Pro Edition (Windows 8 Pro x64, intel Core i7 3GHz, 4GB memory, 500GB HDD).
    On MultiSim, I tried to create a 324-pin component via the Component WIzard, and had this component listed in the User Database.
    I failed, however, to register the symbol (ANSI Y32.2) created on the Symbol Editor, receiving an error saying something like:
    "The ANSI symbol for component ......... cannot be found or is invalid. The symbol is saved in the database. Check if the symbol is correct."
    (This is an English intepretation of the original Japanese, so may not be the exact English error message.)
    Actually, no symbol appears on the Database Manager.
    I have found that this error does not occur for pin counts equal to or fewer than 144.
    Furthermore, other 324-pin and 256-pin components created on MultiSim v.12.0 caused an error when I tried to edit these components in the User Database, with a message like:
    "A trouble occurred in reading the symbol data of component ..."
    Could anyone tell me how I can resolve these problems?
    I will greatly appreciate your help.
    Regards,
    Akira

    I have the same problem. I am using Multisim 13.0.1 (13.0.1059) with database version 13.0.c, Win7 x64
    I found that when you have a component symbol with 146 pins, it works, but when you add one more pin, you get an error saying, "The ANSI symbol for component [my component name] in family [component family name] is missing or invalid. The symbol will still be saved to the database. Check to ensure the symbol is correct.
    Multisim will not allow opening the component in the database for editing. If you try to place the component on a schematic, you get the error "There was a problem reading symbol data for component [component family name]/[my component name]

  • Trouble with Photoshop CS5.1 eps images with clipping path placed in FHMX

    Photoshop CS5 eps files, clearcut with clipping paths now show a black box instead of a transparent background when placing in Freehand MX.
    Tiff files with clipping paths work OK but look ugly and make Freehand redraw the screen all the time, thus slowing down my work.
    The eps file placed in InDesign CS5.5 is OK
    Anybody knows a work-around? I', doing most of my work in Freehand

    Photoshop CS5 eps files, clearcut with clipping paths now show a black box instead of a transparent background when placing in Freehand MX.
    Tiff files with clipping paths work OK but look ugly and make Freehand redraw the screen all the time, thus slowing down my work.
    The eps file placed in InDesign CS5.5 is OK
    Anybody knows a work-around? I', doing most of my work in Freehand

  • Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download

    Current system info:
    Windows 7 (64 bit)
    Internet Explorer 9 (using 32 bit for downloading FP)
    I upgraded to 10.3.183.7 and immediately noticed my laptop unable to display/use Flash features (facebook games, online flyers, video, etc)
    I uninstalled and installed multiple times using both Control Panel and the uninstaller provided on Adobe help page. I restarted my laptop after every install and after every uninstall. I made sure to use 32-bit IE each time.
    At first Programs (and Control Panel) showed FP as installed but now it doesn't register as installed at all - aside from the installer program telling me it is installed.
    After installing, on the Adobe 'test' page instead of the spinning F I see a box with an 'x' in the top left hand corner (like an image/graphic that won't load).
    I tried the beta FP 11 but same problem. It at least showed up on my programs list. I uninstalled it and am back to FP 10.3
    I have been on the help page trying anything I can find to get it working but no luck so far. Any advice for this issue?
    Thanks,
    Jill

    FP does appear in my Control Panel for uninstalling but does not appear in my Programs list. I downloaded Google Chrome and FP seems to work with it (though I'm not a big fan of the browser)So, it would appear to be an IE issue? If you still want the install log:=O====== M/10.2.152.26 2011-04-11+18-41-26.195 ========
    0000 00000010 "C:\SWSetup\AFlash\Setup.exe"  -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10m.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.dll
    =X====== M/10.2.152.26 2011-04-1118-41-27.490 =========O====== M/10.3.183.7 2011-09-0701-16-25.406 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0701-16-28.438 =========O====== M/10.3.183.7 2011-09-0801-30-39.351 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0801-30-39.737 =========O====== M/10.3.183.7 2011-09-0801-47-26.279 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0801-47-30.257 =========O====== M/10.3.183.7 2011-09-0802-10-04.958 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0802-10-05.672 =========O====== M/10.3.183.7 2011-09-0802-10-09.789 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0802-10-14.574 =========O====== M/10.3.183.7 2011-09-0901-14-55.652 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001039
    =X====== M/10.3.183.7 2011-09-0901-15-53.743 =========O====== M/10.3.183.7 2011-09-0901-17-38.865 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0901-17-43.904 =========O====== M/10.3.183.7 2011-09-0901-39-18.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0901-39-21.150 =========O====== M/10.3.183.7 2011-09-0901-50-41.972 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0901-50-42.376 =========O====== M/10.3.183.7 2011-09-0901-51-01.582 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0901-51-05.961 =========O====== M/10.3.183.7 2011-09-0902-17-44.951 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0902-17-50.193 =========O====== M/10.3.183.7 2011-09-0920-41-16.435 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0920-41-19.293 =========O====== M/10.3.183.7 2011-09-0920-55-06.571 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0920-55-06.966 =========O====== M/10.3.183.7 2011-09-0920-56-08.701 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0920-56-12.629 =========O====== M/10.3.183.7 2011-09-0921-08-02.144 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0921-08-02.579 =========O====== M/11.0.1.129 2011-09-0921-11-39.470 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\F393.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-11-42.519 =========O====== M/11.0.1.129 2011-09-0921-17-05.196 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\ED5C.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-17-09.205 =========O====== M/10.3.183.7 2011-09-0922-04-01.333 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-04-01.640 =========O====== M/11.0.1.129 2011-09-0922-06-14.485 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\3BB9.dir\InstallFlashPlayer.exe" -uninstall activex
    0001 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0007 00001021
    0008 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    =X====== M/11.0.1.129 2011-09-0922-06-14.921 =========O====== M/10.3.183.7 2011-09-0922-07-17.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-07-17.565 =========O====== M/10.3.183.7 2011-09-0922-22-52.408 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-22-52.746 =========O====== M/10.3.183.7 2011-09-0922-24-17.263 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-24-18.248 =========O====== M/10.3.183.7 2011-09-1012-35-47.416 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-35-47.727 =========O====== M/10.3.183.7 2011-09-1012-38-11.063 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-38-11.400 =========O====== M/10.3.183.7 2011-09-1012-49-48.987 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-49-49.311 =========O====== M/10.3.183.7 2011-09-1012-55-05.778 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001018
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00001019
    0007 00001020
    0008 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0009 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0010 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0011 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0012 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0013 00001021
    0014 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0015 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0017 00001048
    0018 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0019 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0020 00001018
    0021 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0022 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0023 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0024 00001019
    0025 00001020
    0026 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0027 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0028 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0029 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0030 00001021
    0031 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0032 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0033 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0034 00001048
    0035 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0036 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0037 00001036 Software\Opera Software/Last CommandLine 2
    0038 00001036 Software\Opera Software/Last CommandLine 2
    0039 00001036 Software\Opera Software/Plugin Path 2
    0040 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1012-55-11.581 =========O====== M/10.3.183.7 2011-09-1013-00-20.739 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-00-23.216 =========O====== M/10.3.183.7 2011-09-1013-23-41.978 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    0001 00001039
    =X====== M/10.3.183.7 2011-09-1013-23-56.159 =========O====== M/10.3.183.7 2011-09-1013-32-02.098 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1013-32-02.525 =========O====== M/10.3.183.7 2011-09-1013-32-20.324 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1013-32-23.998 =========O====== M/10.3.183.7 2011-09-1013-33-17.451 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-33-20.571 =========O====== M/10.3.183.7 2011-09-1013-38-14.133 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 00001021
    0007 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 00001018
    0011 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0012 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0013 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0014 00001019
    0015 00001020
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0017 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0018 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0019 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0020 00001021
    0021 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0022 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0023 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0024 00001048
    0025 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0026 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0027 00001036 Software\Opera Software/Last CommandLine 2
    0028 00001036 Software\Opera Software/Last CommandLine 2
    0029 00001036 Software\Opera Software/Plugin Path 2
    0030 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1013-38-23.680 =========O====== M/10.3.183.7 2011-09-1013-51-14.222 ========
    0000 00000010 "C:\Windows\Downloaded Program Files\FP_AX_CAB_INSTALLER.exe" /RegServer
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0007 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0008 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-51-23.941 =========O====== M/10.3.183.7 2011-09-1013-54-43.664 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-54-46.332 =========O====== M/10.3.183.7 2011-09-1014-01-14.234 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-01-14.695 =========O====== M/10.3.183.7 2011-09-1014-01-50.253 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-01-52.831 =========O====== M/10.3.183.7 2011-09-1014-09-42.630 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-09-43.028 =========O====== M/10.3.183.7 2011-09-1014-10-52.113 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-10-54.949 =========O====== M/10.3.183.7 2011-09-1014-21-57.215 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-22-13.173 =========O====== M/10.3.183.7 2011-09-1018-08-14.860 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1018-08-28.651 =========O====== M/10.3.183.7 2011-09-1018-18-04.868 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-10+18-18-07.420 ========
    > Date: Sun, 11 Sep 2011 07:46:49 -0600
    From: [email protected]
    To: [email protected]
    Subject: Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download
    function(){return A.apply(null,[this].concat($A(arguments)))}
    >

  • Having trouble with imports never finishing

    I am having trouble with imports that never finished. It is almost like the pictures are stuck on one image. the only way to get out of Iphoto is to force quit. The next time I open, there are a number of images that still need to be imported, but the import never finishes and seems to stop at the same image. When I go to close down I get the message that Photos are being imported to the library.
    Anyone have any suggestions.
    Thanks

    Photo:
    Welcome to the Apple Discussions. Check out your iPhoto library and make sure all photos are viewable and there. Force quitting when iPhoto is working can corrupt the database file, Library6.iPhoto. Make a backup copy of it and save in another folder.
    First make a backup copy of your iPhoto Library folder. Now download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field. Open iPhoto and see if it will work OK.
    If not, launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    Lastly use iPhoto Library Manager to rebuild the library. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It can take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 12 hours so plan ahead.
    Do you Twango?

  • Troubles with attached libraries - Forms6i

    I'm working with Forms6i (6.0.8.8.0).
    I have some troubles with attached libraries.
    I have to modify an old forms project. All server elements are on the original
    server computer (database, sources, libraries , ect..). Now I installed
    on a new client Pc forms6i and I tried to open forms modules.
    When I open modules I don't see attached library (pll and olb).
    I reattached the object library and the pl/sql library but when I close and open forms6i I can see in module structure only
    object library. No pl/sql library . I reattached pl/sql library too but i get errors like "identifier xyz must be declared" about functions and procedures defined in my pl/sql library .
    First I try to add in registry the pll library path in FORMS60_PATH then I try following suggestion :
    " just put all of your forms (*.fmx), menu (*.mmx) and PLL libraries (*.PLL or *.PLX) files into the same
    directory, then change your shortcut (icon) that you start the Oracle Forms runtime environment from so it's
    "Start in" (working directory) is set to the directory where your forms, menus and libraries are. "
    I get same errors.
    Could you help me ?
    Thanks in advance.
    Antonio

    Are your computers running the same operating system ?
    The pll file is a strange beast - although it contains portable source code, it also contains compiled code which has to be compiled on the right platform. plx files
    are entirely optional, and are only really required if you want to ship an executable without giving away the source code.

  • Trouble with dbms_java.runjava

    Hi there,
    I'm exploring java in the database (11g). Today I run in trouble with the dbms_java package. My goal ist to trigger the main method through dbms_java.runjava as shown in various book examples.
    Here is the called class:
    public class TestMe {
    public static void main(String[] args) {
    System.out.println("Hello Tester");
    Here is the caller:
    declare
    ret varchar(1000);
    begin
    dbms_java.set_output(2000);
    ret := dbms_java.RUNJAVA('-cp JSERVER_CP/RESOURCE/PRIVATE/SCOTT TestMe');
    dbms_output.put_line('return: '||ret);
    end;
    This call ends up with a ClassNotFoundException:
    ORA-29532: Java-Aufruf durch nicht abgefangene Java-Exception beendet: java.lang.ClassNotFoundException: TestMe
    ORA-06512: in "SYS.DBMS_JAVA_TEST", Zeile 2
    ORA-06512: in "SYS.DBMS_JAVA_TEST", Zeile 71
    ORA-06512: in "SYS.DBMS_JAVA", Zeile 203
    ORA-06512: in Zeile 5
    I consulted the documentation in order to add the proper path to the classpath.
    However, I was not able to spot the issue.
    What do I wrong?

    Ok. I found my own fault.
    First: after a couple of "refactoring" the classpath string did not match:
    JSERVER_CP/SHARED_DATA/PRIVATE/SCHEMA/SCOTT/ TestMe
    The keyword "SCHEMA" was missing.
    Second: A trailing slash marks the the current schema - not jar - to add to the classpath.

  • Trouble with export and import

    I am having trouble with export and import
    here is what I did...
    exp "'/ as sysdba'" PARFILE=parfile.txt
    PAFILE
    TABLES=user1.Table1
    file=Table1_1006.dmp
    LOG=Table1_1006.log
    query="where to_char(processeddate,'YYYYMMDDHHMISS') between to_char(to_timestamp('1911-01-01 00:00:00','YYYY-MM-DD HH24:MI:SS'),'YYYYMMDDHHMISS') and to_char(to_timestamp('2011-10-06 16:46:26','YYYY-MM-DD HH24:MI:SS'),'YYYYMMDDHHMISS')"here is my log from export
    set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    Current user changed to user1
    . . exporting table               Table1   16019049 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    Export terminated successfully with warnings.Then I started importing
    /database2/rdbm15> imp "'/ as sysdba'" file=Table1_1006.dmp fromuser=user1 touser=user1 tables=Table1 log=imp_Table1_1006.log
    Import: Release 10.2.0.5.0 - Production on Thu Oct 6 19:57:01 2011
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    . importing user1's objects into user1
    IMP-00015: following statement failed because the object already exists:
    "CREATE TABLE "Table1" ("APPROVALTRACEID" VARCHAR2(64), "REQUESTOR"
    "EID" VARCHAR2(9), "EID" VARCHAR2(9), "FIRSTNAME" VARCHAR2(32), "LASTNAME" V"
    "ARCHAR2(32), "MIDDLEINITIAL" VARCHAR2(8), "TIER" VARCHAR2(3), "JOBTITLE" VA"
    "RCHAR2(64), "JOBCODE" VARCHAR2(10), "EMPLOYEETYPE" VARCHAR2(2), "CONTRACTOR"
    "TYPE" VARCHAR2(2), "EMPLOYEESTATUS" VARCHAR2(2), "COSTCENTER" VARCHAR2(10),"
    " "COSTCENTERDESCRIPTION" VARCHAR2(50), "CONTRACTENDINGDATE" VARCHAR2(8), "A"
    "CCOUNTSTATUS" VARCHAR2(2), "LOGINID" VARCHAR2(70), "APPLICATIONGROUP" VARCH"
    "AR2(50), "APPLICATIONNAME" VARCHAR2(50), "APPLICATIONID" VARCHAR2(12), "LEV"
    "EL1" VARCHAR2(512), "LEVEL2" VARCHAR2(512), "LEVEL3" VARCHAR2(512), "LEVEL4"
    "" VARCHAR2(512), "LEVEL5" VARCHAR2(512), "PROFILECODE" VARCHAR2(50), "PROCE"
    "SSEDDATE" DATE, "APPROVERMANAGEREID" VARCHAR2(9), "APPROVERMANAGERDELEGATEE"
    "ID" VARCHAR2(9), "APPROVERT4MANAGEREEID" VARCHAR2(9), "APPROVERT4MANAGERDEL"
    "EGATEEID" VARCHAR2(9), "APPROVERAPPOWNEREID" VARCHAR2(9), "APPROVERAPPOWNER"
    "DELEGATEEID" VARCHAR2(9), "PERFORMEREID" VARCHAR2(9), "NATIONALID" VARCHAR2"
    "(30), "COUNTRYCODE" VARCHAR2(9), "PASSPORTID" VARCHAR2(20), "DATEOFBIRTH" V"
    "ARCHAR2(15), "CITYOFBIRTH" VARCHAR2(15), "VENDORNAME" VARCHAR2(50), "VENDOR"
    "MANAGERNAME" VARCHAR2(50), "VENDORMANAGERID" VARCHAR2(9), "VENDORADDRESS1" "
    "VARCHAR2(100), "VENDORADDRESS2" VARCHAR2(100), "VENDORSTATEPROVINCE" VARCHA"
    "R2(15), "VENDORCOUNTRYCODE" VARCHAR2(9), "VENDORZIPPOSTALCODE" VARCHAR2(9))"
    "  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 4076863488 "
    "NEXT 1048576 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)            "
    "                   LOGGING NOCOMPRESS"
    Import terminated successfully with warnings.but I did not get rows to database2
    [server1]database2
    /database2/rdbm15> sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.5.0 - Production on Thu Oct 6 19:59:17 2011
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select count(*) from user1.Table1;
      COUNT(*)
             0
    SQL> exit
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for HPUX: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - ProductionEdited by: user3636719 on Oct 6, 2011 5:23 PM

    user3636719 wrote:
    Thanks for the reply...
    Old EXP IMP doesnt have capability to append the row, since you're using 10g use datapump instead. use option TABLE_EXISTS_ACTION=APPENDso my import should be like this
    imp "'/ as sysdba'" file=Table1_1006.dmp fromuser=user1 touser=user1 tables=Table1 log=imp_Table1_1006.log TABLE_EXISTS_ACTION=APPEND
    Did you look up the command line syntax and control options for imp?
    You should make it a habit that whenever anyone - especially a stranger on the web - gives you a bit of code or references a command or init parm or any some such, the VERY FIRST thin you should ALWAYS do is look it up for yourself and see exactly where and how it is used and what it means. That is how you grow beyond having to be spoon fed every little thing and become more self-sufficient.
    If you had, you would have seen that there is no TABLE_EXISTS_ACTION option for imp and seen that it is an option for impdp. And realized that exp and imp are NOT the same thing as expdp and impdp.
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to tahiti.oracle.com.
    Drill down to your product and version.
    <b><i><u>BOOKMARK THAT LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

Maybe you are looking for

  • Generic delta problem

    Hi all, If suppose we don,t have delta facility in generic extraction on R/3 for Master Data. how can we maintain the delta for that one in BW. Thanks & Regards, Sri

  • Vendor for conditions.

    Hi Experts, on header conditions I see certain conditions like gross price, in condition details there is no field for vendor and for certain other conditions like freight vendor can be entered. How we control this? if vendor can be entered for a con

  • Need To Find All PDFs That Have Extensions Enabled

    I have many PDFs in many folders I need to search through them to find any that have extensions enabled Can anyone recommend a way to do this? Thanks Mathias

  • Song and tv show purchased on ipod touch wont sync to mac itunes

    The ipod touch generated a -50 and -3203 error in itunes during the sync process and now all purchases wouldn't play without a restore and items purchased and downloaded directly to the ipod touch are gone after a restore. The ipod touch can't be mou

  • Problem please

    hi, So I would like to know why I don't have the black feature when you write. In fact when I write something I didn't see something I tried to change the color. There's no changing it's like I can change the color but I click on the text window, it'