Calling PASCAL library

Hi,
I seems to can't access to this library file,
anyone can help me with this?
I'm a Labview user, I try to use the call library vi
but the list of functions just don't come out.
SL Ong
Websuite Solutions
Attachments:
IBS_PD.zip ‏13 KB

Hey SL Ong,
    Have you tried specifying the functions yourself?  Here is another discussion forum post discussing using dlls in LabVIEW, and here is the link it references on how to use dlls.  Please post back with more questions or problems.  Thanks!!
Brian B
Field Sales Engineer
Tennessee/Southern Kentucky
National Instruments

Similar Messages

  • I have 2 photo albums on my iPhone that i want to delete. One is called "Photo Library" the other is called "iPhonePics". I cannot delete any of the photos in either album. How do I delete the photos and/or the albums?

    I have 2 photo albums on my iPhone that i want to delete. One is called "Photo Library" the other is called "iPhonePics". I cannot delete any of the photos in either album. How do I delete the photos and/or the albums?

    You can uncheck multiple songs by selecting all the songs you want to uncheck, then right-click and choose "uncheck selection".  Also, make sure that you have checked "Sync only checked songs and videos" on the Summary tab of your iTunes sync settings or the sync process will ignore your selections.
    You can remove all the photos from your camera roll using Preview on your Mac.  Connect your phone to your Mac, open Preview, go to File>Import from iPhone.  When your photos appear in Preview, select the photos you want to delete, then click on the icon at the bottom showing the red circle with the diagonal line through it (see image below), then click Delete.
    To remove photos from the Photo Stream album on your phone you'll have to either reset Photo Stream (deleting all the photos from iCloud) or turn off Photo Stream on your phone.

  • Call Custom Library built in type is not available in form personalization.

    Hello All,
    In our Vision instance(EBS 11.5.10.2 Dev 6i Patchset 15) Call Custom Library built in type is not available in form personalization..
    Please suggest

    probably wiser to post this in the E-Business forum
    General EBS Discussion
    your welcome

  • So I had pictures in an album called photo library and when i backed up my iphone to my computer, the pictures disappeared from my phone. They were pictures that had originally been transferred from my blackberry to my iphone

    I had pictures that I transferred from my blackberry to my iphone and they were in an album labeled photo library. my phone needed to be replaced so I backed it up to my computer and now my photos are gone. The camera roll pictures are still there but my 800 photos from my blackberry are gone. does anyone know where i can recover them from? are they gone forever? any help would be much appreciated. thank you

    I transferred my photos (I cant recall how i did) from my old blackberry to my new iphone.
    Okay.
    i also imported the photos to iphoto but it was only the pictures from the last six months (camera roll).
    Okay.
    I dunno if this information is useful but the photos im trying to recover were in an album called photo library and they were permanent and couldnt be edited or deleted on the iphone.
    These photos were never on your Mac. iPhoto only imports from the Camera Roll. You'd have needed to use a 3rd party app to get any other photos from your phone.
    Regards
    TD

  • Calling a library function node much faster than labview code?

    Hi,  I wrote a labview routine to perform a multiple tau autocorrelation on a large array of integers.  A multi tau autocorrelation is a way to reduce the computation time of the correlation but at the expense of resolution.  You can taylor the multitau correlation to give you good resolution where you need it.  For instance, I require good resolution near the middle (the peak) of the correlation, so I do a linear autocorrelation for the first 64 channels from the peak, then I skip every second channel for the next 32, then skip every 4th channel for 32 more, then skip every 8th for 32 channels... etc.
    Originally, I wrote my own multitau calculation, but it took several hours to perform for just 1024 channels of the correlation of around 2million points of data.  I need to actually do the the correlation on probably 2 billion or more points of data, which would take days.  So then I tried using labview's AutoCorrelation.vi which calls a library function.  It could do a linear autocorrelation with 4 million points in less than a minute.  I figured that writing my code in C and calling it using a call library function node would be faster, but that much faster?
    Finally, I wrote some code that extracts the correlation data points that I would've got from my multitau code from the linear correlation function that I get from the AutoCorrelation.vi.  Clearly this is not optimal, since I spend time calculating all those channels of the correlation function just to throw them away in the end, but I need to do this because the final step of my procedure is to fit the correlation function to a theoretical one.  With say 2million points, the fit would take too long.  The interesting thing here is that simply extracting the 1024 point from the linear autocorrelation function takes a significant amount of time.  Is labview really that slow?
    So, my questions are...  if I rewrite my multitau autocorrelation function in C and call it using a call library function node, will it run that much faster?  Can I achieve the same efficiency if I use a formula node structure?  Why does it take so long just to extract 1024 points from an array?
    I've tried hiding indicators and this speeds things up a little bit, but not very much.
    I'll attach my code if you're interested in taking a look.  There is a switch on the front panel called 'MultiTau'... if in the off position, the code performs the linear autocorrelation with the AutoCorrelation.vi, if in the on position, it performs a multitau autocorrelation using the code I wrote.  Thanks for any help.
    Attachments:
    MultiTauAutocorrelate.vi ‏627 KB

    Hi,
    The C routine that AutoCorrelation.vi is using is probably a higly optimised routine. If you write a routine in LabVIEW, it should be less then 15% slower. But you'd have to know all ins and outs of LabVIEW. How data is handled, when memory is allocated, etc. Also note that the AutoCorrelation.vi has years of engineering behind it, and probably multiple programmers.
    It might even be possible that the c code uses an algorithmic improvement, like the Fast Fourier Transform improves speed on the Fourier Transform. I think the autocorrelation can be done using FFT, but that isn't my thing, so I'm not sure.
    For a fair comparation, posting the code in this forum was a good idea. I'm sure together we can get it to 115% or less of the C variant. (15/115 is just a guess, btw)
    I'm still using LV7.1 for client compatibility, so I'll look at the code later.
    Regards,
    Wiebe.
    "dakeddie" <[email protected]> wrote in message news:[email protected]...
    Hi,&nbsp; I wrote a labview routine to perform a multiple tau autocorrelation on a large array of integers.&nbsp; A multi tau autocorrelation is a way to reduce the computation time of the correlation but at the expense of resolution.&nbsp; You can taylor the multitau correlation to give you good resolution where you need it.&nbsp; For instance, I require good resolution near the middle (the peak) of the correlation, so I do a linear autocorrelation for the first 64 channels from the peak, then I skip every second channel for the next 32, then skip every 4th channel for 32 more, then skip every 8th for 32 channels... etc. Originally, I wrote my own multitau calculation, but it took several hours to perform for just 1024 channels of the correlation of around 2million points of data.&nbsp; I need to actually do the the correlation on probably 2 billion or more points of data, which would take days.&nbsp; So then I tried using labview's AutoCorrelation.vi which calls a library function.&nbsp; It could do a linear autocorrelation with 4 million points in less than a minute.&nbsp; I figured that writing my code in C and calling it using a call library function node would be faster, but that much faster?Finally, I wrote some code that extracts the correlation data points that I would've got from my multitau code from the linear correlation function that I get from the AutoCorrelation.vi.&nbsp; Clearly this is not optimal, since I spend time calculating all those channels of the correlation function just to throw them away in the end, but I need to do this because the final step of my procedure is to fit the correlation function to a theoretical one.&nbsp; With say 2million points, the fit would take too long.&nbsp; The interesting thing here is that simply extracting the 1024 point from the linear autocorrelation function takes a significant amount of time.&nbsp; Is labview really that slow?So, my questions are...&nbsp; if I rewrite my multitau autocorrelation function in C and call it using a call library function node, will it run that much faster?&nbsp; Can I achieve the same efficiency if I use a formula node structure?&nbsp; Why does it take so long just to extract 1024 points from an array?I've tried hiding indicators and this speeds things up a little bit, but not very much.I'll attach my code if you're interested in taking a look.&nbsp; There is a switch on the front panel called 'MultiTau'... if in the off position, the code performs the linear autocorrelation with the AutoCorrelation.vi, if in the on position, it performs a multitau autocorrelation using the code I wrote.&nbsp; Thanks for any help.
    MultiTauAutocorrelate.vi:
    http://forums.ni.com/attachments/ni/170/185730/1/M​ultiTauAutocorrelate.vi

  • Calling a library which is compiled in 1.3.1 in 1.4.2_06

    Hello
    I have an library (LIBRARY) which is create some db connections and Corba connections behind it . this library compiled in JSDK 1.3.1
    I have an code (CODE) which call this library's methods
    If � compile CODE in 1.3.1 there �s no problem
    but when � comp�le �t �n 1.4.2_06 I am gett�ng errors on run t�me.
    LIBRARY �s uses some jars wh�ch are also comp�le �n 1.3.1
    How can i solve this problem
    Please Help Me
    King Regards...

    Error Message is as follows.
    D:\OraBPELPM_1\jdk\bin\javaw.exe -server -classpath D:\OraBPELPM_1\integration\jdev\jdev\mywork\SDPATest\SIMGO\classes;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\AremisApi.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\classes12.zip;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\jdom.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\lm.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\SimgoClient.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\SimgoClientLanguages.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\SUTClientAPI.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\SUTClientNSAPI.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\tibcoAdapter.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\vbjorb.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\vbsec.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\xercesImpl.jar;D:\OraBPELPM_1\integration\jdev\jdev\lib\vb\xml-apis.jar -DORBpropStorage=../config/client.properties -DSVCnameroot=10.200.145.28 mypackage1.TestSimgo
    java.lang.VerifyError: class org.omg.PortableServer.AdapterActivatorPOA overrides final method .
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at com.inprise.vbroker.orb.ORB.adapterManager(ORB.java:1493)
         at com.inprise.vbroker.ds.DSUser.<init>(DSUser.java:301)
         at com.inprise.vbroker.ds.Init.init(Init.java:20)
         at com.inprise.vbroker.orb.ORB.initializeServices(ORB.java:1307)
         at com.inprise.vbroker.orb.ORB.initialize(ORB.java:1093)
         at com.inprise.vbroker.orb.ORB.set_parameters(ORB.java:1325)
         at org.omg.CORBA.ORB.init(ORB.java:337)
         at com.slb.aremis.common.ORBSingleton.getORB(ORBSingleton.java:32)
         at com.slb.aremis.common.ServerConnection.pollJvm(ServerConnection.java:274)
         at com.slb.aremis.common.ServerConnection.corbaInit(ServerConnection.java:241)
         at com.slb.aremis.common.ServerConnection.<init>(ServerConnection.java:156)
         at com.slb.aremis.common.ServerConnection.getInstance(ServerConnection.java:165)
         at com.slb.aremis.common.ServerProxy.<init>(ServerProxy.java:122)
         at com.slb.aremis.common.ServerProxy.newInstance(ServerProxy.java:103)
         at com.slb.aremis.security.authentication.AuthApiImpl.<init>(AuthApiImpl.java:169)
         at com.slb.aremis.security.authentication.AuthApiProxy.<init>(AuthApiProxy.java:83)
         at com.slb.aremis.security.authentication.AuthApiProxy.newInstance(AuthApiProxy.java:48)
         at com.slb.aremis.common.AremisApi.<init>(AremisApi.java:82)
         at com.axalto.provisioning.connection.AremisMng.<init>(AremisMng.java:122)
         at com.axalto.provisioning.tibcoAdapter.SubscriberMng.init(SubscriberMng.java:168)
         at com.axalto.provisioning.tibcoAdapter.SubscriberMng.<init>(SubscriberMng.java:111)
         at com.axalto.provisioning.tibcoAdapter.SubscriberMng.getInstance(SubscriberMng.java:220)
         at mypackage1.TestSimgo.main(TestSimgo.java:30)
    Exception in thread "main" Process exited with exit code 1.

  • C-style variable arg list handling in Call To Library VI?

    I have Labview 6.0 on a Windows 2000 PC and I have a DLL with routine that I am trying to call in a VI. I am using the Call Library Function VI to call this routine. My problem is this. The routine uses a C-style variable argument list (like the printf function). In other words, the routine can accept any number of arguments and will decide how many of those arguments to process and what those arguments mean based on the values of the arguments.
    Is there a way to handle such variable argument lists in Labview, or do I have to create a different VI for each possible argument list length?

    Thanks. So, just to double check, the only way to work with a DLL routine that can have arbitrary numbers of arguments is to guess ahead of time how many arguments there will be and create the appropriate number of terminals? I have a related question which you might be able to answer. I've noticed that some VIs offer a "add terminal" contextual menu option. If wanted to create a wrapper VI for a Call to Library Function VI that calls on a variable argument function and handles some intermediate processing, could I give such a VI a "add terminal" option? If so, how do I manage added terminals within the wrapper VI?
    Thanks,
    Neal

  • Got error when call standard library in form personalizations

    There is a standard library OEXOEFRM attached to from OEXOEORD. Now I tried to call a procedure in libary with form personalizations, but got failed.
    Action: Builtin
    Builtin type :execute procedure
    Argument: begin OE_SCHEDULE_ACCESS.SET_SCHEDULE_ACTION ('para1','para2'); end
    When 'apply now', got the error "....could not be evaluated becuase of error ORA-06550: line 3, column 1: PLS-00201:'OE_SCHEDULE_ACCESS.SET_SCHEDULE_ACTION' must be declared.
    My question is how to call form library procedure in form personalizations? What builtin type should be used and any extra steps need to be done?
    Is there any documents on oracle metalink specific to this issue?
    Thank you very much for your help.

    Forms personalization is described in detail in ML Note 279034.1.
    Limitations of personalizations are in note 420518.1
    HTH
    Srini Chavali

  • ITunes 7 calls my library invalid

    after upgradeing to itunes 7 i got this message
    the file "iTunes Library" does not appear to be a valid iTunes library file. iTunes has attempted to recover your iTunes library and renamed this file to "iTunes library (damaged)"
    this deleated over 1000 of my songs... which i backed up so it's not really alost... but whats wrong with my old library and will it happen again
    also now when playing songs on iTunes i hear a clicking sound from my speakers. its not the speakers cause it only happens when i'm playing iTunes

    ok i just discovered somthing rather interesting
    all this time after iTunes said my library was damaged i was trying to re upload all my songs from out side sources (DVDs External HD etc) and eventually i was being informd that i was running out of space on my HD.
    in my KAT>MUSIC>iTUNES>iTUNES MUSIC folder...all my songs are there... undamaged and i was able to simply copy them back to iTunes from there.... file folder by file folder.... brought back almost 8000 songs so my total in iTunes library was up too about 10,000.
    then as i was re nameing some of the files in itunes (deleteing some copies etc) iTunes shut down. when i restarted it, it said once again... "your iTunes Library is invalid.... we are retriveing your library and calling the old library iTunes Library (Damaged) 1" when i opened iTunes i was back down to 2000 songs
    so now in my KAT>MUSIC>iTUNES folder there is...
    iTunes Library 4MB
    iTunes Library (damaged) 13MB
    iTunes Library (damaged)1 15MB
    and in my KAT>MUSIC>iTUNES>iTUNESMUSIC folder there are all my songs
    why does it keep calling my library invalid and should i even bother re-copying the songs to iTunes. should i delete the (damaged) libraries that are takeing up so much space in the HD

  • Java call C library?

    hi, please anyone know use java code call c library in dll format. can anyone show me the code. please.
    java code load C dll library?

    Java can call C++ DLLs using JNI:
    http://www-128.ibm.com/developerworks/edu/j-dw-javajni-i.html
    %

  • When syncing my iphone it loaded photos from my PC onto my phone and created another photo album called Photo Library and I cant delete them

    When I synced my iphone4 it downloaded some photos from my PC onto my phone and created a new album called Photo Library.  I cannot delete these photos on my phone.  I have tried another sync and made sure that the photo sync box was not ticked.  It asked me if I wanted to delete previously downloaded photos off my phone and I said yes but it did not delete them.

    I may have misread your post.  If you are trying to remove the photos synced from your computer you should be able to do this by unchecking Sync Photos on the Photos tab and syncing.  If you did this and the photos are still there then something failed.  You might try rechecking Sync Photos, syncing, then uncheck Sync Photos and syncing again to see if it works this time.

  • Dynamic call to Library procedure.

    I am having a pll which has three procedures.
    I want to call a procedure in that library whose name is decided at form runtime.
    Any idea on how this can be done.
    Regards
    Kaustubh

    <p>If the code can be stored in a database procedure/function, you could use the EXECUTE IMMEDIATE database side instruction to handle dynamic SQL orders.</p>
    Francois

  • Handler called in library can only used passed variables?

    I have been redoing a 3000-line program to put handlers in an assortment of libraries.
    I've been getting a lot of variable undefined errors after calls to the handlers in the library.
    Previously, I declared global variables and the handlers, when they were in the same script, had no problem with them.
    Global variables do not seem to include handlers in called libraries as part of their scope.
    In fact, I can't even Set a new variable in one of these handlers, unless it has first been passed as a parameter in the handler call.
    For example, variable var1 in handler HandyHandler
    set var1 to 1
    results in a variable undefined error unless I call the handler:
    HandyHandler(var1)
    thus passing the variable from the main script.
    This is more than a little awkward.
    Is my perception correct:  all variables in a handler must be defined in the calling script and passed as parameters?

    Hello
    It's hard to make advice without seeing actual codes. The boiled down essential version to demonstrate the problem would suffice. Also it might help to read the examples and explanations in the following threads.
    Externalise functions into a library
    https://discussions.apple.com/thread/5116224?tstart=0
    tell/scoping problem
    https://discussions.apple.com/thread/2477010?start=0&tstart=0
    Re: re: my parent
    https://discussions.apple.com/message/11852193
    Regards,
    H
    Message was edited by: Hiroto (fixed the last link, but it still may not work...)

  • Java Application Calling C Library

    I need to build a java app to call a C library. For the C library, all I have is some .lib, .dll and .h files. What should I do to achieve this goal to have my java app to call the methods in the C library? Please advise.

    Also JNI

  • Error while calling external library functions

    Using visual studio I wrote the following code test javascript communication with external C/C++ libraries:
    aabc.cpp :
    extern "C" __declspec(dllexport) char* ESInitialize (TaggedData* argv, long argc);
    extern "C" __declspec(dllexport) long ESGetVersion (void );
    extern "C" __declspec(dllexport) void ESFreeMem (void* p);
    extern "C" __declspec(dllexport) void ESTerminate (void );
    extern "C" __declspec(dllexport) double AddNumbers(void);
    double AddNumbers(double a, double b)
    return a + b;
    long ESGetVersion (void){
    return 5;
    And the code that I wrote in javascript is:
    var obj = new ExternalObject("lib: aabc.dll");
    alert(obj.version);
    var aa = obj.AddNumbers(10, 20);
    alert(aa);
    It seems to me that it loaded successfully due to the output I am getting from the second statement. But I am getting error at the third statement where I called AddNumbers(10,20) function.
    Somebody help me.
    Thanks in advance,
    sailu

    I have the same problem. This is my code:
    extern "C" __declspec(dllexport) char* ESInitialize (TaggedData* argv, long argc);
    extern "C" __declspec(dllexport) long ESGetVersion (void );
    extern "C" __declspec(dllexport) void ESFreeMem (void* p);
    extern "C" __declspec(dllexport) void ESTerminate (void );
    extern "C" __declspec(dllexport) int AddNumbers(int a, int b);
    extern "C" __declspec(dllexport) char* ESInitialize (TaggedData* argv, long argc)
    return "AddNumbers_dd";
    int AddNumbers(int a, int b)
    return a + b;
    long ESGetVersion (void){
    return 17;
    And the code that I wrote in javascript is:
    var obj = new ExternalObject("lib: mydll.dll");
    var x = obj.AddNumbers(10, 20);
    alert(x);
    The version of the library is correct, but when I try to use the function "AddNumbers" I receive this error "AddNumbers is not function".
    What would be the correct procedure to call a function inside a DLL?

Maybe you are looking for

  • Black Thumbnails in Finder

    Document thumbnails in Finder and in menus appear black. Also page thumbnails when in a particular document appear black. See below. How can I fix this? /Users/jamesjagoda/Desktop/screen-capture.png /Users/jamesjagoda/Desktop/screen-capture-1.png Tha

  • Run davinci on macbook pro 15" (without NVIDIA)

    Hello, I am in the market for a 15" macbook pro without NVIDIA. As i dont wanna buy the cheaper one without the nvidia to conclude afterwards you need it... So 1 simple question. Will this be able to run davinci resolve? Or is a NVIDIA needed? Thanks

  • Can Single Trip have multiple travel expense reports?

    Hi All, Can a single trip have more than one travel expense report linked to it? My Client requires different travel receipts for a single trip to have different paymnet cycles. Say for a single trip (for 20 days) the airfare paid needs to be settled

  • Increasing canvas size and re-clipping (intentionally)

    Hi, So I bolluxed up a little bit while creating my first full-bleed print piece. I used Ps to edit the image, Ai to add some stuff, and ignored Id completely for the printer. Now I have a perfect 8.5 x 11 image that I want to print all the way to th

  • Firefox updated to 19.0.2 and now cannot access aol emails...simply will not open; OS windows 7, 64bit -- what's the fix?

    after update to Firefox 19.0.2 supposedly optimized for aol, browser seems to work fine except for aol mail. AOL mail opens, however after selecting new mail it will not allow one to open a new email by double clicking the message as is a normal way