Error with executable using ActiveX object in ver 7

I have a top-level VI (version 7 in WindowsXP) that contains an ActiveX control. This ActiveX object further calls several DLL’s, one of which controls the serial port. SubVIs in the top-level VI call this ActiveX object via Invoke Node and Property Node. Everything works in the LabVIEW development environment. The ActiveX object is registered using the “regsvr32” command and is made with Visual C++.
When I try to build an application of the top-level VI, the executable doesn’t work (giving the error “The server threw an exception.” Error -2147417851). I’ve narrowed the problem down to the ActiveX calls. I’ve tried embedding the ActiveX object and the DLL’s in the executable as support files. I’ve also tried changing the Execution property of the top-level VI from “same as caller” (default) to “standard” (no change) and “user interface” (crashes executable). The application setting “Enable ActiveX server” is checked. I still get the error. Any suggestions?

I'm not exactly sure what is going wrong, but I have some information that might help. As has been mentioned in some of the referenced posts, Windows has completely different ways of finding DLLs depending on the technology being used.
When dealing with a COM library, LabVIEW calls CoCreateInstance - a COM method provided by Microsoft to create the object. This method looks in the registery to find the absolute path to the ActiveX DLL. Thus it doesn't matter where your DLL (versus your LV application) is located.
HOWEVER - If that ActiveX DLL then uses other DLLs via a normal C interface, the rules change. If the ActiveX DLL just links normally (using a .LIB) with these dependent DLLs, then that ActiveX DLL relies on the PATH environment variable to find the DLLs (which typically includes the current directory - and is probably how Chris' app started working). The ActiveX DLL can also call LoadLibrary() directly, and thus can provide an absolute or relative path - raising all sorts of possibilities.
ACTION ITEM
Here is my suggestion. Go to www.sysinternals.com and download the File Monitor (http://www.sysinternals.com/Utilities/Filemon.html). Set the filter on the monitor to the name of the EXE (either LabVIEW.exe or your built application). Then run the app. You'll see a lot of entries, but you can then search for the various DLLs in question. Don't be surprised to see FILE_NOT_FOUND errors, you'll get that as Windows probes around the various directories trying to find the DLLs.
You can do this in both LV and your built app and see the difference in how it searches. That should give you some idea as to what is going wrong. Please feel free to post a follow-up with more questions once you've done this.
Brian Tyler
http://detritus.blogs.com/lycangeek

Similar Messages

  • Recent loss of embedded QT movies on many page for IE7 using ActiveX object

    I have many pages that allow you to select from 4 video formats including QT .mov. An example is at http://www.cwdjr.net/video4/cancanL.php . The QT object uses ActiveX when on IE only(I use Windows conditional comments) and an ordinary object for most other browsers. Until sometime very recently all of these pages worked when you select the QT file. Now QT works on none of them. I suspected the problem might be due to a very recent Windows XP update which is a large one including .NET updates and other things(K8951847) X 86. I was able to restore to a day before this update, but this did not solve the problem. Of course some portions of some updates can not be removed be restoring to an earlier time, so the result does not prove the update was not at fault.
    The involved pages are mostly written in php on the server, so you will not be able to see very much by viewing the source code. To make the problem more simple to view, I made a test page for QT only and with the ActiveX object only. Thus this test page can not be viewed on most browsers that do not support ActiveX. The test page is at http://www.cwdjr.info/broadbandMedia/formatsAX/qtmovtest2.php . Since I serve pages as valid xhtml 1.1 using the correct mime type application xhtml+xml, no IE browser can view the page, since no IE browser can support xhtml served properly. Thus I have a php include at the very top for header exchange between the browser and server. If this says the page does not support the mime type for xhtml, then php using regular expressions, etc is used to rewrite the page as html 4.01 strict for the outmoded browser. Thus don't be surprised if you find some pages in xhtml and others in html when you check properties.
    The ActiveX object used for QT on the test page is below:
    QT MOV
    (CLICK ABOVE LINK IF NO PLAYER)
    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="400" height="295" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
    <param name="autoplay" value="true" />
    <param name="controller" value="true" />
    <param name="kioskmode" value="true" />
    <param name="src" value="http://www.cwdjr.info/movie/cancan.mov" />
    </object>
    Once the page comes up on IE7, it is rather slow to respond. Then it gives:
    "Web site wants to install the following ActiveX control: 'Quick Time' from 'Apple Inc'".
    If you do try to install, nothing happens. In contrast to my regular pages, I added the code show above just before the start of the object. Clicking this on will bring up the QT video, but of course it is not embedded on the desired page. This may work as a temporary fix for IE. I likely can hide it from other browsers by enclosing it in Microsoft conditional comments.
    I would be interested if anyone else has had such a problem recently or any ideas concerning this strange response on IE7. I am talking about viewing the page on the server. Since this is a php page it can be viewed locally only if you have a server installed on your computer and I do not. The pages with the first url example given above have operated well on IE7, Firefox, Opera, Safari for Windows, Flock, K-Meleon, Google Chrome and SeaMonkey. There are a few players that have some issues with some of the formats, but this and the fact that some players may not be installed is the reason for offering the video in 4 formats. I sometimes offer high broadband versions as well as low broadband versions.
    It seems I spend more time correcting IE issues than for all of the other mentioned browsers combined.

    Thanks for the reference. I use nearly no JS anymore, since it often causes problems with true xhtml served properly even when you use external script files. Often one can use php script on the server and avoid these problems. When one serves as true xhtml using the correct mime type of application/xhtml+xml, the page is parsed with a very strict xml parser rather than a loose-as-a-goose html parser. (If one serves a page written in xhtml code as mime text/html, as is incorrectly done perhaps 99% of the time, you are using only html, not xhtml, and are fooling only yourself. The page is parsed as html instead of xhtml.) The xml parser has to be very strict to account for any possible xml content. Even a single, or even several, errors often will not prevent a html page from showing, but even a single error on an xhtml page served properly will often get an error report from the xml parser rather than a view of the page. One of the most laughable examples of misunderstanding of this issue is the home page of Microsoft. It claims to be xhtml. However it is served as text/html and thus would be better written in html 4.01 in the first place. Moreover, if you validate the page as xhtml at w3c, you find hundreds of xhtml errors. If Microsoft served their home page properly as application/xhtml+xml it of course would not work on any IE browser, at least through IE7, since none of these IE browsers can handle true xhtml. In addition the page likely would not show up on any browser if served as true xhtml until all of the hundreds of xml and other errors on the page were corrected. Instead, one likely would get a very long error report rather than a view of the page.
    Back to JS, document.write will not work in properly served xhtml, because it easily could produce code with XML errors. For instance it might produce code that contains an unclosed tag, which is a major xml error that can cause an xml device to malfunction. The xml parser thus rightly finds document.write as an error and prevents viewing of the page. However one often can generate the same code as document.write would produce on a browser with php on the server. The finished code is what gets downloaded to the browser, so the xml parser can check everything in the finished code rather than quess what a JS document.write might produce. And don't think you can sweep document.write under the rug by using an external JS file. The very strict xml parser finds it.
    Of course embed has never been a w3c tag, but rather is a bad hangover from the browser war era, a gift of Netscape. No page that includes embed can validate as w3c xhtml or xml of any flavor, at least through xhtml 1.1. However the page may work, despite the error, if server as text/html.
    All I know is that something has happened recently that has caused my problem to surface. It likely has to do with some change in the XP OS or IE browser. I have tried viewing several pages written by others that use many types of code for .mov, and all of them I have viewed that use an ActiveX embed for the benefit of IE now have the problem I mentioned. If anyone else with XP and nearly all updates, including the very recent one I mentioned, and the most recent version of QT has had this problem, I could be more confident that the problem comes from an external source. If not, it is still possible the sudden change could be something concerning a specific issue that has developed in my computer.
    Again, thanks for the JS reference. Some of this likely can translate into php so I can compare how the JS and php server script I am using relate.

  • Getting "Connect Timedout or auth error" when usging UltraVNC ActiveX object in LV 2010

    Hi all,
     I am trying to use a VNC viewer activeX object (from: UltraVNC ActiveX Viewer) in Labview to start a remote desktop / VNC session. The example supplied along with the control is a HTML page with javascript invoking the object.
     Initially, I tried using the object by directly inserting it into an ActiveX container, but it never worked. So, I altered the design and inserted a WebBrowser object in the ActiveX container and used the Navigate2 method to open the local .htm file (that contains the exact same code as shown in example, but with altered Server address to match my local condition). Yet, even this method fails. As soon as the control passes to the Browser:Navigate2 method, I get an error stating  "Connect method failed as it timed out or authentication failure". Just to make sure there is no error with the html file itself, I opened the file in Internet Explorer and it works without issues, after first allowing the ActiveX to run (throws up a banner on top of the page saying "it is unsafe to run the activeX" (IE's security measure).
    Did anyone use this before? I just want the VNC Viewer functionality in Labview, so any alternate suggestions are welcome too.
    Regards,
    Sri Ved

    Tested the solution, but did not work. Attached is the screen shot of the error, if it helps. Also, I ensured all the variables under ActiveX and Scripting are set to "Enable" in IE Security Settings (listed below) in both the Internet and Intranet categories. Is there something obvious that I am missing?
    Regards,
    Sri
    Enabled:
      Allow previously unused ActiveX controls to run without prompt
      Allow Scriptlets
      Automatic prompting for ActiveX controls
      Binary and script behavior
      Display video and animation on a webpage that does not use external media player
      Download signed ActiveX controls (not secure)
      Download unsigned ActiveX controls
      Initialize and script ActiveX contrtols not marked as safe for scripting
      Only allow approved domains to use ActiveX without prompt
      Run ActiveX controls and plug-ins
      Script ActiveX controls marked safe for scripting*
      Scripting:
      Allow programmatic clipboard access
      Allow status bar updates via script
     Allow websites to prompt for information using scripted windows
     Enable XSS Filter
     Scripting of java applets
    Attachments:
    ActiveX_VNC_Error.jpg ‏134 KB

  • Add Graph using ActiveX object

    Hello all.
    I need add a Graph in form SBO using ActiveX, but not found a classid for a graph. I try use a classid MSChar.MSChar but dont work.
    oItem = Form.Items.Add("Graph", SAPbouiCOM.BoFormItemTypes.it_ACTIVE_X);
    AcXTree = ((SAPbouiCOM.ActiveX)(oItem.Specific));
    AcXTree.ClassID = "'MSChart20Lib.MSChart";
    oChart = (MSChart20Lib.MSChart)AcXTree.Object;
    Help me, please.

    Hello Neftali.
    I try to use a MSChar but dont work. I find another way using a OWC11 (Office Web)
                oItem = oForm.Items.Add("GrapData", SAPbouiCOM.BoFormItemTypes.it_ACTIVE_X);
                oItem.Left = 370;
                oItem.Top = 230;
                oItem.Width = 400;
                oItem.Height = 170;
                oActiveX = ((SAPbouiCOM.ActiveX)(oItem.Specific));
                oActiveX.ClassID = "OWC11.ChartSpace";
                oChartSpace = (ChartSpace)(oActiveX.Object);
                oChartSpace.ChartLayout = ChartChartLayoutEnum.chChartLayoutHorizontal;
                oChart = oChartSpace.Charts.Add(0);
                oChart.HasTitle = false ;
                oChart.Type = ChartChartTypeEnum.chChartTypeColumnClustered;
                oChart.Axes[0].HasTitle = false ;
                oChart.Axes[0].Scaling.Maximum = 10;
                oChart.Axes[0].Scaling.Minimum = 0;
                oChart.Axes[1].HasTitle = false ;
                oChart.Axes[1].Scaling.Maximum = 10;
                oChart.Axes[1].Scaling.Minimum = 0;
                string strSeriesName = "My Series";
                string strCategory = "1,2,3,4,5";
                string strValue = "3,8,2,8,4";
                ChSeries series = oChart.SeriesCollection.Add(0);
                //Nome da Série
                oChart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimSeriesNames, (int)ChartSpecialDataSourcesEnum.chDataLiteral, strSeriesName);
                //Categoria
                oChart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimCategories, (int)ChartSpecialDataSourcesEnum.chDataLiteral, strCategory);
                //Valores
                oChart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimValues, (int)ChartSpecialDataSourcesEnum.chDataLiteral, strValue);
                series.Line.set_Weight(LineWeightEnum.owcLineWeightHairline );
                series.Marker.Style = ChartMarkerStyleEnum.chMarkerStyleNone;
    Thanks Neftali for help me

  • Underlying Error with Execute

    BACKGROUND: We are in the middle of load testing an application we have developed using dbxml on the backend. The current test subjects the database to repeated queries (in large batches). This is an integrated java application.
    PROBLEM: There appears to be a random crash in the system. We have successfully run the load test for a period of 8 hours, 14, hours, 24 hours, and 48 hours, however sometimes during these tests the JVM will crash with the following error. This appears to be random, as it is not located to a single instance of a fetched object (as we are constantly fetching the same set of objects over and over again - just for stress testing).
    POSSIBLE CAUSES: The only common symptom in this trace is the call to XmlQuerryExpression.execute - memory usage appears to be consistent, no additional programs are running on the test environment, all other indications of anomalous behavior are negative. The garbage collector was monitored to determine weather this had any effect on the segmentation fault, however, none of the crash-scenarios were anyway related with GC operation (since this is a constant query load test, the memory levels off after a while, as do the threads and the GC remains dormant during the remainder of the testing - despite this, the crash still occurs).
    Replacing the execute function with a simple query (slows down performance) but also prevents the crash from occurring - successfully tested the system using query under multiple conditions without any indication of failure or crashing.
    TECHNICAL DUMP:
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xb1344da8, pid=10333, tid=2889173904
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode, sharing linux-x86)
    # Problematic frame:
    # C [libxqilla.so.4+0x23ada8] m_apm_copy+0x28
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0c6f8800): JavaThread "pool-2-thread-71" [_thread_in_native, id=10472, stack(0xac304000,0xac355000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000005d
    Registers:
    EAX=0xaa50b840, EBX=0xb14b688c, ECX=0xaa50b840, EDX=0x0ab404c8
    ESP=0xac352820, EBP=0xac352848, ESI=0x00000004, EDI=0x00000051
    EIP=0xb1344da8, CR2=0x0000005d, EFLAGS=0x00210203
    Top of Stack: (sp=0xac352820)
    0xac352820: b13440ac b14b688c ac352878 b13444bf
    0xac352830: 0000000a 00707ff4 aa500010 b14b688c
    0xac352840: 00000008 00000051 ac352868 b1344604
    0xac352850: 00000051 aa50b840 00352d84 b14b688c
    0xac352860: aa50b840 00000007 ac3528b8 b134303d
    0xac352870: 00000051 00000007 aa50b840 b1343419
    0xac352880: aa50b9e0 aa50b9e0 00000051 b134478b
    0xac352890: 00000054 00000004 aa50b9e0 b134473a
    Instructions: (pc=0xb1344da8)
    0xb1344d98: e8 8a 3a ec ff 81 c3 ef 1a 17 00 83 c6 01 d1 fe
    0xb1344da8: 3b 77 0c 7f 36 8b 4d 0c 8b 17 8b 41 10 89 47 10
    Stack: [0xac304000,0xac355000], sp=0xac352820, free space=314k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libxqilla.so.4+0x23ada8] m_apm_copy+0x28
    C [libxqilla.so.4+0x23a604] m_apm_round+0x74
    C [libxqilla.so.4+0x23903d] m_apm_to_string+0x3d
    C [libxqilla.so.4+0x23723b] m_apm_to_string_mt+0x2b
    C [libxqilla.so.4+0x22f243] _ZNK4MAPM8toStringEPci+0x33
    C [libxqilla.so.4+0x20de31] ZN7Numeric14asDoubleStringENS5StateERK4MAPMiPK13StaticContext+0xf1
    C [libxqilla.so.4+0x20e194] _ZNK7Numeric14asDoubleStringEiPK13StaticContext+0x74
    C [libxqilla.so.4+0x1eab40] _ZNK21ATDoubleOrDerivedImpl8asStringEPK14DynamicContext+0x30
    C [libxqilla.so.4+0x20f76e] _ZNK22NumericTypeConstructor10createItemEPK14DynamicContext+0x15e
    C [libxqilla.so.4+0x120a10] _ZN10XQSequence14SequenceResult4nextEP14DynamicContext+0x60
    C [libxqilla.so.4+0x261b27] _ZN13ClosureResult4nextEP14DynamicContext+0x67
    C [libxqilla.so.4+0x263183] _ZN16ResultBufferImpl4itemEjP14DynamicContext+0x53
    C [libxqilla.so.4+0x2632d0] _ZN14BufferedResult4nextEP14DynamicContext+0x40
    C [libxqilla.so.4+0x263183] _ZN16ResultBufferImpl4itemEjP14DynamicContext+0x53
    C [libxqilla.so.4+0x2632d0] _ZN14BufferedResult4nextEP14DynamicContext+0x40
    C [libdbxml_java-2.4.so+0x20987e] _ZN5DbXml20GeneralCompareFilter6doNextEP14DynamicContext+0xde
    C [libdbxml_java-2.4.so+0x206c13] _ZN5DbXml11ValueFilter4nextEP14DynamicContext+0x33
    C [libdbxml_java-2.4.so+0x20c8ef] _ZN5DbXml22VarNodePredicateFilter6doNextEP14DynamicContext+0x8f
    C [libdbxml_java-2.4.so+0x20bb03] _ZN5DbXml22VarNodePredicateFilter4nextEP14DynamicContext+0x33
    C [libdbxml_java-2.4.so+0x20baf1] _ZN5DbXml22VarNodePredicateFilter4nextEP14DynamicContext+0x21
    C [libdbxml_java-2.4.so+0x20baf1] _ZN5DbXml22VarNodePredicateFilter4nextEP14DynamicContext+0x21
    C [libdbxml_java-2.4.so+0x2135d4] _ZN5DbXml20QueryPlanToASTResult4nextEP14DynamicContext+0x24
    C [libxqilla.so.4+0x261b27] _ZN13ClosureResult4nextEP14DynamicContext+0x67
    C [libxqilla.so.4+0x263183] _ZN16ResultBufferImpl4itemEjP14DynamicContext+0x53
    C [libxqilla.so.4+0x2632d0] _ZN14BufferedResult4nextEP14DynamicContext+0x40
    C [libdbxml_java-2.4.so+0x21270d] ZN5DbXml22ASTToQueryPlanIterator4seekEiRKNS5DocIDERKNS_5NsNidEP14DynamicContext+0x3d
    C [libdbxml_java-2.4.so+0x1d886e] _ZN5DbXml17IntersectIterator4nextEP14DynamicContext+0x9e
    C [libdbxml_java-2.4.so+0x2135d4] _ZN5DbXml20QueryPlanToASTResult4nextEP14DynamicContext+0x24
    C [libxqilla.so.4+0x26429b] _ZN10ResultImpl24getEffectiveBooleanValueEP14DynamicContextPK12LocationInfo+0x3b
    C [libxqilla.so.4+0x117775] _ZN4XQIf8IfResult4nextEP14DynamicContext+0xb5
    C [libxqilla.so.4+0x11770d] _ZN4XQIf8IfResult4nextEP14DynamicContext+0x4d
    C [libxqilla.so.4+0x13cb1b] _ZN12ReturnResult4nextEP14DynamicContext+0x15b
    C [libxqilla.so.4+0x160d47] _ZN7XQQuery11QueryResult4nextEP14DynamicContext+0x47
    C [libdbxml_java-2.4.so+0x10b115] ZN5DbXml13LazyDIResults4nextERNS8XmlValueE+0x185
    C [libdbxml_java-2.4.so+0x11d3c9] ZN5DbXml10XmlResults4nextERNS8XmlValueE+0x39
    C [libdbxml_java-2.4.so+0x107024] ZN5DbXml12ValueResults4initERNS10XmlResultsE+0x44
    C [libdbxml_java-2.4.so+0x108339] ZN5DbXml12ValueResultsC1EPNS7ResultsERNS_10XmlManagerEPNS_11TransactionE+0x89
    C [libdbxml_java-2.4.so+0xd1698] ZN5DbXml15QueryExpression7executeEPNS11TransactionEPNS_5ValueERNS_15XmlQueryContextEj+0x1e8
    C [libdbxml_java-2.4.so+0x114b30] ZNK5DbXml18XmlQueryExpression7executeERNS14XmlTransactionERNS_15XmlQueryContextEj+0x60
    C [libdbxml_java-2.4.so+0x232671]
    C [libdbxml_java-2.4.so+0x2522f9] Java_com_sleepycat_dbxml_dbxml_1javaJNI_XmlQueryExpression_1execute_1_1SWIG_15+0x229
    v ~BufferBlob::Interpreter

    Good morning,
    Thanks for the quick reply.
    1. The crash always lists the m_apm* at the top of the stack, particularly the m_apm_copy function at the very top. We say it is random because the actual query which is being executed is not limited to a single reference or point in the database. At first we had thought it may be some bad data, however, any record set which is retrieved in this manner seems to give the same stack copy crash location, but it is random in that it may or may not appear during any of our testing runs. We have tested this on various systems with the same crashing results (single processor, multi processor 32bit/64bit Windows and various flavors of linux).
    2. Yes.
    3. When we perform the same function with a call to a direct query rather then building a query expression and calling execute on it, the system does not fall over.

  • Communication Error with Host and Remote Object

    Hi,
    I was executing my RMI program in a Linux Grid Network environment and the communication was no problem and the code did work.
    However I have switched to the same code to another network with linux machines and when try to execute the code I get the Error:
    java.rmi.ConnectIOException: Exception creating connection to: 136.186.14.96; nested exception is: java.net.NoRouteToHostException: No route to host
    136.186.14.96 is the place where the registry is running and Server Object is bound
    Client Locate the Registry as below
    LocateRegistry.getRegistry("136.186.14.96",1099);
    ACTUAL CODE:
    +//Pass The Remote Reference+
    +try {+
    oClient.registry = LocateRegistry.getRegistry(oClient.o_RegistryReference,oClient.i_Port);
    oClient.server = (ART_Interface) oClient.registry.lookup("Server_Obj");
    oClient.server.clientRegister(oClient.i_ClientID, oClient);
    System.out.println("SEQUENCE <1>  Client [" iID + "] Request to Register");+
    +} catch (Exception e) {+
    System.out.println("Client [" oClient.i_ClientID + "]Registration Error: " + e);+
    +}+
    Client Code Execution....
    +#ART_CLIENT <HOST> <PORT> <Client ID> <slavesPerClient>+
    java -cp /home/research/mbcooray/network/mercury/GRID/ -Djava.rmi.server.codebase=file:/home/research/mbcooray/network/mercury/GRID/ -Djava.security.policy=/home/research/mbcooray/network/mercury/GRID/Policy.txt ART_Client 136.186.14.96 1099 0 1 &

    No for multiple instances of clients communicating (Reporting) to Server, wouldn't server have a dedicated port for them?No. A remote object is exported on port X, the client forms an inbound (from the server's point of view) connection to it, an accepted-socket is created, also on X. netstat -an will show you that: X LISTENING and zero or more X ESTABLISHED. A TCP connection consists of the tuple {TCP, client-address, client-port, server-address, server-port}. Here 'server-port' is X, 'client-port' is allocated by the system. So there can exist multiple inbound connections to X, and the server-port number is always X.
    For Call backs I guess JVM gets hold of a random free portFor all outbound connections, TCP gets hold of a random free port.
    as it is running on a separate thread (I assume)Threads have nothing to do with it.
    Is this done by using socketfactory? Forget it. You don't want to do this, for the reasons I have. You probably don't need to do it, and if you do need to do it you should shoot the netadmin instead.
    Yes, the server exports the object and binds it in the local registryThat's not the same thing as exporting it on port 1099. You can specify a port number when exporting, or when calling super() if your remote objects extend UnicastRemoteObject. If you are using LocateRegistry.createRegistry(), port 1099 will get reused automatically for all subsequently-exported remote objects unless you are using a socket factory, which you aren't. If you are using a separate Registry you should specify the export port number yourself, and you can't re-use 1099.
    The background to this is that firewalls often contain rule configurations about what remote port numbers may be connected to, which corresponds to the reality that Internet services have fixed port numbers, so you can decide e.g. to allow your users to connect to HTTP servers (80,443,8080,8443) and SSH (22) but not for example Telnet (23). However by symmetry they often also allow similar rules for outbound port numbers, which are completely useless as they do not correspond to any reality whatsoever. If you have a netadmin who is enforcing outbound port number rules, just tell him to stop it.

  • Error when creating a ReportDocument object in ver 11.5.3300.0

    When I try to create a new ReportDocument from .NET the application exists with no other information. There is an event log entry similar to this one:
    Faulting application CrystalTest1.vshost.exe, version 9.0.21022.8, time stamp 0x47316898, faulting module unknown, version 0.0.0.0, time stamp 0x00000000, exception code 0xc0000005, fault offset 0x04525da0, process id 0x10fc, application start time 0x01c9c2d6d624913d.
    Investigating more I tracked down that the error happens when I try to create various COM objects from Crystal Reports (for example by running the following vbscript: Set o = CreateObject("CrystalClientDoc.ReportClientDocument")). The error is always an Access Violation in cachemanager.dll on address 3f8691b5:
    3F869172 push ebx
    3F869173 push esi
    3F869174 push edi
    3F869175 push 3F873464h
    3F86917A call dword ptr ds:3F86C04Ch
    3F869180 mov ebx,dword ptr esp+10h
    3F869184 mov esi,eax
    3F869186 mov eax,dword ptr esi
    3F869188 mov ecx,esi
    3F86918A mov dword ptr esi+4,ebx
    3F86918D call dword ptr eax+8
    3F869190 push esi
    3F869191 lea edi,esi+14h
    3F869194 push eax
    3F869195 mov ecx,edi
    3F869197 call 3F8690EE
    3F86919C mov edi,dword ptr edi
    3F86919E push edi
    3F86919F push 0FFFFFFFCh
    3F8691A1 push ebx
    3F8691A2 call dword ptr ds:3F86C254h
    3F8691A8 push dword ptr esp+1Ch
    3F8691AC push dword ptr esp+1Ch
    3F8691B0 push dword ptr esp+1Ch
    3F8691B4 push ebx
    3F8691B5 call edi
    3F8691B7 pop edi
    3F8691B8 pop esi
    3F8691B9 pop ebx
    3F8691BA ret 10h
    The full stack trace is:
    00455B60()
    cachemanager.dll!3f8691b7()
    http://Frames below may be incorrect and/or missing, no symbols loaded for cachemanager.dll
    user32.dll!7735f8d2()
    user32.dll!7735f794()
    user32.dll!7735f73d()
    user32.dll!77360817()
    user32.dll!773539f7()
    ntdll.dll!771f99ce()
    user32.dll!77353cf7()
    user32.dll!77353b94()
    user32.dll!77353cc3()
    atl71.dll!7c12c51d()
    atl71.dll!7c12c633()
    atl71.dll!7c121653()
    user32.dll!77353d9a()
    cachemanager.dll!3f86922f()
    cachemanager.dll!3f86949e()
    cachemanager.dll!3f869600()
    cachemanager.dll!3f868aec()
    msvcr71.dll!7c349565()
    kernel32.dll!760e4911()
    ntdll.dll!771de4b6()
    ntdll.dll!771de489()
    The address called at 3f8691b5 seem to always contain the following data in my case:
    00455B51 00 00 add byte ptr eax,al
    00455B53 00 00 add byte ptr eax,al
    00455B55 00 00 add byte ptr eax,al
    00455B57 00 DA add dl,bl
    00455B59 44 inc esp
    00455B5A 44 inc esp
    00455B5B 3A 00 cmp al,byte ptr eax
    00455B5D 00 00 add byte ptr eax,al
    00455B5F 8B db 8bh
    00455B60 C7 44 24 04 70 1F F4 01 mov dword ptr esp+4,1F41F70h
    00455B68 E9 4E 39 41 3F jmp 3F8694BB
    00455B6D 00 00 add byte ptr eax,al
    00455B6F 00 DF add bh,bl
    00455B71 44 inc esp
    00455B72 44 inc esp
    00455B73 3A 00 cmp al,byte ptr eax
    00455B75 00 00 add byte ptr eax,al
    00455B77 88 E0 mov al,ah
    00455B79 66 45 inc bp
    00455B7B 00 90 5B 45 00 B8 add byte ptr eax-47FFBAA5h,dl
    The data and the address seem to be always the same in my case.
    I am running 32-bit Vista Ultimate on a dual core Intel Centrino CPU. I have a Crystal Reports Deployment suite installed. The cachemanager.dll is 106,496 bytes and the file version is 11.5.8.998
    Pelase help!

    Hi Ludek,
    Thanks for looking into this.
    > What version of .NET are you using?
    I have all version of .NET installed but please note that .NET is not required to reproduce the problem. Please read again my initial post. The error can be reproduced with this single line of VB Script and there is no .NET involved:
    Set o = CreateObject("CrystalClientDoc.ReportClientDocument")
    The same can be reproduced by creating a new ReportDocument object from .NET in any type of .NET application.
    > What CR Service Pack are you on?
    I haven't installed any additional service packs. Please see the versions of the files I have on my system to figure out the service pack:
    Crystaldecisions.Crystalreports.Engine.dll file version = 11.5.9708.998
    cachemanager.dll file version = 11.5.8.998
    clientdoc.dll file version = 11.5.8.998
    The other computers where all works good have the same versions installed.
    > What .NET Service Pack are you on?
    All latest service packs and updates from Microsoft are installed
    > What is the version of the CR assembly crystaldecisions.Crystalreports.engine.dll referenced in your application?
    The assembly version is 11.5.3700.0, file version: 11.5.9708.998, file size: 393,216 bytes
    > Is this a web or a win app?
    The error happens in btoh web and windows forms applications as well as by simply trying to create the Crystal COM object directly from VB Script without involving any .NET. So the same error will occur if CR are used from VB6 for example.
    > What OS are you on?
    Again as per my original post I am using a 32-bit Vista Ultimate on a dual core Intel Centrino CPU
    > What happens if you try to run an existing application?
    I get a crash in unmanaged code in cachemanager.dll at 0x3f8691b7. All the details are in my original post (scroll up). When this happens in a .NET application, the process is terminated and Vista shows a message that the program has stoped working. There is an error in the event log (see my original post)
    > There are different ways of instantiating a report. The sample app vbnet_win_simplepreview has all of these. Running the app with the different options may give us a clue... Was Crystal Reports installed before .NET or after?
    Crystal Reports Basic for Visual Studio 2008 was installed with VS 2008. After that I installed Crystal Reports Server Deployment
    > Have you tried to reinstall Crystal Reports?
    Yes I did reinstall both Crystal Reports Basic for Visual Studio 2008 and Crystal Reports Server Deployment in reverse order (i.e. the server deployment first and then the basics)

  • Error with TaskSearchFilter using Java APIs in custom component

    I have created a custom Java component for use in LC Process Mgr.
    Upon invoke of process containing component, component fails with the following message:
    2011-02-28 16:28:31,260 ERROR [com.adobe.workflow.AWS] Cannot coerce object: [email protected]41 of type: com.adobe.idp.taskmanager.dsc.client.query.TaskSearchFilter to type: class com.adobe.idp.taskmanager.dsc.client.query.TaskSearchFilter
    Code is pretty basic:
            ServiceClientFactory myFactory = ServiceClientFactory.createInstance();
            TaskManagerQueryService queryManager = TaskManagerClientFactory.getQueryManager(myFactory);
            TaskSearchFilter filter = new TaskSearchFilter();
            filter.addCondition(TaskSearchingConstants.pSTATUS, Operator.EQUALS, "3");
            List<TaskRow> result = queryManager.taskSearch(filter);
    Error seems to occur with the creation of the List. This code works ok when run as standalone file in either Eclipse or Netbeans but not within the component.
    All necessary JARs are included and are listed in the class-path in component.xml.
    Does anyone have any ideas?
    Thanks,
    David

    Looks like a class loader issue.  Usually this is caused by having the a class (TaskSearchFilte) in your component that on the server.   In other words there are two copies of the TaskSearchFilte class - yours and the one already in LiveCycle - and they are in conflict.
    If that's the case, the solution is simple:
    remove the jar files containing the TaskSearchFilte (and any other LiveCycle clients) from your component's jar file.  You may need them in the build path, so your code can compile - but you don't need them in the final component jar.
    remove the references to these jar files from the component.xml file's class-path entry
    add an import-packages section to your component.xml file.  This will not reference the jar files, but the package names themselves.  For example:
    <import-packages>    
         <package version="1.0">com.adobe.idp.taskmanager.dsc.client.query.TaskSearchFilter</package>
         <!--  add more as needed -->
    </import-packages>

  • OutOfMemory error with executable file

    I'm a plant scientist not a Java programmer, so apologies for naivety or lack of clarity here. I am trying to help a colleague who consistently gets a java.lang.OutOfMemoryError when running an .exe file provided as part of a freeware academic version of a bioinformatics package. The full commercial version would be supplied as jar files and the company gives the obvious advice on how to fix the error in this case: issue the command
    java -Xmx256m -jar THEPROG.jar [followed by program-specific options] where THEPROG represents the program in question. However this won't work with the exe version, which is presumably just a compiled stripped-down form of the Java original. Is there any way we can overcome this error? We are currently running J2RE SE (version 1.4.2_02) which is part of our standard Windows XP desktop build; the problem is independent of system memory availability, and I've reproduced it with other versions of JRE/JDK. The other exe file released as part of the same freeware package runs fine, but is less computationally demanding.
    Thanks in advance

    Thanks to cotton.m, ChuckBing and mimi_tan1985 for your replies. The exe file doesn't accept options of the form -Xmxnnn. Unfortunately the originator of the software doesn't document which program was used to create the exe file from the Java classes/jars, and it doesn't provide support for the freeware version, though it's widely used in the academic community as it performs superbly when it works. The documentation is sketchy and provides no info on changing memory allocation for the exe version, only for the jar version.
    It looks as though we will either have to break our bigger jobs up into multiple small jobs which will run OK, or find the $2000 or so we need to buy the full version.
    Thanks again for your help.

  • Could not find the main class error with executable jar

    Hello,
    I have troubles creating an executable jar file and I ran out of ideas how to solve it so I would appreciate some help.
    I have created a jar file with the export function in eclipse
    the Manifest.MF file contains:
    Manifest-Version: 1.0
    Main-Class: view.AppTennisViewI tried starting the file with a batch file which contains following code:
    @echo off
    javaw -classpath c:\TennisHSQLDB_GC2\tennisApp.jar
    @start javaw -jar tennisApp.jar
    exitthe batch file and the jar are both located in c:\TennisHSQLDB_GC2.
    When i try command line I get the same result.
    I also tried alternate statements such as SET CLASSPATH iso javaw -classpath and including the classpath in the manifest file but no luck. It keeps given me the error: could not find the main class. program will exit
    Anyone any suggestions for my problem?

    nevermind, found it.
    classpath in manifest was incorrect

  • Error with insert using ASP, SQL and ValidationTool Kit

    i finally got my 1st of 5 pages setup to insert, validate and
    redirect.. but
    now i get an error i have no idea what it means
    The page loads fine, but when i attempt to submit the page to
    insert the
    record, i receive the error below...
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [Microsoft][ODBC SQL Server Driver][SQL Server]Parameterized
    Query '(@P1
    text,@P2 nvarchar(50),@P3 nvarchar(50),@P4 nvarchar(50),@P5'
    expects
    parameter @P18, which was not supplied.
    /cemp_app1.asp, line 123
    Here is the line in question
    Line#123 MM_editCmd.Execute
    I dont understand why the error mentions Parameterized Query
    when im not
    doing anything special, just a simple insert(after being
    validated)
    Below is the insert code that seems to mention parameters
    If (CStr(Request("MM_insert")) = "form1") Then
    If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_has_STRING
    MM_editCmd.CommandText = "INSERT INTO dbo.EmpCandidate
    (cssn, cfname,
    cmname, clname, caddr, caddr1, capt, ccounty, ccity, cstate,
    czip, chphone,
    cmphone, cophone, qlegal, ost, qref, refemp, webother, qage,
    qgrpast,
    qgrpastsel, qgrrel, qgrrelsel1, qgrrelsel2, qcontact, qterm,
    cdesiredpos1,
    cdesiredpos2, cdesiredpay1, cdesiredpay2, cte, availsun1,
    availsun2,
    availmon1, availmon2, availtue1, availtue2, availwed1,
    availwed2,
    availthur1, availthur2, availfri1, availfri2, availsat1,
    availsat2, casppos,
    cattsuce) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param1", 201,
    1, 9, Request.Form("cssn")) ' adLongVarChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param2", 202,
    1, 50, Request.Form("cfname")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param3", 202,
    1, 50, Request.Form("cmname")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param4", 202,
    1, 50, Request.Form("clname")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param5", 202,
    1, 75, Request.Form("caddr")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param6", 202,
    1, 75, Request.Form("caddr1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param7", 202,
    1, 10, Request.Form("capt")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param8", 202,
    1, 15, Request.Form("ccounty")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param9", 202,
    1, 30, Request.Form("ccity")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param10", 202,
    1, 2, Request.Form("cstate")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param11", 202,
    1, 5, Request.Form("czip")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param12", 202,
    1, 10, Request.Form("chphone")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param13", 202,
    1, 10, Request.Form("cmphone")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param14", 202,
    1, 10, Request.Form("cophone")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param15", 202,
    1, 1, Request.Form("qlegal")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param16", 202,
    1, 15, Request.Form("ost")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param17", 202,
    1, 10, Request.Form("qref")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param18", 202,
    1, 25, Request.Form("refemp")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param19", 202,
    1, 25, Request.Form("webother")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param20", 202,
    1, 1, Request.Form("qage")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param21", 202,
    1, 1, Request.Form("qgrpast")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param22", 202,
    1, 10, Request.Form("qgrpastsel")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param23", 202,
    1, 1, Request.Form("qgrrel")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param24", 202,
    1, 10, Request.Form("qgrrelsel1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param25", 202,
    1, 10, Request.Form("qgrrelsel2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param26", 202,
    1, 3, Request.Form("qcontact")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param27", 202,
    1, 1, Request.Form("qterm")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param28", 202,
    1, 35, Request.Form("cdesiredpos1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param29", 202,
    1, 35, Request.Form("cdesiredpos2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param30", 202,
    1, 25, Request.Form("cdesiredpay1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param31", 202,
    1, 25, Request.Form("cdesiredpay2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param32", 202,
    1, 15, Request.Form("cte")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param33", 202,
    1, 35, Request.Form("availsun1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param34", 202,
    1, 35, Request.Form("availsun2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param35", 202,
    1, 35, Request.Form("availmon1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param36", 202,
    1, 35, Request.Form("availmon2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param37", 202,
    1, 35, Request.Form("availtue1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param38", 202,
    1, 35, Request.Form("availtue2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param39", 202,
    1, 35, Request.Form("availwed1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param40", 202,
    1, 35, Request.Form("availwed2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param41", 202,
    1, 35, Request.Form("availthur1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param42", 202,
    1, 35, Request.Form("availthur2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param43", 202,
    1, 35, Request.Form("availfri1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param44", 202,
    1, 35, Request.Form("availfri2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param45", 202,
    1, 35, Request.Form("availsat1")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param46", 202,
    1, 35, Request.Form("availsat2")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param47", 201,
    1, -1, Request.Form("casppos")) ' adLongVarChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param48", 201,
    1, -1, Request.Form("cattsuce")) ' adLongVarChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    End If
    End If
    %>

    Seems Adobe has a bit of a mistake there in the insert
    behavior.
    This line appears just below the query (you'll see VALUES
    with a lot of
    question marks):
    MM_editCmd.Prepared = true
    Change it to
    MM_editCmd.Prepared = false
    That will fix you up.
    "Daniel" <[email protected]> wrote in message
    news:f05ce4$s04$[email protected]..
    >i finally got my 1st of 5 pages setup to insert, validate
    and redirect..
    >but now i get an error i have no idea what it means
    >
    > The page loads fine, but when i attempt to submit the
    page to insert the
    > record, i receive the error below...
    >
    >
    > Microsoft OLE DB Provider for ODBC Drivers error
    '80040e14'
    > [Microsoft][ODBC SQL Server Driver][SQL
    Server]Parameterized Query '(@P1
    > text,@P2 nvarchar(50),@P3 nvarchar(50),@P4
    nvarchar(50),@P5' expects
    > parameter @P18, which was not supplied.
    >
    > /cemp_app1.asp, line 123
    >
    >

  • Dummy report in WEBI with out using universe objects

    Hi ,
    I need below format of WEBI report  , Where Employee id , Employee name and Email are the text fields which are hard cored in the WEBI report. I need to put a prompt on Employee id ,Employee name and Email , So that users enters the data and later user saves the webi report in an EXCEL format.
    Employee id                  55189
    Employee Name         Dirasa
    Email                         suthi.Suku
    Please let me know how to implement this. Many Many thanks in advance.
    Note:  This report not uses any of the object in the universe.
    Regards,
    Dirasa

    Hi,
    If I understand your requirement correctly then try with a free hand sql and use @variable for prompts as
    select Employee id , Employee Name , Email from .......... where Employee id = @variable('Nter Emp id") and Employee Name =
    @variable('Nter Emp name")  and Email = @variable('Nter Email id")
    Cheers,
    Suresh Aluri.

  • Embedding Flash With Forms using ActiveX Controls

    I have problem embedding Flash Movie using Active X control. I always come up with the message
    " No tenant for this object" can You help me out with this.
    thank you.
    Khurram.

    This forum is for feedback about the OTN program and problems with OTN accounts. Technical questions cannot be answered here. Please post your question in the appropriate product or technology forum.
    http://forums.oracle.com/forums/index.jsp?cat=48

  • Error with push in json object

    Hey i am using json to store my data in js app
    but problem is that when i am using javaScript push method to add json object then it's working successfully but some extra null element also adding with it.
    <script>
    jsonArray=
    "element1":[{"first":"raj"}]
    var item={};
    item["first"]="deepak";
    jsonArray.element1.push(item);
    </script>
    Result:
    jsonArray={"element1":[{"first":"raj"},{"first":"deepak"},{},{}]}
    Deepak

    Hi,
    I cannot reproduce. When I run the codes above, the jsonArray result is below:
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Parsing error with XDP using special character & in string.

    When writing an .XDP file from scratch, the following line give a parsing error at the ampersand. What command should I use to convert the ampersand to string?
    The XDP line is:
    <p3pName>17TH STREET BAR & GRILL</p3pName>
    This is the only line that gives a problem.
    Thanks

    There are five characters which MUST be escaped if they appear in
    regular XML text, this is a rule of XML. The characters are ampersand,
    single and double quote, less than, and greater than. They can be
    replaced by entities like & AMP ; (no spaces, semi-colon is part of
    it). If you use an XML library it should take care of it, but home
    grown XML programs and scripts should always keep this in mind.
    Aandi Inston

Maybe you are looking for

  • QuickTime videos stutter in Safari but not Firefox

    hi guys, i recently built a website using lightwindow (http://stickmanlabs.com/lightwindow/) to display quicktime videos in modals. the videos play beautifully in firefox but are very choppy in safari. i've tried it on a couple different macs and the

  • Mac formatted Seagate 3 terrabye usb 3.0 can't be viewed in Windows 8

    I need my data off my hard drive.  I had a Macbook pro that was stolen from a cafe.  I have a backup Seagate drive.  I guess Windows 8 can't pull up the terrabyte drive.  I have tried HFSExplorer and Macdrive. I also tried Windows 7.  They sometimes

  • Creating an intro with grid transition

    I'd like to create an intro wich is as awesome as the one in my link, any help is appreciated (: http://www.youtube.com/watch?v=SsdInucxr9o greets David

  • Unknown icon on the status bar in OsX.

    Anyone know what icon this is? I can't click it and can't find a way to remove it... no programs in the login items on my user account seems to have anything with it to do. The most curious thing is that nothing happens when i click (both left and ri

  • How to play vop files

    I need to play a .vop file in an iframe. Is there an insert or HTML tag I can use????