Converting labview from unix into windows

I need to convert some labview programs that were written in a UNIX environment to a PC windows operating system. I have converted the files over to my PC desktop. The problem is I am trying to run libraries that were compiled in unix and have the extension .so at the end. When I open the labview program it can not find these .so libraries and when I point to their location it states that this is not a valid windows image. Is there anything I can do to convert these .so libraries into something labview can read.
Thanks  

As far as I know, the equivalent of a shared object in windows is a DLL - DLLs are very common in windows and are also called through the Call Library Function node. You will presumably need to take your C code and compile as a DLL using a windows compiler. I'm not sure how many modifications you will need to make to the C code.
Try to take over the world!

Similar Messages

  • How to change Syntax group and physical path in SARA from unix to windows.

    Our customer migrate current current archiving server from Unix to windows
    How to change Syntax group and physical path in SARA from unix to windows.

    http://help.sap.com/saphelp_nw70/helpdata/EN/8d/3e4ec2462a11d189000000e8323d3a/frameset.htm
    you have to change
    Logical Path Names
    Logical file  Names
    Note 35992 - File name/directory for application archiving
    hope this will help you
    cheers
    dEE

  • Database shifting from UNIX to WINDOWS

    Hi,
    We have a production server located at Suse UNIX.
    We would like to move database from UNIX to WINDOWS.
    I would like to know what are the difficulties/scenarios which occures while moving the database?
    How difficult is it to import current oracle database to oracle on windows server ?
    Please explain in details.
    Thanks,

    hi what is your version of database?
    are you chaging the database version also or simply operating system?
    if you are only changing OS, then exp/imp is the best option. but to acheive this you need to do some groundwork like collecting all the tablespaces information and schemas and their privileges etc.
    also depends on database size also you can choose come other options.
    if your database version is 10g then you can best use the option of datapump exp/imp or network_link parameter of datapump.

  • Concurrent program to FTP from Unix to windows

    Hi,
    I am trying to FTP files from UNIX to a windows machine. I tried to do it through a shell script but it did not work , so i tried at the command prompt.
    I am able to login and get files from windows to UNIX but I am not able to PUT files.
    I spoke to the admin and he says all permissions are granted on teh remote host. I am able to put files with the same userid from windows to windows but not from UNIX to windows.
    Any ideas why? User id has read/write permissions.
    thanks

    are you sure its a path issue i face the same issue before and find out it was a windwos premission issue
    fadi hasweh
    http://oracle-magic.blogspot.com/
    Oracle is not Magic, it just takes years of experience

  • Transfer file from UNIX to windows application server G:\ drive

    Dear Expert,
    Really need some help on this, very urgent !
    The download program schedule in background to allow file store in unix.
    Can we do a unix command in abap program to transfer the file from unix to windows application server G:\ drive.
    The gateway for that application server is ukblmqg02.emea.astrazeneca.net .
    Anyone have the sample source code ?
    Thanks&regards
    Nislina

    Hi,
    1.
    There is  a FM 'ARCHIVFILE_SERVER_TO_CLIENT'.
    If the requirement need not necessarily require a FM to transfer a file, then you can also use transaction 'CG3Y' to transfer a file
    from application server to presentation server.
    2.
    Try to use FM  DOCFILE_SERVER_TO_CLIENT. I am using it to download a file from SAP application server to desktop.
    Source path should be application server file path along with file name i.e. /tmp/sample.xls.
    Target path should be something like c:\file.xls.
    Best regards,
    Prashant

  • Need to convert lab from UNIX to DOS

    I need to convert this lab from Unix so that it will run as a batch file in Windows (substitute with the appropriate commands). (I will definitely be starting some UNIX classes soon).
    FILE=${1:?'Parameter 1 should be set to file name'}
    BLOCK=${2:?'Parameter 2 should be set to block to be corrupted''}
    BLOCKSIZE=${3:?Parameter 3 should be set to blocksize'}
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek=$BLOCK <<EOF
    CORRUPT
    EOF
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek='expr 1 + $BLOCK' <<EOF
    CORRUPT
    EOF
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek='expr 2 + $BLOCK' <<EOF
    CORRUPT
    EOF
    dd of=$FILE bs=$BLOCKSIZE conv=notrunc seek='expr 3 + $BLOCK' <<EOF
    CORRUPT
    EOF

    Look up the SimpleDateFormat class: http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    Arwinder wrote:
    This is absolutely necessary... any help plz..For you maybe, not others. Please refrain from trying to urge others to answer your queries. They'll do it at their own pace ( if at all ).
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    ----------------------------------------------------------------

  • Requesting user input from UNIX command window

    New to this forum, and relatively new to Java......question for you......
    Currently, I am able to request a .txt file from a user in my unix command window by having them type in the following command:
    java Game (nameOfTextFile).txt
    with the following code:
    public class Game {
    public static void main(String[ ] args) {
    try{
    reader = args[0];
    catch(Exception g){
    System.out.println(g);
    where 'reader' holds the .txt file.
    What I would like to do is as soon as the user types in the command:
    java Game
    it gives them the line:
    "Please type the file to be input"
    and at this point they type in:
    (nameOfTextFile).txt
    and then I can start working with the text file.
    Any ideas?
    Thanks

    public class Game {
    public static void main(String[ ] args) {
    try{
    reader = args[0];
    catch(Exception g){
    System.out.println(g);
    }This class will not compile. The variable 'reader' is not declared anywhere.
    You could create a shell program. When the user enters the name of the shell program at the command prompt, it gives them the prompt to enter the file to be input. And then from within the shell program you call the java program with the name of the file.

  • How to convert data from rows into columns

    Hi,
    I have a sql table and the data looks like this
    GLYEAR GLMN01 GLMN02 GLMN03 GLMN04
    2007 -109712.40 6909.15 4758.72 56.88
    2007 -13411.32 19132.9 -5585.07 4362.64
    Where GLyear reprsents Year and GLMN01 is February, GLMN02 is March and so on,
    Now i want my output to be something like this which i want to insert into another table
    GLYear GLMonth GLAmount
    2007 February -109712.40
    2007 March 6909.15
    2007 April 56.88
    My new table has 3 columns, GLYear,GLMonth,GLAmount.
    Can someone please help me with the select statement on how to do this, i can work with the inserts.
    Thanks.

    I want you to check these form tread they have the same discussion as you.  They will definitely solve your problem
    http://blog.jontav.com/post/8344518585/convert-rows-to-columns-columns-to-rows-in-sql-server
    http://dba.stackexchange.com/questions/19057/convert-rows-to-columns-using-pivot-in-sql-server-when-columns-are-string-data
    http://stackoverflow.com/questions/18612326/how-to-convert-multiple-row-data-into-column-data-in-sql-server
    I hope this helps you in solving your problem. 
    Please remember to click “Mark as Answer” on the post that has answered your question as it is very relevant to other community members dealing with same problem in seeking the right answer

  • Duplicate from UNIX to Windows

    Hi,
    I have a 10g R2 database on UNIX AIX. It is backed up by RMAN. I intend to duplicate it on a Windows machine using RMAN duplicate command.
    Is it possible ?
    I looked for a Scenarios in Database Backup and Recovery User's Guide but did not find.
    Thank for help.

    Hi;
    Please see:
    Migration of Oracle Database Instances Across OS Platforms[ID 733205.1]
    How To Use RMAN CONVERT DATABASE on Source Host for Cross Platform Migration [ID 413586.1]
    Regard
    Helios

  • Import songs from iTunes into  Windows Movie Maker

    I have found it difficult to use my songs in any other application. I'm creating videos using Windows Movie Maker (Vista) and when I go to import the songs aren't showing up in the iTunes Music folder. I also downloaded the files into an external drive. When I opened the external drive separate the songs were there. When I was in Windows Movie Maker and went to import the files weren't there. Any suggestions on how to use songs from iTunes. I feel as though I've purchased them and can't use them anywhere else other than on my iPod and computer.

    joseemarie wrote:
    I feel as though I've purchased them and can't use them anywhere else other than on my iPod and computer.
    If they are protected files, that's correct. You can only use them on iPods, authorized computers and Apple TVs.

  • How can I install audio driver from BootCamp into Windows 7?

    After an uneventful installation of Window 7 (64) onto iMac  cor 2duo OS X 10.6.7.
    NO SOUND.
    I have tried to replace the Audio Driver HD through Device Manager: it is not working
      a) if I disable the Windows Driver and try to install the Cirrus driver from the BootCamp disc, I am informed that "device already has the optimal driver"
      b) if I unistall the WIndows driver, Sound Video Game Controller disappears from Device Manager-so there is no place through which I can install a new driver.
    c) If I start from the BootCamp/Driver folder and select Cirrus and Install, I am again getting the answer that the "device already has the optimal driver"
    I am frustrated! Please, can you advise how to proceed?

    You do NOT want to disable unless you are not going to use a device.
    You want to rollback or uninstall and get Cirrus driver.
    Try Boot Camp (Setup) repair-reinstall - to enable the device.

  • Clone the Database from Unix to Windows using RMAN in Oracle 9i ?

    Hi.,
    we are having Productino Database in ORACLE 9i at unix . currently Our Application user need the Test Environment in Windows server.We have active RMAN Backup in Production .
    If its possible can i restore the unix RMAN backup to Windows.Please Clarify my doubt ?
    Thanks & Regrads
    Karthick

    In 10g you have cross platform transportable tablespace .... but in 9i only option would be exp/imp

  • Convert Labview 5 VI into Labview 8.6

    I currently have Labview 8.6 and I cannot open up a VI  because it was saved in Labview 5.
    How do i convert it to 8.6? Attached are the VIs.
    Solved!
    Go to Solution.
    Attachments:
    HP8566 Appl.llb ‏859 KB
    HP8566 Radio Scans Collect.vi ‏354 KB

    Here they are:
    Attachments:
    1dpsampl.vi ‏99 KB
    1EIMSample.vi ‏45 KB
    1LESAMPL.VI ‏76 KB

  • Export file from unix to windows

    hi,
    i need your suggestions about an issue.
    my problem is that i have a oracle db on unix machine. i will create a procedure on that database which will produce a text file. however, i need to place this file to a windows machine and want to make it with pl/sql code no other tool or something. is this achievable?

    hi again, let me clarify my problem.
    the procedure will run in unix and create the file on windows.
    the pl/sql code will generate an xml output , i want to save this output to windows.
    is this achievable, if so, how?

  • Need Help Converting iPod from Mac to Windows

    Hi, I have a 3rd Gen iPod and I just gave it to my friend who has a windows xp machine. I had a Mac OS 10.3.9 system. When he plugged the iPod into his windows, it told him that it needed to be configured to windows and that he should connect it to a power adapter. When he did this, the iPod just gave an icon resembling the plug that connects to the bottom of the iPod. Now his iPod won't turn on and when plugged into his computer, it says that there has been a malfunction and his computer does not recognize the USB device. Any suggestions on how to fix this?

    That generation iPod requires a combo USB/Firewire cable. It simply won't work with USB alone. It also needs to be re-formated for Windows and that can be done within iTunes. Along with that cable, he will need the A/C power adapter.

Maybe you are looking for