Question about the possible use of MSVC 2008 Express as an external compiler CVI 9.0

I was looking for these messages looking for information on the use of the ICB with external compilers, especially from MSVC 2008, and I came across this ad are about 4 months:

"CVI 9.0 and MSVC 2008 express.

The title of this announcement means that the freely downloadable 'express' version of MSVC can be used with CVI 9.0, but the body of the message is not in the details.  But I would really like to know if this is possible, and I'm guessing there are others here who could be very interested as well.  Page 8 of the CVI 9.0 release notes does not indicate that the Express version is supported, which makes sense.  I say this because I always thought that "express" versions of the MSVC were only to create .NET applications (C + c++ / CLI) and applications not native to Windows.  Or does change with the release of MSVC 2008 Express?

There is no hurry to answer...

JB

If you have a CVI 9.0 FDS(I'm not sure about the BDS)

Select Options/Build Options

Select the Select button to the right of 'compiler active'.

Click 'new' to create a new configuration of external compiler

Select MSVC 9.0 as a model.

Choose a configuration name (what you choose to CVI) and a destination file (where the external compiler settings will be stored).

Click OK

After that, you can easily select the optimizing level and the level of warnings that you need through the "Edit" in the box "compile to realease configuration.

Kind regards

Nicolas

Tags: NI Software

Similar Questions

  • Question about the ports used by subdaemons

    We use a direct access, no client server, with TT 6.0.4. TT is installed with port 16200. We see the subdaemons using ports such as

    32814 timestensubd
    timestensubd 32818
    timestensubd 32820
    32822 timestensubd

    Is there anyway to configure which ports are in use? SE not in 6.0.4, and then in version 7.0.5 which we will use in the future?

    Thank you
    Linda

    I'm afraid that this isn't currently possible. There should be an improvement for this request.

    Chris

  • Tecra 8000: Question about the possibility of upgrade

    I have a tecra 8000 with a pentium 2 300 mhz processor and I was wondering if it would be up to class? any help would be appreciated thanks.

    Hello

    Well, in general it is not possible to upgrade the CPU because the cpu is fixed and soldered on the motherboard. But sometimes the CPU is only mated. I'm not sure about this device, but as far as I know, this device was shipped with Pentium II 400 233 MHz, 333 MHz and 400 MHz Dixon.
    But if you want to upgrade the CPU to change many other parts because the plu processor produce more heat and this process can cause overheating problems.
    So if you want you can request the service of Toshiba for details.

  • Question about the photo (using the folders and Photos app)

    Hello

    I am new on the app Photos - aperture used briefly but never really liked. I used to manage/sort all my photos with simple folders on the hard drive. Now, I would like to move the direction of the Photos app.

    A few questions:

    1.) if I add images, are they duplicated on my hard drive when I import them from Photos?

    2.) how to delete images permanently? I need to do a cleanup, which is easier in the Photos. If I delete the images here (and also delete the "recently deleted" album), why they remain in their original on my hard drive folder?

    Any help is appreciated - thanks!

    1 - Yes by default which is highly recommended, as was the case with iPhoto you then delete the photo source since it is safe in the library

    2 - pictures works just like iPhoto - nothing outside the library is not affected by what you do in the application - see 1

    LN

  • Question about the connection using the "sqlplus / as sysdba.

    Good afternoon

    The command:
    sqlplus / as sysdba
    worked very well for the Oracle server. When I go to a client, it does not work even if I specify the correct instance. On the client, I can able to connect using one of these two commands:
    sqlplus.exe sys/abc123@"orahost.john.local:1521/dbca.john.local" as sysdba
    
    or 
    
    sqlplus.exe sys/abc123@dbca as sysdba
    
    but not
    
    sqlplus / as sysdba
    
    or 
    
    sqlplus /@dbca as sysdba
    The question is: is the form "/ as sysdba" limited to used on the Oracle server and not available for customers?

    Thank you for your help,

    John.

    is the form "/ as sysdba" limited to use on the Oracle Server

    Yes

    and not available for customers?

    Yes

  • Question about the correct use of the WM_CONCAT

    Hello

    I am trying to accomplish the following:

    from this
         ENAME
         ----------
         ADAMS
         ALLEN
         BLAKE
    ...
    and ends on this
         OLD_NAME   NEW_NAME
         ---------- --------
         ADAMS      AADMS
         ALLEN      AELLN
         BLAKE      ABEKL
    ...
    Basically, alphabetically sort the characters within each name. I have an intermediate step that seems promising
    select e.ename oldname, substr(e.ename, iter.pos, 1) newcharpos
      from emp e,
           (select rownum pos from emp) iter
     where iter.pos <= length(e.ename)
     order by e.ename, substr(e.ename, iter.pos, 1);
    Yields above
    OLDNAME    NEWCHARPOS
    ---------- --------------------
    ADAMS      A
    ADAMS      A
    ADAMS      D
    ADAMS      M
    ADAMS      S
    ALLEN      A
    ALLEN      E
    ALLEN      L
    ALLEN      L
    ALLEN      N
    BLAKE      A
    BLAKE      B
    BLAKE      E
    BLAKE      K
    BLAKE      L
    ...
    the characters are in the right sequence, I thought that all I had to do was to use WM_CONCAT (and replace the comma it inserts with an empty string) and I would like to make. I thought it would do: (replacement of commas left out for clarity)
    select oldname,
           wm_concat(newcharpos) newname
      from (
            select e.ename oldname, substr(e.ename, iter.pos, 1) newcharpos
              from emp e,
                   (select rownum pos from emp) iter
             where iter.pos <= length(e.ename)
             order by e.ename, substr(e.ename, iter.pos, 1)
           )
      group by oldname;
    but the sequence of the newcharpos is messed up in the process and, rather than the expected result, I get this:
    OLDNAME    NEWNAME
    ---------- --------------------
    ADAMS      A,S,M,D,A
    ALLEN      A,N,L,L,E
    BLAKE      A,L,K,E,B
    ...
    My question is, how to structure the last query so that the order of character as calculated in the inner query stays?

    Thank you for your help,

    John.

    Or

    SQL> select   oldname,
           wm_concat(newcharpos) keep (dense_rank last order by null)  newname
      from (
            select e.ename oldname, substr(e.ename, iter.pos, 1) newcharpos
              from emp e,
                   (select rownum pos from emp) iter
             where iter.pos <= length(e.ename)
             order by e.ename, substr(e.ename, iter.pos, 1)
           )
      group by oldname
    /
    OLDNAME    NEWNAME
    ---------- ------------------------------
    ADAMS      A,A,D,M,S
    ALLEN      A,E,L,L,N
    BLAKE      A,B,E,K,L
    CLARK      A,C,K,L,R
    FORD       D,F,O,R
    JAMES      A,E,J,M,S
    JONES      E,J,N,O,S
    KING       G,I,K,N
    MARTIN     A,I,M,N,R,T
    MILLER     E,I,L,L,M,R
    SCOTT      C,O,S,T,T
    SMITH      H,I,M,S,T
    TURNER     E,N,R,R,T,U
    WARD       A,D,R,W                       
    
    14 rows selected.
    

    Or (11 GR 2)

    SQL> select ename oldname, column_value newname
      from emp,
           xmltable(('string-join(for $i in (' || rtrim(regexp_replace(ename, '(.)', '"\1",'),',') || ') order by $i return $i, "")'))
    /
    OLDNAME    NEWNAME
    ---------- ------------------------------
    SMITH      HIMST
    ALLEN      AELLN
    WARD       ADRW
    JONES      EJNOS
    MARTIN     AIMNRT
    BLAKE      ABEKL
    CLARK      ACKLR
    SCOTT      COSTT
    KING       GIKN
    TURNER     ENRRTU
    ADAMS      AADMS
    JAMES      AEJMS
    FORD       DFOR
    MILLER     EILLMR                        
    
    14 rows selected.
    
  • Question about the possible television series total bit rate discrepancy

    Hello, I started recently to buy some from Itunes TV shows when I noticed something I was curious about. I noticed that when I look at the "total sampling rate" for none of them via "My TV Shows" in Itunes, they tend to be a little higher than the sampling rate total on the physical files that I have. For example when you look at the an M4V file that is lists the total flow as being '5257' but must I go to my tab TV shows from Itunes and watch the news for that same file, it shows the total flow is "5663." I'm just curious as to why they are apparently different when the size of the two files are apparently identical.

    Also as a note on the side of something else that I've been curious to know is why is the size of physical videos always slightly more small then what is stated on the page of the show? For example, the first episode is 968 MB but the file is only 923, however after that, in the peripheries, it shows (968,071,723 bytes) Does this mean that it is actually the same size, it's just that how M4V are compressed it occupies less space because of its format or something?

    Any help would be appreciated, I'm relatively new to actually buy things via Itunes so I want to just make sure I know all the details, for example I just found out the other day, after downloading an entire show, I had to set it manually to download 1080 p, otherwise you end up with 720 p instead, which means that I had to re - download it all again.

    * BRACKET

  • Question about the possible future re - install

    I'll be updating my Design Creative Suite Standard. I bought CS5 as a Cabinet. I see that those who are no longer available.

    My question: what do you do if you need to do a reinstall if you have no media?

    I must admit, I thought also that you ask on the re-download CS5 - which is the link provided by Romsinha.

    CS6 links are here

    http://prodesigntools.com/Adobe-CS6-direct-download-links.html

  • A few questions about the use of data and Cliq

    I have the cliq, however I chose to not get 3G (so I bought full fare). So I have a few questions about the phone and the use of 3G / 2 G/Edge:

    1 - is possible to disable completely the 2G / 3 G/Edge? I know you can switch between them, but are anyway just tell the phone to stop using them altogether since I'm not subbed to the service?

    2. when the update takes place, I guess we'll have to reconnect motoblur and etc, but if I don't have 3 G will I have motoblur connection problems after the update? Or he keeps the latest wifi settings so that it would connect to wifi to connect. When I first got my phone it was not a problem b/c I had 3G for the first month.

    I hope that makes sense, thanks!

    To stop all the data, I would like to download an application called APNDroid. He cut them all down. When you log on to blur you have 3G or WIFI doe this without getting a timeout error. During the process of setting up your Blur account, you can press the menu button and set up your wifi to work, this will connect you to Blur and your phone will be connected to the blur. If I were you I would be rethinking to do a data plan since you are really losing out on most of your main features of phones. It's your choice, however.

  • An error occurred when DNS was questioned about the resource record (SRV) service location used to locate a domain controller Active Directory (AD DC) for the domain 'HAMI. LOCAL ".

    An error occurred when DNS was questioned about the resource record (SRV) service location used to locate a domain controller Active Directory (AD DC) for the domain 'HAMI. LOCAL ".

    The error was: "an existing connection was to be closed by the remote host".
    (0 x 00002746 WSAECONNRESET error code)

    The query was for the SRV record for _ldap._tcp.dc._msdcs. HAMI. LOCAL

    Hello

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the Forums TechNet Windows 7 Technet.

    Here is the link:
    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

    Hope this helps

  • Got a legal question about the installation of Adobe Photoshop Elements.  How to get help from Adobe using a chat session?

    Got a legal question about the installation of Adobe Photoshop Elements.  How to get help from Adobe using a chat session?

    AdobeTomFaith

    If your program is Photoshop Elements, then you have posted in the wrong forum. Some how your son got posted in the Forum Adobe Premiere elements (video editing). Please re-post your thread in the Adobe Photoshop elements Forum.

    Photoshop Elements

    Wherever your son is, please include Adobe Photoshop Elements version and operating system and the description of the installation problem (error messages, stage of failure, etc.)

    Support Adobe seems to be limited to Adobe cat and is classically limited to the current version which is 13. Then, you the best avenue to success is likely to be through the Adobe Photoshop elements Forum. But that shouldn't stop you trying to determine what kind of support you can get from Adobe cat on your question.

    I would offer this link that is specific for Adobe Chat download and installation

    Contact the customer service (this is not the same destination as shown in a previous post in your thread)

    This link is specifically designed for

    Photoshop Elements

    Download, installation, setting up

    Download and installation

    Panel discussion

    (18:00 - Friday 7 pm Sunday)

    Thank you.

    RTA

  • Question about the database to use with ESX and Labmanager

    Hello

    Finally my company is buying a permit for Labmanager and ESX server using Labmanager to our tests.

    We had a question about the database that we use for the actual installation.

    Could we use MY - SQL? Or that we have the olbigation to install a SQL or Oracle DB for the whole system to work?

    We prefer to use MY_SQL because it is open-source and will cost less to use for us.

    Thanks in advance for the answer and please excuse my bad English, I'm french spoke first.

    Lafa91

    Montreal.

    Lab Manager installs SQL Express as part of the installation and use. If you install also Virtual Center as part of your deployment of Lab Manager (do not use an existing VC server), you can use the database SQL Express is included for small installations of ESX, but MY SQL is not an option. You can search the databases supported in the installation guide for what version you deploy.

  • I posted a question about the FBI virus. How to get rid of him. I ' v was only one answer. Someone to give here can help me with that. I am 62 and although I use my high tower dyly I'm not a COMPUTER technician.

    I posted a question about the FBI virus. How to get rid of him. I ' v was only one answer. Someone to give here can help me with that. I'm 62, and I'm not a computer genius. I have some [eratly helpgetting need to get rid of the virus of the FBI. MS antivirus and scan not work or identify it.  Help, please! 1

    Emisoft is a desperately slow download, as I just discovered.

    You can simply run Malwarebytes and it...

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

  • Re: Several questions about the recovery of the Satellite L750 features

    I have several questions about the recovery of Satellite L750 features available to it. Any help and answers would be useful.

    (1) when I started the laptop first, he asked me to create a recovery CD incase I need to reinstall the operating system. But he also said that he built in the recovery partition, so therefore, I have to make a recovery cd or not?

    (2) will be the recovery CD is exactly the same as the recovery on the system partition?

    (3) is the partion of CD or recovery includes all the integrated software pre-installed with the laptop?

    (4) also in the device manage management it shows watch partion recovery but it is empty, is it true?

    (5) in the second partition (drive D) system, he has a record with what looks like the recovery of files and folders. Is it safe to move/remove it?

    Hello

    I'll try to provide answers:
    1 - to ensure that everything works perfectly you don t need these discs, but if something goes wrong with the HARD drive you will not be able to do anything. When you have the recovery DVDs, you will still be able to install the recovery image and once again the factory settings. So my advice to you is: create these discs as soon as possible. Use only on DVD-R media and buy products of high quality (TDK or Verbatim).
    2 - Yes.
    3 - Yes.
    4 - No. Don t be confused with this.
    5. in a first time create restore DVD, and later you can do what you want. I put t know which files mean you but don t touch anything before that of the recovery disks to be created.

    In the past, many people have been experimenting with the structure of HARD drive and partitions and later was surprised when installing disk recovery HARD has been damaged. Don t make the same mistake.

    If you have any other questions you are welcome.

  • A question about the virtual processors in the prompt

    Dear Sir

    I have a general question about the number of virtual processors in the guest system.

    I use VMware ESXi 4.0.

    Say if my physical host has only 2 cups carrots (with or without HT should be the same), then is - it true that I can only attribute 2 virtual processors per virtual machine?

    Is it possible to give 4, 8 virtual processors in virtual machines?

    In my drop down menu I can NOT choose more than 2 virtual processors per virtual machine, I want to just make sure that it is not the problem of license.

    Thank you very much.

    Nanfang

    Hi Nanfang,

    linanfang wrote:

    So the general rule is the number of vcpus don't CAN NEVER exceed the number of physical processors. Is this correct?

    Replace "physical cpu" by "physical cores" and you are right, because a vCPU is mapped to a kernel. For example, you can assign 4 vCPU with a Quad-Core processor.

    If you think about it, it makes perfect sense. If you would be able to map 2 vCPU to the base, the vCPUs had to wait for them all the time because the physical kernel can simply perform an action at a time, why you would decrease the performance of your virtual machine by setting 2 vCPUs.

    It is not changed in vSphere 5.

    Concerning

Maybe you are looking for

  • Firefox opens slowly

    Unlike your information, Firefox 14.0 (Build 20120605113340) opens only one tab (of several tabs recorded the last time). It opens all tabs at the same time, and when there is a couple of tabs saved, there are usually several minutes for Ffox open. A

  • I have a pavilion p6130fpc and it will not see the drives.

    I have a pavilion p6130fpc that will not see the drives. I tried 3 different hard drives and change the cable and port twice. I have also reset the BIOS and pressed the power button for five seconds after you disconnect without success. Someone at -

  • Open a Subvi inside the main façade, not to burst

    Hello I am writing a program that contains several subvis. The option I have in the configuration of the node of the Subvi is to open the front panel, during the call. What I want to do is to open the front panel of the Subvi inside the main façade.

  • Read all files in a folder over and over again

    I want to develop an application that reads all files in a folder, and once its done reading these files, it reads all the files again. The purpose of this application is to read all the files in a folder that are stored permanently in this folder, s

  • Laptop: implement the storm

    Hello While setting up new Touchsmart of my daughter I managed to get myself locked out. The user ID I created for it does not accept the password I set, so I have no idea what is wrong here, and I managed to create another account with a microsoft a