TestStand open problem

Hi,
I'm working with TestStand 2010.
Today I opened TS and saw strange window on the top of TS:
This window hides the menu, the edit window and does not allow proper work. I did not find any way to remove it. Even TS repair did not solve this problem.
If I open a sequence, a part of a file is hiding behind this window.
Does anybody know what is that and how solve the problem?
Solved!
Go to Solution.

Hi,
Try resetting the UI to the default configuration:  With the sequence editor selected, hit 'ALT+V' and then 'R'. 
I tried to reproduce the screenshot by changing the monitor resolution with the floating 'Step Settings' and 'Output' windows floating near the top of the screen but I couldn't put it in a state that the picture showed.  Do you remember how the editor got in that state?
Thanks,
Jim

Similar Messages

  • TestStand Open SQL Statement does not support SQL's ORDER BY clause???

    TestStand 1.0.3
    Windows 2000 SP1
    SQL Server 2000 Personal
    You've got to be kidding me...
    It appears that the built-in TestStand Open SQL Step does NOT support the
    "ORDER BY" clause in the SELECT statement, even though the documentation
    says it does. Is this true?
    I have an Open SQL Statement query:
    "SELECT * FROM [MyTable] WHERE ([Batch ID]=1234)"
    it works fine, returning a correct record count 120 records. If I change
    the Open SQL Statement query simply by adding an ORDER BY clause, such as:
    "SELECT * FROM [MyTable] WHERE ([Batch ID]=1234) ORDER BY [MyField] ASC"
    it returns a record count of zero. I know that "MyField" exists in the
    MyTable table and contains valid data. The
    second query works fine in SQL
    Server Enterprise Manager.
    Am I missing something? Is it true that the TestStand Open SQL Step does
    NOT support the "ORDER BY" clause? If not, what &#$!ing good is it and why
    does the manual state it is supported? Is there any other way using just
    the TestStand steps to order a database recordset on one or more fields?
    Any help would be appreciated.
    Grrrrr....
    Bob Rafuse
    Etec Inc.

    > Bob -
    > The database step types do not do anything special to the SQL command
    > that you give it. The step just passes the command to the ADO
    > provider. I tried a simple query using the step types with the
    > following command,
    >
    > "SELECT UUT_RESULT.* FROM UUT_RESULT WHERE ([UUT_SERIAL_NUMBER] =
    > 12345) ORDER BY [EXECUTION_TIME] ASC"
    >
    > and this return the expected results and the record count parameter
    > was as expected. I tried this on TS 1.0.2 and TS 2.0 with MS Access
    > 2000 and MS SQL Server 7.0. I do not have MS SQL Server 2000 at this
    > time.
    >
    > It would be surprised if the step types are messing something up.
    I've been doing some experimenting over the past couple of days. Simple,
    one-table queries seem to handle the ORDER BY clause fine. Th
    ings seem to
    get messed up when I try multi-table queries with ORDER BY clause with the
    TestStand database steps. I get no errors but the returned record counts
    are always 0 with the ORDER BY and positive without the ORDER BY. The exact
    same queries work fine in Visual Basic/ADO and the SQL Server Query
    Analyzer.
    > Questions:
    > 1. Have you verified whether the data is actually returned even though
    > the record count is zero?
    Hmmm... yes data IS getting returned (at least on the two instances I just
    checked), but the record count is always zero. I was not proceeding with
    processing if the record count was 0.
    Still... I don't know how to loop through the recordset without knowing how
    many records there are an not eventually generate an error by passing EOF.
    Is there another way using the TestStand database steps to determine a) the
    number of records in the recordset or b) when I'm at EOF?
    > 2. Are you using any advanced options on the Opend SQL Statement step
    > type, specifically
    the cursor type set to forward only? Forward only
    > cursors do not allow for record counts.
    Everything on the Advanced tab of the Open SQL Statement step is set to "Use
    Default".
    Bob.

  • Image open problem in nokia 5230

    Dear All,
    I have nokia 5230 mobile & i am using from last 10 months but from past few days i am facing problem regarding image/songs open problem.  whenever i trying to open image my phone gets hang & it shows nothing in it but i have 100 pics in memory card, same problem is with songs whenever i put some songs in memry card but songs gallery after refreshing shows nothing.
    Please help me to resolve this issue.
    Vipul

    im not sure what to do about the images but the same happened with the songs. here is waht i did:
    1. make sure you have the latest firmware installed (fw. 50).
    2. when it is installed copy all tracks to pc and install nokia ovi music.
    3. delete the folder called 'music' on your memory card.
    4. open ovi music and add songs to playlists and copy to device. this will create a new folfre called 'music' and the error should be fixed
    if that fails you should try a program called lcg jukebox as this is a much better music player 

  • Desktop.open() Problem

    I recently put together an application that relied heavily on the Desktop.open( ) method and several other methods from the Desktop class. However, all of a sudden the Desktop.open() does not work. I believe I read some where that this was due to the ShellExecute function or dll or something like that.
    However, since my app is targetted at the Windows platform I resorted to using windows Explorer to launch the system default applications for files using a the code below
    public static void openFile(File file) {
      try {
        Runtime runtime = Runtime.getRuntime();
        runtime.exec( "explorer.exe \"" + file.getAbsolutePath() + "\"" );
      } catch(IOException) {
        ioe.printStackTrace();
        JOptionPane.showMessageDialog(null, "Could Not Open File Location: " + file.getAbsolutePath());
    }The code works as expected, but my problem is that I am loosing cross-platform functionality.
    Can any point my to solution to this Desktop.open( ) problem, or probably add the my list platform dependent launch procedures so at least the code works on Windows,Linux and Mac.
    ICE

    Thanks Andrew,
    I've do a more simple example of the problem. I create two files on "\\fiuu\proyectosShared", one called "test.txt" and the other one called "te st.txt". I execute your exact source for the who paths whith these results:
    File f = new File("//fiuu/proyectosShared/test.txt");
    System.out.println(f + "  exists: " + f.exists());
    dt.open(f);
    RESULT:
    \\fiuu\proyectosShared\test.txt  exists: true
    (notepads opens the file)The second test does'nt work:
    File f = new File("//fiuu/proyectosShared/te st.txt");
    System.out.println(f + "  exists: " + f.exists());
    dt.open(f);
    RESULT:
    \\fiuu\proyectosShared\te st.txt  exists: true
    Exception in thread "main" java.io.IOException: Failed to open file:////fiuu/proyectosShared/te%20st.txt. Error message: El sistema no puede hallar la ruta especificada.
         at sun.awt.windows.WDesktopPeer.ShellExecute(WDesktopPeer.java:59)
         at sun.awt.windows.WDesktopPeer.open(WDesktopPeer.java:36)
         at java.awt.Desktop.open(Desktop.java:254)
         at DesktopTest.main(DesktopTest.java:14)
    (translation of error message: System can't find specified path)I've also done some tests with Desktop.browse(file.toURI), and some others with no success.
    Something curious: try to execute Runtime.getRuntime().exec("explorer " + f.getAbsolutePath) for a file that has thow white spaces on his name....
    File f = new File("//fiuu/proyectosShared/te  st.txt");//with two white spaces
    System.out.println(f + "  exists: " + f.exists());
    Runtime.getRuntime().exec("explorer " + f.getAbsolutePath());
    \\fiuu\proyectosShared\te  st.txt  exists: trueSystem says:
    Explorador de Windows
    La ruta '\\fiuu\proyectosShared\te st.txt' no existe o no es un directorio.
    Aceptar  
    (spanish version of File not found alert message)Note that in alert message one white space of filename is lost!
    Thanks again
    Edited by: pakomail on Nov 24, 2008 6:12 AM

  • Oracle error - Open problem

    hi friends,
    on accessing the database i get this following error:
    Open Problem - ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist Execution Problemnull
    How can i resove it...

    Here's a wild idea.... check the Oracle site/documentation for suggestions ?

  • BI 7.0 Infoset query open problem: query_tech_name_Fxx is not a valid char.

    Our BASIS transport our BW 3.5 queries to BI 7.0 system.  We can open all queries on the BI 7.0 box without problem except Infoset queries.  The Infoset is composed of two ODSs and when openning it BI 7.0 query designer, can not see any design element in the panes of Rows, Columns, Free Char. and etc., instead the error msg shows (in between two dashed lines below):
    Terminate: query_technical_name_Fxx is not a valid characteristic for InfoProvider [A122(BRAIN)]
    Diagnosis
    Customer enhancement RSR00002 or the implementation of BAdI RSR_OLAB_BADI delivers query_technical_name_Fxx as the characteristic to be calculated. 1. is, however, not a valid key figure for InfoProvider .
    System Response
    The information from query_technical_name_Fxx is ignored.
    Procedure
    Check the exit.
    Procedure for System Administration
    We've checked the enhancement RSR00002 and it's components and find they are all the same as our BW 3.5 system.  query_technical_name_Fxx is Company Code InfoObj. in one ODS and it's one of the key to join these two InfoSets.
    Any idea?
    Thanks

    hi Kevin,
    check if helps following oss note
    Note 983449 - Termin A122 1COLUMN no valid characteristic of infoprovider
    Symptom
    Termination A 122 Brain occurs when you test and generate a query. The system does not recognise the characteristic 1COLUMN.
    Other terms
    Query, condition, COB_PRO
    Reason and Prerequisites
    This problem is caused by a program error.
    Solution
    SAP NetWeaver 2004s BI
               Import Support Package 10 for SAP NetWeaver 2004s BI (BI Patch 10 or SAPKW70010) into your BI system. The Support Package is available once Note 914304 "SAPBINews BI 7.0 Support Package 10", which describes this Support Package in more detail, has been released for customers.
    In urgent cases, you can implement the correction instructions.
    You must first implement Notes 932065, 935140, 948389, 964580 and 969846, which provide information about transaction SNOTE. Otherwise, problems and syntax errors may occur when you deimplement some notes.

  • File Ext Openning problem!

    I have searched all over my mac high and low and can not figure out out to make the default file ext. open in the correct program example .doc, .eps, .psd, .pdf, .indd I can only right click and have it open in program if I double click all files open in preview. This problem occurred after I installed snow leopard, please help me

    Select a file, choose File -> Get Info, set the app you want in the Open With pop-up and click the Change All button.

  • Another Safari won't open problem

    Hello All,
    My Safari keeps crashing as soon as it opens.
    I really need your help bad..I have been reading through posts for the last 2 hours and have tried a few options, but I still can't get Safari to open. I am actually at work posting this because I can't access the internet at all from open due to this problem. BTW: My mail is working perfectly so I don't think it is a connection problem.
    I have tried thrashing the Safari.plist file as well as Cookies.plist and no success. I even reinstalled Tiger thinking this might solve the probelm, but still not working.
    Here is the crash log...I see this is requested in other post...Any help you can provide would be extremely appreciated. Thanks in advance.
    Date/Time: 2006-08-18 14:01:37.649 -0400
    OS Version: 10.4 (Build 8A428)
    Report Version: 3
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [58]
    Version: 2.0 (412)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4120000
    PID: 239
    Thread: 2
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0:
    0 libSystem.B.dylib 0x9000a758 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000a69c mach_msg + 60
    2 com.apple.CoreFoundation 0x902a35b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x91fd4fc0 RunCurrentEventLoopInMode
    + 264
    5 com.apple.HIToolbox 0x91fd4654 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x91fd44c0
    BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x924bd384 _DPSNextEvent + 384
    8 com.apple.AppKit 0x924bd048 -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.Safari 0x00007058 0x1000 + 24664
    10 com.apple.AppKit 0x924b95ac -[NSApplication run] + 472
    11 com.apple.AppKit 0x925a9e04 NSApplicationMain + 452
    12 com.apple.Safari 0x00002700 0x1000 + 5888
    13 com.apple.Safari 0x00057190 0x1000 + 352656
    Thread 1:
    0 libSystem.B.dylib 0x9000a758 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000a69c mach_msg + 60
    2 com.apple.CoreFoundation 0x902a35b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b0a244 -[NSRunLoop
    runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x90b0a17c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x94070458 +[WebFileDatabase
    _syncLoop:] + 176
    7 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 2 Crashed:
    0 libSystem.B.dylib 0x90124940 bcmp + 224
    1 com.apple.Foundation 0x90b12194 -[NSUnarchiver
    initForReadingWithData:] + 208
    2 com.apple.Foundation 0x90b2402c -[NSURLCache
    _diskCacheGet:] + 524
    3 com.apple.Foundation 0x90b23b34 -[NSURLCache
    cachedResponseForRequest:] + 132
    4 com.apple.Foundation 0x90b22f94 -[NSURLConnection
    (NSURLConnectionInternal) _performLoad] + 552
    5 com.apple.Foundation 0x90b22a00 _resourceLoaderPerform + 224
    6 com.apple.CoreFoundation 0x902a3f0c __CFRunLoopDoSources0 + 384
    7 com.apple.CoreFoundation 0x902a343c __CFRunLoopRun + 452
    8 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    9 com.apple.Foundation 0x90b22760 +[NSURLConnection
    (NSURLConnectionInternal) _resourceLoadLoop:] + 264
    10 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    11 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000a758 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000a69c mach_msg + 60
    2 com.apple.CoreFoundation 0x902a35b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b238a0 +[NSURLCache
    _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001efcc select + 12
    1 com.apple.CoreFoundation 0x902b5e4c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002ca78
    semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003125c pthreadcondwait + 508
    2 com.apple.Foundation 0x90b02420 -[NSConditionLock
    lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9b0bdaf0 -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 2 crashed with PPC Thread State:
    srr0: 0x90124940 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x44028432 xer: 0x00000000 lr: 0x90b12194 ctr: 0x00000003
    r0: 0x00000618 r1: 0xf0182120 r2: 0x01853c00 r3: 0x00000000
    r4: 0x90c8e9e8 r5: 0x00000000 r6: 0xf0182064 r7: 0xfffff9f4
    r8: 0x00000003 r9: 0x0000000c r10: 0x05200dbf r11: 0xa0ad66a4
    r12: 0x90124860 r13: 0x00000000 r14: 0x00000001 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x7fffffff r21: 0x00000001 r22: 0x00000001 r23: 0x004bef00
    r24: 0x00000000 r25: 0xa0af2d6c r26: 0xa0af6c5c r27: 0xf01821c0
    r28: 0x00000000 r29: 0x0516e038 r30: 0x0516e030 r31: 0x90b120c4
    Binary Images Description:
    0x1000 - 0xd7fff com.apple.Safari 2.0 (412) /Applications/
    Safari.app/Contents/MacOS/Safari
    0x52d000 - 0x530fff com.mac.bwebster.iPLM ??? (3.0.1) /Users/
    delyq87/Library/InputManagers/iPLM/iPLM.bundle/Contents/MacOS/iPLM
    0x52c7000 - 0x52c9fff com.apple.textencoding.unicode 2.0 /System/
    Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode
    Encodings
    0x8fe00000 - 0x8fe50fff dyld 43 /usr/lib/dyld
    0x90000000 - 0x901a6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901ff000 - 0x90252fff com.apple.CoreText 1.0.0 (???) /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/CoreText.framework/Versions/A/CoreText
    0x90280000 - 0x90359fff com.apple.CoreFoundation 6.4 (368) /System/
    Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x903a3000 - 0x90668fff com.apple.CoreServices.CarbonCore 10.4
    (611.1) /System/Library/Frameworks/CoreServices.framework/Versions/
    A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x906cc000 - 0x90740fff com.apple.framework.IOKit 1.4 (???) /
    System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9075b000 - 0x907dbfff com.apple.CoreServices.OSServices 4.0
    (4.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/
    A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x90826000 - 0x90826fff com.apple.CoreServices 10.4 (???) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90829000 - 0x908a7fff com.apple.audio.CoreAudio 3.0.0 (3.0) /
    System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x908fe000 - 0x908fefff com.apple.ApplicationServices 10.4 (???) /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    ApplicationServices
    0x90901000 - 0x90985fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x909e0000 - 0x90a6bfff com.apple.DesktopServices 1.3 /System/
    Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/
    DesktopServicesPriv
    0x90ad5000 - 0x90cfefff com.apple.Foundation 6.4 (567) /System/
    Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90ead000 - 0x90ecbfff libGL.dylib /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90ed7000 - 0x90f31fff libGLU.dylib /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90f52000 - 0x90f79fff com.apple.SystemConfiguration 1.8.0 /
    System/Library/Frameworks/SystemConfiguration.framework/Versions/A/
    SystemConfiguration
    0x90f8d000 - 0x90f8dfff com.apple.Carbon 10.4 (???) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90f90000 - 0x90f9cfff com.apple.opengl 1.4.0 /System/Library/
    Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90fa2000 - 0x90fc4fff com.apple.DirectoryService.Framework 1.8 /
    System/Library/Frameworks/DirectoryService.framework/Versions/A/
    DirectoryService
    0x91037000 - 0x91037fff com.apple.Cocoa 6.4 (???) /System/Library/
    Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910ca000 - 0x91102fff com.apple.vmutils 4.0.0 (85) /System/
    Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x91129000 - 0x9114cfff com.apple.LangAnalysis 1.6 /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    LangAnalysis.framework/Versions/A/LangAnalysis
    0x91161000 - 0x91175fff com.apple.speech.synthesis.framework 3.3 /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91184000 - 0x911eafff com.apple.htmlrendering 1.1.2 /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    HTMLRendering.framework/Versions/A/HTMLRendering
    0x9122c000 - 0x912e9fff com.apple.QD 3.8.5 (???) /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    QD.framework/Versions/A/QD
    0x91328000 - 0x913bbfff com.apple.print.framework.PrintCore 4.0
    (172) /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x91402000 - 0x91412fff com.apple.speech.recognition.framework
    3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/
    Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x9141f000 - 0x9144cfff com.apple.openscripting 1.2.2 (???) /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    OpenScripting.framework/Versions/A/OpenScripting
    0x9146d000 - 0x91481fff com.apple.ImageCapture 3.0 /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    ImageCapture.framework/Versions/A/ImageCapture
    0x9149d000 - 0x914a8fff com.apple.help 1.0.3 (32) /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/
    Versions/A/Help
    0x914b4000 - 0x914c1fff com.apple.CommonPanels 1.2.2 (73) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    CommonPanels.framework/Versions/A/CommonPanels
    0x914cb000 - 0x914dbfff com.apple.print.framework.Print 4.0 (187) /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    Print.framework/Versions/A/Print
    0x914e8000 - 0x914fdfff com.apple.securityhi 2.0 (203) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    SecurityHI.framework/Versions/A/SecurityHI
    0x91510000 - 0x91562fff com.apple.NavigationServices 3.4 /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    NavigationServices.framework/Versions/A/NavigationServices
    0x9158f000 - 0x9159efff libCGATS.A.dylib /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915a7000 - 0x915b3fff libCSync.A.dylib /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x915fc000 - 0x91610fff libRIP.A.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91a18000 - 0x91a3dfff com.apple.FindByContent 1.5 /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/FindByContent.framework/Versions/A/FindByContent
    0x91a53000 - 0x91c15fff com.apple.security 4.0 (221) /System/
    Library/Frameworks/Security.framework/Versions/A/Security
    0x91dab000 - 0x91debfff com.apple.LaunchServices 10.4 (118) /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x91fcd000 - 0x922dcfff com.apple.HIToolbox 1.4.0 (???) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    HIToolbox.framework/Versions/A/HIToolbox
    0x92428000 - 0x92486fff com.apple.HIServices 1.5.0 (???) /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/HIServices.framework/Versions/A/HIServices
    0x924b5000 - 0x92ae6fff com.apple.AppKit 6.4 (824) /System/Library/
    Frameworks/AppKit.framework/Versions/C/AppKit
    0x92e73000 - 0x931abfff com.apple.CoreGraphics 1.256.0 (???) /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x932b3000 - 0x932c8fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x932d0000 - 0x933fdfff com.apple.AddressBook.framework 4.0 (461) /
    System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9368e000 - 0x936b5fff com.apple.LDAPFramework 1.4 (68) /System/
    Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x936bc000 - 0x936d4fff com.apple.WebServices 1.1.2 (1.1.0) /
    System/Library/Frameworks/CoreServices.framework/Versions/A/
    Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
    0x9390a000 - 0x93927fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93930000 - 0x939aefff com.apple.SearchKit 1.0.3 /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    SearchKit.framework/Versions/A/SearchKit
    0x93a0f000 - 0x93a2bfff com.apple.securityfoundation 2.0 (262) /
    System/Library/Frameworks/SecurityFoundation.framework/Versions/A/
    SecurityFoundation
    0x93a47000 - 0x93b25fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x93b46000 - 0x93bcdfff com.apple.ink.framework 101.2 (69) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    Ink.framework/Versions/A/Ink
    0x93be2000 - 0x93c25fff com.apple.securityinterface 2.0 (256) /
    System/Library/Frameworks/SecurityInterface.framework/Versions/A/
    SecurityInterface
    0x9406e000 - 0x940f7fff com.apple.WebKit 412 /System/Library/
    Frameworks/WebKit.framework/Versions/A/WebKit
    0x94269000 - 0x947f9fff libBLAS.dylib /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libBLAS.dylib
    0x94872000 - 0x94b82fff libLAPACK.dylib /System/Library/
    Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/libLAPACK.dylib
    0x94c83000 - 0x94d15fff libvDSP.dylib /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libvDSP.dylib
    0x94d3b000 - 0x94da0fff libvMisc.dylib /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libvMisc.dylib
    0x94dab000 - 0x94e8dfff com.apple.JavaScriptCore 412 /System/
    Library/Frameworks/WebKit.framework/Versions/A/Frameworks/
    JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94eea000 - 0x951d6fff com.apple.WebCore 413 /System/Library/
    Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/
    Versions/A/WebCore
    0x9540a000 - 0x9550cfff libicucore.A.dylib /usr/lib/
    libicucore.A.dylib
    0x95567000 - 0x95629fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.
    0.9.7.dylib
    0x95676000 - 0x956a4fff libssl.0.9.7.dylib /usr/lib/libssl.
    0.9.7.dylib
    0x956b5000 - 0x957a3fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x957a7000 - 0x957b7fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x957fb000 - 0x95804fff com.apple.DiskArbitration 2.1 /System/
    Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9580c000 - 0x9581efff libauto.dylib /usr/lib/libauto.dylib
    0x959f6000 - 0x95a60fff com.apple.CoreData 1.0 (46) /System/
    Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95b5f000 - 0x95b86fff com.apple.Metadata 0.1 (121) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    Metadata.framework/Versions/A/Metadata
    0x95efd000 - 0x95f26fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95f2f000 - 0x95f6cfff libsqlite3.0.dylib /usr/lib/
    libsqlite3.0.dylib
    0x96002000 - 0x96006fff libmathCommon.A.dylib /usr/lib/system/
    libmathCommon.A.dylib
    0x96009000 - 0x960d4fff com.apple.ColorSync 4.4 /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ColorSync.framework/Versions/A/ColorSync
    0x9614d000 - 0x9615cfff com.apple.DSObjCWrappers.Framework 1.1 /
    System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/
    DSObjCWrappers
    0x96165000 - 0x96182fff com.apple.audio.SoundManager 3.9 /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    CarbonSound.framework/Versions/A/CarbonSound
    0x961ad000 - 0x961e5fff com.apple.AE 1.5 (297) /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    AE.framework/Versions/A/AE
    0x96201000 - 0x96241fff com.apple.CFNetwork 4.0 (80) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    CFNetwork.framework/Versions/A/CFNetwork
    0x96257000 - 0x96257fff com.apple.Accelerate 1.1 (Accelerate 1.1) /
    System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96335000 - 0x9641ffff com.apple.vImage 2.0 /System/Library/
    Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vImage.framework/Versions/A/vImage
    0x96438000 - 0x964e9fff ATS /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/ATS
    0x9654b000 - 0x96553fff libbsm.dylib /usr/lib/libbsm.dylib
    0x97204000 - 0x97223fff com.apple.Accelerate.vecLib 3.1 (vecLib
    3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/
    Frameworks/vecLib.framework/Versions/A/vecLib
    0x9731c000 - 0x97352fff com.apple.ImageIO.framework 1.0 /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97367000 - 0x9736bfff libGIF.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libGIF.dylib
    0x9736e000 - 0x973ddfff libJP2.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJP2.dylib
    0x973f5000 - 0x97411fff libJPEG.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJPEG.dylib
    0x975a3000 - 0x975bcfff libPng.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libPng.dylib
    0x975c2000 - 0x975c5fff libRadiance.dylib /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x975c8000 - 0x975e0fff libRaw.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libRaw.dylib
    0x975eb000 - 0x9762efff libTIFF.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libTIFF.dylib
    0x9770c000 - 0x97757fff libGLImage.dylib /System/Library/
    Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x97842000 - 0x9790cfff com.apple.audio.toolbox.AudioToolbox 1.4 /
    System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9798b000 - 0x9798bfff com.apple.audio.units.AudioUnit 1.4 /
    System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9798e000 - 0x97aedfff com.apple.QuartzCore 1.4 /System/Library/
    Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9b0bb000 - 0x9b0eefff com.apple.Syndication 1.0.0 (38) /System/
    Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b10d000 - 0x9b11dfff com.apple.SyndicationUI 1.0.0 (38) /System/
    Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/
    SyndicationUI
    0x9cb5f000 - 0x9cb6cfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9e33b000 - 0x9e35bfff libmx.A.dylib /usr/lib/libmx.A.dylib
    Model: PowerMac7,2, BootROM 5.1.5f2, 1 processors, PowerPC 970
    (2.2), 1.6 GHz, 1.25 GB
    Graphics: GeForce FX 5200, GeForce FX 5200, AGP, 64 MB
    Memory Module: DIMM0/J11, 128 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM1/J12, 128 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM2/J13, 512 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM3/J14, 512 MB, DDR SDRAM, PC2700U-25330
    Modem: MicroDash, UCJ, V.92, 1.0F, APPLE VERSION 2.6.4
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST380013AS, 74.53 GB
    Parallel ATA Device: SONY DVD RW DW-U10A,
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Studio Display, , Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/
    sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/
    sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec,
    250 mA
    USB Device: USB Floppy Drive, Sony, Up to 12 Mb/sec, 500 mA
    USB Device: Hub, , Up to 480 Mb/sec, 500 mA
    USB Device: LaCie Hard Drive USB, LaCie, Up to 480 Mb/sec, 500 mA
    USB Device: USB Reader, Genesys, Up to 480 Mb/sec, 500 mA
    USB Device: PTZ-430, Tablet, Up to 12 Mb/sec, 500 mA
    Power Mac   Mac OS X (10.4)  

    Hi Dely, Welcome to Apple Discussions : )
    From your Crash log:
    com.mac.bwebster.iPLM ??? (3.0.1)
    /Users/ delyq87/Library/InputManagers/iPLM/iPLM.bundle/Contents/MacOS/iPLM
    This application for iphoto & .plist files try uninstalling it or see if there is an update or support for it. See if it has an uninstaller third party applications can knit into the os pretty well.
    I think it is part of what is causing your problem. I figure the Input Manager belongs / is part of this app, i do not have this folder in either of my Home Libraries. OS 10.4.7 or 10.3.9
    Move the folder to the desktop do a restart and see if you can then launch Safari if not put it back.
    PlistEdit Pro & iPhoto Library Manager Software
    I lost a lot of my preferences after File Vault. I would set everything back up including bookmarks, Applications on the dock and after I shut down and log back in I would see that I lost all my settings.
    Which are .plist files and this app seem to edit them. Just a thought.
    Hope this helps some. Please let us know.
    edited by: Eme

  • Itunes won't open - problem with visualizer?

    For some reason Itunes won't open for me - I have had it for ages, never a problem, but I got Leopard last week and now Itunes has crashed. When i try to open it it freezes and then closes, with an error message that says 'the problem may have been caused by the ItunesX Visualizer plug in'.
    Any advice on how to fix this? I have uninstalled and reinstalled both itunes and Quicktime, but nothing seems to work.

    Same problem here! I'm going crazy. I did those two things you did and NOTHING, nada, help us!

  • ASKB - POsting Period not open problem

    Hi All,
    I saw many threads on this problem but not got suiatable solution thats why i am raising this thread again.
    Due to some problem my client not Run ASKB for October period, now when he is trying to run ASKB for November month he is getting error that 'Posting period is not open'.
    Now we cannot open 'Posting period' 'October' because of some organizational issues.
    Kindly suggest me how i run ASKB for 'Current month.
    Regards
    Sandeep

    Hi Sandeep,
    To my regret, is the answer here is definitely NO.                                                                     
    A reconciliation of the system would be not possible (For example, in foreign currency and a parallel currency).
    This source of error was stopped by switching from batch input sessions  to the Direct booking with RAPERB2000. (With batch input sessions  it was possible to manipulate).
    Furthermore, the values in the periodically posting areas have to be posted into the correct period.
    If the reconciliation is not relevant, you can check via testrun which values have to be posted and post them via FB01. In this case you have to manipulate also the table TABAS and T093D.  But take into acount that this is on your own risk and will not be supported by SAP.
    My personal opinion: Open the periods and run the RAPERB2000 regular.
    Regards Bernhard
    Edited by: Bernhard Kirchner on Nov 29, 2010 12:54 AM

  • My "iTunes won't open"-problem solved!

    Hey guys! With not so much help here from the forums, and with a **** of a luck, my iTunes just started. For the first time in a week and after days of frustrating struggle. I yet again want to thank Rachyl here on the board for helping out. She didn't point out what solved it, but was the only one who wrote in my original thread.
    Original post with lotsa ideas that didn't work found on http://discussions.apple.com/thread.jspa?messageID=1417362
    I don' really know what did it, but here's what happend before the program finally launched:
    - Un-installed QuickTime (Afterwards opened the Microsoft CleanUp thing and QuickTime wasn't in the list btw)
    - Ran the iTunes Installer and chosed repair which installed QuickTime.
    - Double clicked the iTunes icon - The program of course didn't open.
    - Downloaded the Anapod Explorer, furious and beaten. The trial asked for some code do access the iPod which I hadn't (tried an old cracked version so that I'd know if the problem really was software related only - Wouldn't buy the program if it wouldn't work anyway).
    - Uninstalled Anapod without being able to really try it out. Seemed to have som cool features though.
    - Went on this forum to see if anyone had replied. Found my thread on the 11th page, without any news. Was reminded by someone that mentioned House Call, and since my Norton is disabled since a week back, i decided to try it.
    - Trying to surf and chat while the Trend Micro application (House Call) runs. The computer almost freezes completely (5 min to swich windows)
    - Press my on/off button on the computer to force it to swich off. Then I start it immediately and this is were I think the magic happens:
    The computer automatically launches the Check Disk function (CHKDISK). It runs several tests and seem to re-organize some files and modifying corrupt ones including one with "APPLE" and i believe also "ITUNES" in its filename
    - Windows opens, and the first thing that pops up is the iTunes license agreement (because of my reinstall/repair). Then it opens. All music is there, the iPod is immediately recognized and I can access the Music Store.
    ... and I post this thread. Hope it'll help somebody. I wouldn't say it's any parts fault, so I'll blame both Apple and Microsoft!
    I don't know where to activate the CHKDISK manually in Windows, but I'll guess someone of the forum heroes can do that if you are to lazy to look yourself...

    Read the thread.

  • How to fix InDesign CS5 install/program-opening problems the "right" way?

    After my second install of CS5 Design Premium, I was still having all sorts of problems with opening programs. InDesign was especially troublesome and I posted my woes at the bottom of this thread: http://forums.adobe.com/thread/661059?tstart=0
    John Hawkinson (presumably an Adobe employee) kindly replied suggested I start a new thread so he could help me debug properly. So while the iron is hot...I'm ready...let's debug. Can it be done in an hour?
    Other comments from John H.:
    "You should realize that removing the welcome screen plugin is not  supported and can come back to bite you later on. It would be better to  fix it properly. Probably by reinstalling InDesign."

    After about a minute though, the program opened, welcome screen and all...
    Oh dear. Well, then I guess it's not stuck.
    So, we know it's not specific to your customizations from CS3 or otherwise, since it doens't affect your new user. So it's either something about InDesign's installation on your machine, or something about your machine in general.
    I forgot to ask: Do you have any font management software installed? Have you tried disabling it? That has been the source of a variety of problems... One of the things InDesign does at startup is enumerate all the fonts on your system. Do you have a really large number?
    How about any plugins for InDesign or other software that modifies its behavior?
    I am mostly out of ideas. Your Sample Process output is not very informative to me. It looks like it is in the midst of calls to the operating system (all the CF* stuff is Apple's CoreFoundation code), rather than inside InDesign's code itself. Which could implicate...the operating system's font subsystem, graphics subsystem, or, well, almost anything.
    I'm afraid I'm almost out of ideas. It would seem pointless to suggest you replace your preferences, since you started out with a clean user account.
    You can certainly de-install CS5 and run the CS5 Cleaner Tool and then reinstall. No promises that it would work, though, it might just be a waste of your time
    If you're feeling really exciting, the only other thing (other than the above) that I would try would be to go the Activity Monitor, and choose View > Send Signal to Process and choose Abort (SIGABRT). That will force InDesign to crash. The crash report may be a bit more insightful than the call graph from the Sample Process. Though it'll be frozen at an instant in time, so it might not reflect what's going on during the bulk of the rainbow-wheeling. Anyhow, the relevant section is the "Thread 0 Crashed: " portion and the lines that follow until Thread 1.
    I suppose it might be possible to instrument the CoreFoundation calls with dtrace. That's definitely not something I've done and it's probably easier to take out the WelcomeScreen plugin and soldier on. Hopefully something along the way will help before you get that far.
    And of course, you can open an official support case with Adobe...

  • Query opening problem in Bex analyzer

    Hi Gurus,
    I am getting this particular problem when trying to open same query from two different systems.
    I work from my home system on a query and save it and when i try to open the same query through my office system it throws out an error
    " this Query was opened in a higher version or diferent version " . It doesnt allow me to open.
    Please let me know if anyone faced the same problem and how did they solve it?
    thanks
    regards
    satish

    Satish,
    The reason must be one from the below.
    Either the excel version at home is advanced to that of your office,
    or The SAP front- end level may be different.
    Agian if you are working on the same system both at office and at home, it sometimes relates to the servers you logged into and the settings yo have on those servers.

  • Window.opener problem in javascript

    Hi,
    I'm using a code for opening a clild window from the parent window. The child window contains some <input type="file"> elements. After setting the values of these file elements I'm closing the child window. But before closing I want to set the values of file elements to the file elements on my parent window.
    The code I'm using is as follows:
    "parent.jsp"
    =========
    function createWindow() {
    window.open("child.jsp");
    return false;
    <form method="post" action="display.jsp" enctype="multipart/form-data">
    <input type="button" value="Add Attachments" onClick="return createWindow()"><br>
    <input type="file" name="file1"><br>
    <input type="file" name="file2"><br>
    <input type="file" name="file3"><br>
    <input type="submit" value="Submit Form"><br>
    </center>
    </form>
    "child.jsp"
    ========
    function returnToMainWindow() {
    window.opener.document.forms[0].file1.value = document.forms[0].filex.value;
    window.close();
    <form method="post">
    <center>
    <input type="file" name="filex"><br>
    <input type="file" name="filey"><br>
    <input type="file" name="filez"><br>
    <input type="button" onClick="returnToMainWindow()" value="Done">
    </center>
    </form> The problem is when I'm setting the values of file control of child window to the file control of parent window using window.opener, it's unable to set up the values. Can someone rectify the problem in the code.

    It is impossible to set the value of the file input thing. But if they realy want it in a popup, then you can try something like this:
    -1. Put the attatchement list in a iframe
    0. Open the parent file with some with somewhere a unique id (like a session id or something
    1. Open your child page in a popup, give that uniqueid as parameter ("like child.jsp?id=<uniqueId>")
    2. Use regular file input things in that popup, and replace the 'close' button by a submit button
    3. Track the submit of the form, show a 'now uploading to server, please wait' message
    4. The child page sends the attatchements to the server, stored in a tempory folder named <uniqueId> (store it in the form as a hidden input thing)
    5. When the upload is ready, display some message 'files uploaded, close this window to return to your mail'.
    6. When the user clicks that 'close' button, close the popup and then reload the attachment-frame
    7. The attachment-frame just lists the files stored in that <sessionid> folder, and it seems like the user has added those files to it
    If you want i can create an example of it
    koentjepoppe
    note: if you add the date to that unique id, you know when that folder is created and then you know wich folders you have to delete if the user aborts his mail for example (then those files are still in that folder wasting space)

  • File Open Problem. Open in Browser But need in Access

    Dear friends,
    I developed an application in MS-Access and having as "FutureStat.bak" I want this file to be distrubuted over network. So, i placed the file in Stat folder under root folder with an index file which gives a hyperlink to this file.
    If i use tomcat 4.1 it prompts for Open With / Save
    But my company is having Tomcat 5.5 , which opens the file in browser. with some unicode format. I need tomcat to prompt for Open With or Save is there any code for opening ???
    Thanks in Advance,
    Rengaraj

    It's more likely a configuration problem in the server itself, it must be configured to open that format for some reason.
    You could create a download server which reads the file from disk and outputs it to the browser using the content-type "application/octet-stream". That will force a download box. Search this forum, it is asked almost every day.

Maybe you are looking for