How can I convert a project from LabWindows/CVI 2010 to a Visual Studio 2011 project?

I have a good sized project, 12 source files, 14 headers, 1 uir, that I want to be able to edit and compile in MS Visual Studio 2011, MSVC++.
I remember being told that LabWindows dropped support for C++ in 2008 and no longer had a wizard for converting projects. I know I can go the DLL route, but I have never created a DLL before and wouldn't know where to begin with it. What would be the best way to go about this conversion?
Solved!
Go to Solution.

CVI 2010 still supports the Visual Studio Conversion Wizard for Visual Studio 2005/2008. We do plan to add support for VS 2010 in a future release.
If you need a VS 2010 project now, you can use the Visual Studio 2008 conversion wizard, then upgrade the VS 2008 project to VS 2010.
National Instruments
Product Support Engineer

Similar Messages

  • How can I convert .cp projects from Captivate 2 to .cptx projects for Captivate 7?

    How can I convert .cp projects from Captivate 2 to .cptx projects for Captivate 7? Do I have to use some other version between 2 and 7 to do this?

    I doubt you are going to be able to find all those previous versions and the time it would take to install, open the project, verify it, and everything in between (and without license keys, they would only be saved from trial versions which would be an issue), it seems it would be better just to start with Cp7 and put the effort into that.
    Completely off topic, one of the things I like about Authorware is that Macromedia provided previous versions that would allow you to open up and save the projects to get to version 7. It was a nice little touch they provided for developers. I don't believe that Adobe does this for Captivate though.
    Dave

  • How can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    how can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    Turns out the answer to that question changes if you ask it more than 4 times, so ask it again....
    The answer depends on the type of video files you want to convert.  If they are DRM protected commercial videos, no help can be given here.  Google.

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • How can I convert/read out from a string Hex (8-bit), the bit 0 length 1

    How can I convert/read out from Hex (8-bit), the bit 0 length 1 (string subset!!??) and convert it to decimal.
    With respect to one complement and two complement ?

    Just like Jeff, purely guessing here.
    It almost sounds like you just need to Read from Binary File?
    AND the 8-bit number with 1?
    Need more details.  What exactly do you have to start with?  What exactly are you trying to get out of it?  Examples help.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How can I convert datalog files from LV5.0 to LV6i?

    I have some datalog files from LV5.0 and I'd like to use them in LV6i, but when although I push convert when asked in the moment of reading the file,it provides input parameter invalid when reading. I'm using the same vi I used to create and read them in LV5, so it's not supposed to be a program mistake. How can I convert them?"

    Hello,
    Thanks for answering my question. I downloaded LV6.02 as you suggested but the problem persists.
    I don't know maybe it's something very simple. I have attached 1 program to read the datalog file and another one that reads it in every version (LV5.0 and LV6.02) in case you can help me.
    Thanks again,
    Javi
    Attachments:
    WriteLV5.vi ‏65 KB
    OpenLV5.vi ‏74 KB
    OpenLV6.vi ‏59 KB

  • How can I convert a space from ABAP to CSV data?

    Hello guys,
    how can I convert a string like
    "This is a%test%"
    to
    "This is  a test "
    into CSV data?
    I try to with   REPLACE ALL OCCURRENCES OF '%' IN string_above WITH space,
    but I got the string without space, like
    "This is  atest"
    I read some posts that CSV will ignore space.
    But which kind of symbol in CSV represents space?
    Thanks for any suggestion!
    Regards,
    Liying

    USE THE CODE AS SHOWN BELOW...
    TYPES : BEGIN OF tp_data,
              line(4096),
            END   OF tp_data.
    *&      Form  gui_upload
          Upload the data from the input file to the internal table
    FORM gui_upload.
    *--Local data declaration
      DATA: l_filename_ip TYPE string,
            tl_data       TYPE STANDARD TABLE OF tp_data WITH HEADER LINE.
      l_filename_ip = p_input.
    *--Upload Data
      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                filename                = l_filename_ip
                filetype                = 'ASC'
                has_field_separator     = ''
           TABLES
                data_tab                = tl_data
           EXCEPTIONS
                file_open_error         = 1
                file_read_error         = 2
                no_batch                = 3
                gui_refuse_filetransfer = 4
                invalid_type            = 5
                no_authority            = 6
                unknown_error           = 7
                bad_data_format         = 8
                header_not_allowed      = 9
                separator_not_allowed   = 10
                header_too_long         = 11
                unknown_dp_error        = 12
                access_denied           = 13
                dp_out_of_memory        = 14
                disk_full               = 15
                dp_timeout              = 16
                OTHERS                  = 17.
      IF sy-subrc <> 0.
        MESSAGE ID   sy-msgid TYPE 'S' NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        IF sy-subrc = 1.
          MESSAGE e000 WITH text-e04.
        ENDIF.
      ELSE.
        LOOP AT tl_data FROM 2.
    *--Taking the contents of the input file leaving the header part
          PERFORM split_and_save USING tl_data-line.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " gui_upload
    *&      Form  split_and_save
          Splitting the contents from the input file and saving them into
          an internal table
         -->P_TL_DATA_LINE  text
    FORM split_and_save USING fp_data.
    *--Local data declaration
      DATA : tl_data TYPE STANDARD TABLE OF tp_data WITH HEADER LINE,
             l_type  TYPE c,
             c_space(1) TYPE c VALUE ' '.
    *--Split at the Comma
      SPLIT fp_data AT c_space INTO TABLE tl_data.
      CLEAR inputtab.
    *--Move it to the target fields
      DO.
        ASSIGN COMPONENT sy-index OF STRUCTURE inputtab TO <fs_field>.
        IF NOT sy-subrc IS INITIAL.
          EXIT.
        ENDIF.
    *--Extract source data
        CLEAR tl_data.
        READ TABLE tl_data INDEX sy-index.
    *--Populate the target
        <fs_field> = tl_data-line.
      ENDDO.
    *--Append this record
      APPEND inputtab.
    ENDFORM.                    " split_and_save
    In the above code u can use make inputtab like tp_data and get the result as requires in an internal table as space seperated fields.
    In place of space u can also use any other symbol.
    And after that u can replace all occurences of space with the comma by using the statement that u have written below.

  • How can i convert my file from RGB to CMYK?

    I need to convert my pages project from RGB to CMYK.  How can I do this?

    Which version of Pages and can you be more specific about what file you have and what you are intending to do with it?
    Peter

  • How can I convert my imovie from ipad to burn dvd on PC

    I have produced a 30 minute video for my son's football team using Imovie on my ipad.  I do not have an apple computer and need to convert the imovie to my PC in order to burn DVD's.  This process seems impossible.  I have read many forums and am trying to export the project to my camera roll, however the process never completes itself.  It will export for literally hours without completing the process.  This project have taken me weeks to complete, mainly because the process is very slow with imovie and extremely frustating.  Now, I'm ready to finish up and am so worried I will never get it off my ipad.  What do I do??

    NO files larger that 500mb (which is **** near any video)  will not transfer!
    At: http://support.apple.com/kb/HT4083
    It incorrectly state this:
    "Windows XP cannot import video files larger than 500 MB using Camera and Scanner Wizard. You can transfer these files directly from your device by selecting them in My Computer and dragging or copying the movie files to your computer's hard drive."
    Problem is that NO videos are shown as I open my ipad up in "My Computer", only photographs I have taken
    THIS INSANE.  You put Hign Def Video camera on the IPAD and NO simple way to get the you home made videos of it?  Search this topic "transfer video from ipad to computer"  you get NO help.  the only responses are from people hocking there "computer programs that will do it"  or "apps" that transfer files. 
    Apple here is the reality. At this point, regarding computers, PC is King...get it?  We do not all have apple computers to go along with our ipads.  ... So incase i need to break it down for you....YOU NEED TO HAVE A EASY WAY TO REMOVE VIDEOS FROM AN IPAD TO A FREAKIN PC...
    I am not sure what is most amazing:
    -ipad designers not seeing this as a problem
    -the lies at http://support.apple.com/kb/HT4083 that discuss easy it is to simply open up "my computer" and drag an drop
    -ignorant people responding to several other people with my same simple problem with stupid response like "so you want to put a video on your ipad, you do that thru itunes" or "gosh it's been a while since i did this but its real easy, i think..."
    There are not even any you tube videos on the subject... Am I in Bizzaro World here????

  • How can i convert a url from https to http?

    Hi,
    SSL is enabled in WLS 9.2 and its wrkng fine. And iam able to access login page in secure(https)mode. After this page i need to convert the url from https mode to http. For enabling https i added some code in web.xml. For switchinng https to http i dn't knw anythng.
    Pls gve me suggetion.
    Thanks in advance.

    Export it from iPhoto. This process will make a QuickTime movie of it. That will play on an PC that has QuickTime installed - and that's a free download for PC, and comes with iTunes for PC
    Regards
    TD

  • How can I convert a l7680 from USB to wireless

    I have a L7680 setup to print via a USB connection.  How can I change that to a wireless connection without un/reinstalling the whole program.
    Thx
    Dave
    WinXP SP3 IE8 MDE all updates
    This question was solved.
    View Solution.

    Hi,
    Your printer has a NIC (wired) therefore you can add it to your home network thru a router which has LAN port(s) using CAT5 or CAT5e or CAT6 cable. Please use this book as a guide how to connect:
      http://h10032.www1.hp.com/ctg/Manual/c00389927.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Can I convert Labview panel to Labwindows/CVI uir file

    I a project that I want to convert from labview to Labwindows\CVI.
    I don't want to call my VI's from LabWindows.
    It is possible to convert some Labview fronts panels to *.uir files (Labwindows/CVI)
    Thanks

    Hi Artus!
    Unfortunately there is no automatic way to convert a LabView Front Panel into a Labwindows UIR.
    The only way you can do this is by creating a new interface and adding all the elements that you need, but this way would actually mean rebuilding everything based on something you already have. Sorry about the bad news
    I wish you the best day!
    Oswald Branford

  • How can I convert audio files from Windows Media player to WMV?

    I am unable to add a soundtrack if it is a WMA file.  What programs are best to convert files to WMV?

    If you are wishing to add the WMA soundtrack to a PrE Project, I would convert/rip the WMA to PCM/WAV 48KHz 16-bit, and then Import that WAV file into the PrE Project. Drag it to a free Audio Track. Though there is a Soundtrack Track, some users have had issues with it. Any free Audio Track, with the necessary channel-count is likely to work better.
    For the conversion/ripping, there are many programs that can do this for you. I use Adobe Audition, but the great, free Audacity can do it nicely, as well.
    As WMA can have aspets, like 6-channel Audio, wrapped in the WMA, I like doing the conversion, unless I need, say the 6 discrete channels in Audition, for output to DTS Audio with the SurCode DTS encoder program.
    Good luck,
    Hunt

  • How can i convert the date from M to MM ?

    Dear Guru ,
    I need to upload my list to SAP table , and in the list , we are using YYYY/M/D format ( Eg. 2010/5/20 , 2010/10/1 ) .
    And now i want to convert all date format to YYYY/MM/DD , Is it possibile to do that ?
    Here is my code , but it doesn't work . It returned "2009//3//5" format .
    data: ld_date_int type datum.
    data : test(10) type c.
    test = '2009/3/5' .
    ld_date_int = test .
    WRITE : SY-SUBRC , LD_DATE_int .
    Does SAP provide a standard function can convert the date format ?
    Thanks .
    Best Regards,
    Carlos Zhang

    Hi Dear
    You can try in this way :::
    data: ld_date_int type string.
    DATA : ld_string TYPE string.
    data : test(10) type c,
           ld_res1(4) TYPE c,
           ld_res2(2) TYPE c,
           ld_res3(2) TYPE c.
    DATA : ll_res2 TYPE i,
           ll_res3 TYPE i.
    test = '2009/03/5' .
    ld_date_int = test .
    ld_string = strlen( ld_date_int ).
    CASE ld_string.
      WHEN 10.
       WRITE : SY-SUBRC , LD_DATE_int.
      WHEN OTHERS.
        SPLIT ld_date_int at '/' INTO ld_res1 ld_res2 ld_res3 in CHARACTER MODE.
        ll_res2 = strlen( ld_res2 ).
        ll_res3 = strlen( ld_res3 ).
        IF NOT ll_res2 eq 2 and not ll_res3 eq 2.
          CONCATENATE: '0' ld_res2 INTO ld_res2.
          CONCATENATE: '0' ld_res3 INTO ld_res3.
          CONCATENATE ld_res1 '/' ld_res2 '/' ld_res3 INTO ld_date_int.
          WRITE : SY-SUBRC , LD_DATE_int.
        ENDIF.
        IF ll_res2 eq 2 and not ll_res3 eq 2.
          CONCATENATE '0' ld_res3 INTO ld_res3.
          CONCATENATE ld_res1 '/' ld_res2 '/' ld_res3 INTO ld_date_int.
          WRITE : SY-SUBRC , LD_DATE_int.
        ENDIF.
        IF NOT ll_res2 eq 2 and ll_res3 eq 2.
           CONCATENATE: '0' ld_res2 INTO ld_res2.
            CONCATENATE ld_res1 '/' ld_res2 '/' ld_res3 INTO ld_date_int.
             WRITE : SY-SUBRC , LD_DATE_int.
        ENDIF.
    ENDCASE.

  • How can I convert a catalogue from PSE on an old PC to a PSE 11 catalogue on another PC?

    I tried to do it according to the instructions in the help menu, however PSE 11 does not even recognize the file format.

    How did you transfer the pictures and catalog to the new PC ? The recommended way is to do a full backup on the old PC, and a restore on the new one.
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html
    The restore process should first restore the picture files, then convert the catalog to the new PSE11 format.
    The problem is different if you install PSE11 on the same old computer, you don't have to move files, only convert to the old format catalog.

Maybe you are looking for