Function not found in Library only after Close VI - Open VI

Hi,
We wrote subVI's for all exported functions of a dll written in Borland C++. Then a test.vi was implemented which uses these dll function. Everything runs perfectly, as long as we don't Close the vi and reopen it from the LabView main menu. If we do this the broken run arrow butten is shown and the first error message listed is the Function not found in Library error.
If we use Exit to leave LabView and then restart the test.vi, everything is ok.
Please let me know if you know a solution. Thanks in advance.

The Function not found error is thrown when the OS can't provide the pointer to the function in the library to LabVIEW for some reason. For more information and common solutions see:
http://digital.ni.com/public.nsf/websearch/44E40ACF1644DB77862562990054D672?OpenDocument
The only reason I can think of why the first time it works correctly is that the DLL is not correctly clean-up by the close functions. Thus causing a second request for the pointer to fail due to this. (closing LabVIEW will remove the DLL form memory and thus probably clearing the error).
Hope this Helps
Kind regards,
Karsten
Applications Engineer
National Instruments

Similar Messages

  • Function not found in library? 1127 switch module

    I am trying to control individual relays in an 1127 switch module with a 1331 attached.  Whenever I try to connect to it through the block diagram (or through example programs) I get an error stating "Function not found in library" or sub vi not executable. However when I try to control it from the switch executive front panel it seems to work correctly. When I follow the sub vi error chain I eventually arrive at the library node and I am told to configure it. However when I click configure I get options that are phrased slightly differently than the original sub vi name. How do I get the example code / control over the 1127 installed in an scxi chassis.

    Raaron,
    The SCXI 1127 is a Matrix / Multiplexer card. If we wanted to try to make it function similar to an SPDT, you will limit the number of "SPDTs" you can create. With the 1331 that can only be configured as a multiplexer and essentially used for a single "SPDT" [com(SPDT) = com (Mux), NC(SPDT) = Ch0 (Mux), NO(SPDT) = Ch1 (Mux)] . If you use the 1332 you have a 4x8 Matrix and can make it into 4 "SPDTs" [com(SPDT) = r0(Matrix), NC(SPDT) = c0(Matrix), NO(SPDT) = c1 (matrix)]. Both of these configurations will not really be normally closed, and you would have to configure it in software to close when you are using it.
    If you are looking for a true SPDT I would look at the 1160, 1161 and 1166.
    I am glad that it is working now, but I am still confused as to how you were having SW issues though. Maybe the device was being set up as a Traditional DAQ device and was installed on an OS that does not support Traditional DAQ? Resetting the device [for DAQmx use] may have fixed this? I am unsure without further information.
    Frank,
    National Instruments
    Staff Software Project Engineer

  • Call library function node: function not found in library

    I'm using Labview 6.1 and Windows XP.  I am trying to open some code, but it opens up with a broken arrow.  The error is Call Library Function Node:function not found in library.  Tried to configure the node, but no change.  Moved the DLLs to various directories (keeping them together) but again no change. 
    This code has been compiled and is working fine.  I'm just trying to run the source code to make some modifications.  Any suggestions? 
    Thanks
    CarlosV

    Thanks for the suggestions.  Tried it but had the same results.  The library I'm using is hpe1413_32.dll. 
    One thing I forgot to mention....doing a configure on the node, it comes up with the library: hpvscp32.dll and the function: hpe1413_error_message
    The function doesn't exist in the library.  So I set the path to hpe1413_32.dll which does contain the function. 
    After closing the configuration window and opening it up again, the library shown is hpvscp32.dll
    From what I can tell, there are three libraries involved:hpe1413_32.dll, hpe141332v.dll, and hpvscp32.dll
    Thanks again.
    Carlos

  • Call Library Function - Function not found in library

    Hello,
    I am working with a .dll in LabView 5.1. I finished a little program that should give me the number of CPCI-cards in a PXI-machine. But now i always get the error messages "Call Library Function - Function not found in library". I know it is threated several times bfore on this forum, but i didn't exactly find a sollution that solved my problem.
    The .dll is documented and i can see the function names by opening the .dll with Quick View. I have checked (a hundred times) the names i typed in and they are correct (=equal to manual of .dll and to Quick View, so we can skip that).
    What else could be wrong? What can i do?
    Regards,
    Klaas Engels
    student

    I'm not sure if it's a reason, but once I had the same error. In my case the reason was in that DLL function was actually named with additional suffix letter "A", and then digging through MS documentation I've found an explanation that MS uses desired function with one or another suffix depending on usage contents and data type. Adding that suffix was solved the problem.
    This was not obvios because in DLL description there was no mentions at all and function name was given generally, i.e. without any suffix at all, assuming every user should be MS guru.
    Sergey

  • Function not found in library when I compile .so file in linux

    I am trying to get a driver for a california instruments power supply
    working under Linux. The drivers called DLLs compiled under windows I
    think. When I use those, the DLL could not be opened, so I compiled the
    DLL source under Linux. When I use the nm -g on the .so file, I get a
    list of all of the external functions including the ones I am trying to
    call from Labview, but when I try to run I get "function not found in
    library when I compile .so file in linux" even though I can see the
    function using nm. Is there something special I need to do to this .so
    file so Labview can read it?
    Any help would be greatly appreciated.
    Steiner

    Hello Steve,
    I'm not sure if simply recompiling the source code of the dll will be enough to create a Linux driver. I'm assuming the DLL makes some windows specific calls that are not supported in linux. How were you able to compile it in linux BTW? Did you have to change the code around to make it work?
    Your best bet would be to probably try to find a linux version of the driver from the manufactrurer itself.
    Regards,
    Jack J.
    Applications Engineer
    National Instruments

  • Call a dll for Labview: Function not found in library

    Hello,
    I am trying to call a very simple .dll form Labview. I compiled the .dll for x64 using Visual Studio 2010, because I am using Labview(64-bit). I did everything exactly the way I read it in several Tutorials. But the "Call Library Function Node" doesn't create a popup menu with the avalible functions like it is supposed to do. The Import Wizard doesn't find any functions neither. What is wrong with my .dll?
    I added a block marked 'extern "C" ' into my source file, but it still won't work.
    Thanks
    Matthias
    Solved!
    Go to Solution.
    Attachments:
    DynamicLibrary.zip ‏2452 KB

    You need to define an entry point to the DLL
    BOOL APIENTRY DllMain( HANDLE hModule,
                            DWORD  ul_reason_for_call,
                            LPVOID lpReserved )
        return TRUE;
    Also add extern "C" __declspec(dllexport) to your functions
    More details here: http://www.ni.com/white-paper/3056/en
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • Call library function node - function not found

    When creating a DLL I get a the Labview error "Call Library Function Node "LabviewReceiverDLL.dll:readDataJ1939Data' Function not found. Everything looks correct to me and this used to work, though I've changed computers since then.
    This is the beginning of my C++ code just to show my function name. I've also attached the Call Library Function Window to show my setup.
    Thank you in advance for your help.
    #include"StdAfx.h"
    #include<iostream>
    /* Call Library source file */
    extern"C"__declspec(dllexport)unsignedint readDataJ1939Data(unsignedint, unsignedint, unsignedchar, unsignedchar* canData, unsignedchar* path);
    unsigned int readDataJ1939Data(unsignedint ulTimeStamp, unsignedint ulIdentifier, unsignedchar uiDataCount, unsigned char* canData, constchar* path)
    Solved!
    Go to Solution.
    Attachments:
    Call Library Function.png ‏192 KB

    You mention that you have changed computers and that it used to work before.
    Could it be that there is another (older) copy of the DLL on this computer, and LabVIEW is loading the wrong one?
    The simplest way to check is to close your VI and delete the one you are expecting it to use.  Then open the VI again; if LabVIEW doesn't ask you where the DLL is, it is loading it from somewhere else.
    Batya

  • HT204074 The "Manage Devices" function not found in iTune

    I cannot find the "Manage Devices" function in the iTune Account Information screen.  Any help?

    The Function not found error is thrown when the OS can't provide the pointer to the function in the library to LabVIEW for some reason. For more information and common solutions see:
    http://digital.ni.com/public.nsf/websearch/44E40ACF1644DB77862562990054D672?OpenDocument
    The only reason I can think of why the first time it works correctly is that the DLL is not correctly clean-up by the close functions. Thus causing a second request for the pointer to fail due to this. (closing LabVIEW will remove the DLL form memory and thus probably clearing the error).
    Hope this Helps
    Kind regards,
    Karsten
    Applications Engineer
    National Instruments

  • Drive not found in library database

    Greetings.
    I'm new to OSB and am having tape drive, volume problems.
    File system backups only complete successfully when drive (IBM4_0_0_1_1) is used. When OSB attempts to use other drives in the library it logs the following errors listed in "Transcript".
    I'm running OSB (10.4.0.3.0) on a Linux server (Oracle Linux Server release 6.0) with a SL500 library controller by a ACSLS(8.3.0) server.
    Please advise.
    Transcript:
    2014/04/23.11:44:01 ______________________________________________________________________
      2014/04/23.11:44:01
      2014/04/23.11:44:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:44:01
      2014/04/23.11:44:01 ---
      2014/04/23.11:44:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.11:44:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.11:44:01 drive not found in library database (library manager)
      2014/04/23.11:45:01 ______________________________________________________________________
      2014/04/23.11:45:01
      2014/04/23.11:45:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:45:01
      2014/04/23.11:45:01 ---
      2014/04/23.11:45:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.11:45:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.11:45:01 drive not found in library database (library manager)
      2014/04/23.11:46:01 ______________________________________________________________________
      2014/04/23.11:46:01
      2014/04/23.11:46:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:46:01
      2014/04/23.11:46:01 ---
      2014/04/23.11:46:01 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.11:46:01 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.11:46:01 drive not found in library database (library manager)
      2014/04/23.11:48:01 ______________________________________________________________________
      2014/04/23.11:48:01
      2014/04/23.11:48:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:48:01
      2014/04/23.11:48:01 ---
      2014/04/23.11:48:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.11:48:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.11:48:01 drive not found in library database (library manager)
      2014/04/23.11:49:01 ______________________________________________________________________
      2014/04/23.11:49:01
      2014/04/23.11:49:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:49:01
      2014/04/23.11:49:01 ---
      2014/04/23.11:49:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.11:49:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.11:49:01 drive not found in library database (library manager)
      2014/04/23.11:50:01 ______________________________________________________________________
      2014/04/23.11:50:01
      2014/04/23.11:50:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:50:01
      2014/04/23.11:50:01 ---
      2014/04/23.11:50:01 No volume could be found in SL500 (for drive HP5_0_0_2_3) to use for job admin/83.1.
      2014/04/23.11:50:01 The problem using HP5_0_0_2_3 and the volume it contains, if any, is
      2014/04/23.11:50:01 drive not found in library database (library manager)
      2014/04/23.12:00:01 ______________________________________________________________________
      2014/04/23.12:00:01
      2014/04/23.12:00:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:00:01
      2014/04/23.12:00:01 ---
      2014/04/23.12:00:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.12:00:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.12:00:01 drive not found in library database (library manager)
      2014/04/23.12:01:01 ______________________________________________________________________
      2014/04/23.12:01:01
      2014/04/23.12:01:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:01
      2014/04/23.12:01:01 ---
      2014/04/23.12:01:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.12:01:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.12:01:01 drive not found in library database (library manager)
      2014/04/23.12:01:24 ______________________________________________________________________
      2014/04/23.12:01:24
      2014/04/23.12:01:24 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:24
      2014/04/23.12:01:25 ---
      2014/04/23.12:01:25 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.12:01:25 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.12:01:25 drive not found in library database (library manager)
      2014/04/23.12:04:01 ______________________________________________________________________
      2014/04/23.12:04:01
      2014/04/23.12:04:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:04:01
      2014/04/23.12:04:01 ---
      2014/04/23.12:04:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.12:04:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.12:04:01 drive not found in library database (library manager)
      2014/04/23.12:05:01 ______________________________________________________________________
      2014/04/23.12:05:01
      2014/04/23.12:05:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:01
      2014/04/23.12:05:01 ---
      2014/04/23.12:05:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.12:05:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.12:05:01 drive not found in library database (library manager)
      2014/04/23.12:05:21 ______________________________________________________________________
      2014/04/23.12:05:21
      2014/04/23.12:05:21 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:21
      Backup started on Wed Apr 23 2014 at 12:05:51
      Volume label:
      Volume tag: LEV018
      Volume UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Volume ID: mf_2min-000025
      Volume sequence: 1
      Volume set owner: root
      Volume set created: Wed Apr 23 12:05:51 2014
      Volume set expires: Wed Apr 23 12:07:51 2014
      Media family: mf_2min
      Original UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Archive label:
      File number: 1
      File section: 1
      Owner: root
      Client host: x4440a
      Backup level: 0
      S/w compression: no
      Archive created: Wed Apr 23 12:05:51 2014
      Encryption: off
      Dumping all files in /etc
      Backup complete on Wed Apr 23 2014 at 12:06:03
      Backup statistics:
      status 0
      devices IBM4_0_0_1_1
      devices 1
      volumes mf_2min-000025
      voltags LEV018
      file 1
      host x4440a
      encryption off
      start_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      end_time Wed Apr 23 2014 at 12:06:06 (1398276366)
      backup_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      entries_scanned 3373
      kbytes_scanned 40556
      entries_excluded 0
      entries_skipped 0
      mount_points_skipped 0
      files 2047
      directories 315
      hardlinks 0
      symlinks 1011
      sparse_files 0
      filesys_errors 0
      unknown_type 0
      file_kbytes 39264
      dev_kbytes 35977
      dev_iosecs 2
      dev_iorate 18.4 MB/S
      wrt_iosecs 15
      wrt_iorate 2.5 MB/S
      physical_blks_written 1102
      write_errors 0
      physical_blks_read 2
      read_errors 0
      error_rate 0%
      path /etc completed, status 0
    [root@x4440a backup]# obtool lsdev -lvg
    SL500:
         Device type:            library (ACSLS)
         In service:             yes
         Debug mode:             no
         Barcode reader:         yes
         Barcodes required:      yes
         Unload required:        yes
         Ejection type:          auto
         Min writable volumes:   0
         UUID:                   e0b58224-a1a4-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             ACSLS server:       v215f
             ACSLS port:         0
             ACS id:             0
             ACSLS access id:    acsss
         Reservation 1:
             Component:          obacslibd
             Host:               x4440a
             Process:            32195
         Element counts / addresses:
            10 mte: 1 - 10
           281 se : 1 - 281
             1 iee: 1
             1 dte: 1
         Moves:
            From mte, to: mte 0   se 0   iee 0   dte 0
            From  se, to: mte 0   se 0   iee 1   dte 1
            From iee, to: mte 0   se 0   iee 0   dte 0
            From dte, to: mte 0   se 1   iee 0   dte 0
         Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=0, unload_any=1, sense_dev_range=0
         State of barcode reader: enabled
    IBM4_0_0_1_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            14 minutes, 58 seconds
         UUID:                   179eb954-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg18
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD4
             Firmware:           C7Q0
             Serial number:      1310127325
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_2_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   7498ff66-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg16
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1168002114
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP6_0_0_3_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  3
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   cd20d3fc-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg21
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 6-SCSI
             Firmware:           J39S
             Serial number:      HU1233PPNN
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_1_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   5b6cf420-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg15
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1068002447
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP4_0_0_2_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   8bd3659a-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg13
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 4-SCSI
             Firmware:           H64S
             Serial number:      HU1803168E
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_3:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  3
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   9ee7dbd4-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg23
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NFE
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_4:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  4
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   b45b889e-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg24
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NBF
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    [root@x4440a backup]#
    [root@x4440a backup]# obtool lsvol -L SL500 -l
    Inventory of library SL500:
         in    1:             barcode F50216, oid 100
         in    2:             barcode I50116, oid 101
         in    3:             barcode LEV008, oid 102, mediainfo hw encryptable
         in    4:             barcode LEV010, oid 103, mediainfo hw encryptable
         in    5:             barcode LEV017, oid 104, mediainfo hw encryptable
         in    6:             volume mf_2min-000025, barcode LEV018, oid 155, 781232128 kb remaining, expired, mediainfo hw encryptable
         in    7:             barcode LEV049, oid 106
         in    8:             barcode LEV058, oid 107
         in    9:             barcode PQ4196, oid 108
         in    10:            barcode PQ4883, oid 109
         in    11:            barcode S50282, oid 110
         in    12:            barcode S50290, oid 111
         in    13:            barcode S50291, oid 112
         in    14:            barcode S50292, oid 113
         in    15:            barcode S50300, oid 114
         in    16:            barcode S60111, oid 115
         in    17:            barcode S60113, oid 116
         in    18:            barcode SF6410, oid 117
         in    19:            barcode SF6411, oid 118
         in    20:            barcode SF6412, oid 119
         in    21:            barcode SF6413, oid 120
         in    22:            barcode SF6414, oid 121
         in    23:            barcode SF6416, oid 122
         in    24:            barcode SF6417, oid 123
         in    25:            barcode SF6418, oid 124
         in    26:            barcode SF6419, oid 125
         in    27:            vacant
         in    28:            vacant
         in    29:            vacant
         in    30:            vacant
         in    31:            vacant
         in    274:           vacant
         in    275:           vacant
         in    276:           vacant
         in    277:           vacant
         in    278:           vacant
         in    279:           vacant
         in    280:           vacant
         in    281:           vacant
         in    iee:           vacant
         in    dte:           vacant
    [root@x4440a backup]#

    Rich
    Thanks for your response.
    ACSLS is part of the configuration requirements I need to have in this OBS environment.
    I'm going to re install OBS just to see if anything changes.
    Thanks again.
    Update:
    When configuring devices in OSB that are ACSLS in nature it is a requirement to restart the obacslibd after mkdev or certain chdev commands are preformed.
    After the daemon was restarted I was able to use the attached tape drives.

  • Library not Found: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit

    Hello all,
    I am working with a MacBook purchased in 2009, OSX 10.6.8, processor: 2.13 GHz Intel Core 2 Duo, Memory: 2 GB 800 MHz DDR2 SDRAM.
    I recently downloaded and tried to install a game I had previously successfully installed from Gamehouse.com. The download goes fine, when I open the .dmg file the correct window pops up with an icon to double-click to start installation. At that point I receive an error message (see below). I contacted Gamehouse and ran through a number of solutions they gave me, including uninstalling and removing all traces of this or any other game from my computer (including .plist files), installing any available updates (iTunes finally got that update I've been postponing for months...), and dragging the installer icon into various different locations before opening. All to no avail.
    It appears to me the issue is this line in the error message: "Library not Found: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit"
    I checked the Frameworks folder and there is nothing there called StoreKit.framework, so that seems to make sense. It isn't anywhere else in the computer either. After a quick google I found this problem pops up now and then - there is one other question on the same issue in this forum, but I have no idea if the solution given there works, as the original poster never came back. Their suggestion was to try reinstalling Just OSX from the boot disc. I haven't attempted this yet - I thought I'd see if I can get any input before going that route.
    Thank you for any advice. Here is the full error report:
    Process:         Delicious - Emily's Wonder Wedding [349]
    Path:            /Applications/Delicious - Emily's Wonder Wedding Premium Edition.app/Contents/MacOS/Delicious - Emily's Wonder Wedding
    Identifier:      com.mrgoodlivng.delicious8.mac
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [91]
    Date/Time:       2014-08-10 14:33:56.929 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          201860 sec
    Crashes Since Last Report:           18
    Per-App Crashes Since Last Report:   21
    Anonymous UUID:                      750B56F7-4793-44CA-847D-5A35F9F8DABC
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
      Referenced from: /Applications/Delicious - Emily's Wonder Wedding Premium Edition.app/Contents/MacOS/Delicious - Emily's Wonder Wedding
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    Model: MacBook5,2, BootROM MB52.0088.B06, 2 processors, Intel Core 2 Duo, 2.13 GHz, 2 GB, SMC 1.38f5
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHZ2160BH FFS G1, 149.05 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS22N
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0229, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    That file is a OS X system file, you'll have to overwrite OS X with a new copy to restore it.
    First things first
    Emergency backup procedure
    Drag and drop copy your users file folders (music, pictures, documents etc) to a regular external powered drive as soon as possible.
    Do not use, setup or trust only TimeMachine at this troubled time as it will copy corrupted data and we need just your users files safe just in case. TimeMachine cannot be used with a Windows PC.
    Unmount and Disconnect all external drives once the backup process is completed.
    Note:
    If you have any over 4GB sized files, those won't copy to a standard formatted FAT32/MSDOS drive from the factory, if you need to save these 4GB+ files use another blank/empty drive and use Disk Utility to format it 1 Partition, Option: GUID,  Format: OS X Extended Journaled (or the standard default one for older Mac's).
    Mac's cannot copy to nor format a NTFS  drive. ExFAT format to be used with a Windows machine must be right click formatted by Windows, not OS X (does it wrong) XP machines can install a free exFAT update from Microsoft. Vista-Win 8 can format exFAT.
    Formatting a drive will erase all data on it.
    Once your files are safely copied off the machine, next run through this list of fixes, I suspect #8 Reinstall Just OS X + Software Updating fully should restore the broken/missing file.
    ..Step by Step to fix your Mac
    Overwriting OS X with a new copy does not delete most programs or users files, but you backup your users files regardless as it might be something more than we currently know at this time.

  • Automation error element not found in vb6 2147319765 after upgrading the os

    Hi we had updated our OS to windows 7 from XP.Previously we had an application in XP which is built on Vb 6 .The application throws an error message like Automation error --element not found with error code 2147319765 .The application shows the same error
    message even after I ran the application in XP compatability mode.
    The application is using data from other servers and all the servers are windows server 2003.
    muneer

    Double post:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/229b4e46-9bcb-411e-901e-fec376dc36da/automation-error-element-not-found-in-vb6-2147319765-after-upgrading-the-os
    This forum is about VB.Net. If your question is about a VB6 project, have a look here:
    Where to post your VB 6 questions
    Armin

  • HELP"apple application support not found when installing itunes after a hard drive crash and replace

    HELP"   error "apple application support not found" when downloading itunes after a hard drive crash and replacement????

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Can't install Acrobat form cs6 diskete: I get this error: Exit Code: 6 - ARKSelector.dylib not found at /Library/Application Support/Adobe/DECor

    How an I get around this error when I try to install Acrobat form CS-6 Design & Web Premium CD on my Mac air?
    Exit Code: 6 - ARKSelector.dylib not found at /Library/Application Support/Adobe/DECor
    HELP!

    Errors "Exit Code: 6," "Exit Code: 7"
    Mylenium

  • PLEASE help..class function not found..

    I am writing a simple email validation and I get a TON of errors.
    1) is Class function not found. on - function validateEmail();
    2) and 11 Undefined variable or class name: document .
    The code is listed below -
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <%
    function validateEmail();
    if (document.forms[0].EMAIL_ADDRESS.value.length != 0)
    if ( (document.forms[0].EMAIL_ADDRESS.value.indexOf("@") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == "@") ||
    (document.forms[0].EMAIL_ADDRESS.value.length < 6) ||
    (document.forms[0].EMAIL_ADDRESS.value.indexOf(".") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")+1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")-1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ' ') )
    alert ("Please enter valid email address");
    document.forms[0].EMAIL_ADDRESS.focus();
    document.forms[0].EMAIL_ADDRESS.select();
    return false;
    else
    return true;
    %>
    </head>
    -- lots of input fields with the last being -
    <input type="text" name=EMAIL_ADDRESS onBlur="validateEmail();"></td>
    ????

    When I remove tags <% %> all of the function ends up in html and thus on my page.
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <%
    function validateEmail();
    if (document.forms[0].EMAIL_ADDRESS.value.length != 0)
    if ( (document.forms[0].EMAIL_ADDRESS.value.indexOf("@") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == "@") ||
    (document.forms[0].EMAIL_ADDRESS.value.length < 6) ||
    (document.forms[0].EMAIL_ADDRESS.value.indexOf(".") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")+1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")-1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ' ') )
    alert ("Please enter valid email address");
    document.forms[0].EMAIL_ADDRESS.focus();
    document.forms[0].EMAIL_ADDRESS.select();
    return false;
    else
    return true;
    %>
    </head>
    <body bgcolor="powderblue">
    <Form Name="My Form" Action=userInfoInsert.jsp Method=Post>
    <table border="0" width="100%">
    <tr>
    <td width="100%">
    <table border="0" width="100%">
    <tr>
    <td width="41%">First Name     <input type="text" name=FIRST_NAME ></td>
    <td width="59%">Last Name
    <input type="text" name=LAST_NAME ></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%">Address         
    <input type="text" name=Address ></td>
    </tr>
    <tr>
    <td width="100%">Address         
    <input type="text" name=Address ></td>
    </tr>
    <tr>
    <td width="100%">
    <table border="0" width="100%">
    <tr>
    <td width="32%">City            
       <input type="text" name=CITY size=10></td>
    <td width="18%">State
    <input type="text" name=STATE size=5></td>
    <td width="50%">Zip Code
    <input type="text" name=ZIP_CODE size=10 ></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%">Phone #         
    <input type="text" name=PHONE size="15" ></td>
    </tr>
    <tr>
    <td width="100%">SSN              
    <input type="text" name=SSN size="17" ></td>
    </tr>
    <tr>
    <td width="100%">
    <table border="0" width="100%">
    <tr>
    <td width="41%">Hint Question <input type="text" name=FIRST_NAME ></td>
    <td width="59%">Hint Answer <input type="text" name=LAST_NAME ></td>
    </tr>
    </table>
    </tr>
    <tr>
    <td width="100%">User Name     <input type="text" name=USER_NAME ></td>
    </tr>
    <tr>
    <td width="100%">Password        <input type="text" name=PASSWORD ></td>
    </tr>
    <tr>
    <td width="100%">Re-Password  <input type="text" name=RE_PASSWORD ></td>
    </tr>
    <tr>
    <td width="100%">Email Address
    <input type="text" name=EMAIL_ADDRESS onBlur="validateEmail();"></td>
    </tr>
    </table>
    <INPUT type=Submit Value=Submit>
    </form>
    </body>
    </html>

  • ITunes purchased music not found in library

    Hi there, maybe someone can help me, I'm having MANY annoying problems with my itunes both before and after the 2015 update.  Problems with both music purchased directly from iTunes and from cd uploaded music.  Main concern is inaccessible music purchased from iTunes:
    *The other day, I noticed about 1500 songs from my library would not play within the iTunes program.  These are from previously uploaded CD's and mp3's, and then I noticed also iTunes music, when attempting to play would give the error "unable to locate file/locate now".  Sure I guess I can re-upload the hundreds of CD's (sigh), but I'm mostly concerned about the inaccessible music I bought and paid for from Apple.
    I tried some online research and found the Account Tab->Purchased within iTunes desktop program, to re-download...however this didn't  fix the problem because some of the iTunes purchased songs having the "no-play/can't locate" issue were not showing up as "Not in My Library"... And it appears you can only re-download with the cloud button, music that isn't already in your library.  But when you go to play them you get the error message and it shows an exclamation point by the check mark box.  Some of these inaccessible songs however, will play on my iPhone and some will not.
    *Next issue, I also cannot locate MANY of these iTunes purchased songs/albums on my hard drive either (I am using a windows 8 computer). Very frustrating when music I bought from Amazon is saved securely to my hard drive and is also playable on ITUNES.  Apple's music won't even play on their own friggin program, but Amazon mp3's will???
    *Next issue.  I applied the new updates to my phone and my iTunes program hoping to correct the issues.  This did nothing.  I opted NOT to use Cloud at the moment for privacy concerns.  Could this be adding to the issue with the iTunes music?
    I also have over 100 songs that want to be re-downloaded from the iTunes application on my phone in order to allow those tracks to be available on my phone.  I went from my phone into iTunes->More->Purchased->Music to find these.  Do I have to go through each artist individually to re-download them all?
    As you can see, getting very frustrated with Apple and their constantly malfunctioning softwares.  Is this an issue I need to take with me to the Apple store?  I went in before for iTunes issues and they said they wouldn't help me because I'm not using a Mac computer but a PC and they don't help people that use PC's, even though my iPhone5S and hundreds of iTunes tracks are from THEM.  Should I just throw in the towel and buy a Samsung next time? Spending my whole day trying to figure this stuff out when it should be accessible being that I already PAID for all of this music, such awful software, jeeze louise.

    Hello JackieVall213,
    Thanks for using Apple Support Communities.
    From your post I understand that your purchased music has not downloaded automatically after pre-ordering an album.  Please take a look at the information below on how to download pre-orders from iTunes if you do not have automatic downloads enabled.
    Download a pre-ordered item
    When a pre-ordered item becomes available, you will receive an email letting you know that you can download your pre-order.
    If you enabled the option to automatically download prepurchased content in iTunes, then your pre-ordered content may already be in your library. If not, click the download link provided in your email notification, and your pre-ordered content will begin to download. You can also use the Check for Available Downloads feature in iTunes on your computer (choose Store > Check for Available Downloads) to begin downloading your pre-order.
    iTunes Store: About pre-orders - Apple Support
    Enable Automatic Downloads - Apple Support
    Take care,
    Alex H.

Maybe you are looking for

  • Forms-APP

    Experts:- 1.In automatic payment programme when we payment chek thru APP, at that time what type of payment forms we can use in the real times. 2.when we make the chek payment thru APP for  vendor ,How know the information to sent to the  Check to th

  • UCCX presented, Abandoned & handled calls

    Hi All, I need to submit exact count for  UCCX presented, Abandoned & handled calls to my management, But in UCCX historical reporting, I found diffeernt total number for total presented, Abandoned & handled calls for same durration, Kindly suggest w

  • Is your printer connected

    Adobe documents won't print.   I'm so cross I could bite the dog.  I have recently updated the adobe reader to 8.3.1, Im running windows xp and have an awesome old printer Hp deskjet 880c.  Everything has been tickety boo until I did the latest upgra

  • Setting break lines

    Hi all I want to know how to insert a blank line between the first line of column labels and lines of column values in a group-left report . And is it also possible to break line between each result set records ? Thank you.

  • ORDERS05 issue with segment E1EDK36

    Hi, I'm trying to update an existing order with payment card information. In order to do so, I fill the segment E1EDK36: CCINS : valid payment card type CCNUM : valid credit card number EXDATBI : expiration date For some reason however, the processin