App version problem

When i build executable from my labview code, i expect that
1. App.Name should return the name of my built application. (This is working as expected)
2. App.Version should return the Version of my Application (this property instead returns LabVIEW Version)
Please find attached example where app. version is 2.0.0 whereas labview returns 8.2.1
If this is what, NI Itends to give, then is there any alternative way through which i can get the version. no of my application?
Tushar Jambhekar
[email protected]
Jambhekar Automation Solutions
LabVIEW Consultancy, LabVIEW Training
Rent a LabVIEW Developer, My Blog
Attachments:
test2.zip ‏32 KB

Hi, Tushar,
There are different possible ways to do this. You can do this with .NET (FileVersionInfo.GetVersionInfo), or with WinAPI (GetFileVersionInfo()).
In attachment you can found the example, which returned proper version of the application.
Best regards,
Andrey.
Attachments:
GetVer.zip ‏137 KB

Similar Messages

  • Whats app version problem

    Hello,
    I tried to update the app "what’s app" but it gave a message "907 invalid COD" error and the old version app is not visible any ware.
    But when i tried once again for download it says that the old version is already present and "do u want to replace"
    my question is -how to go back to old version and make it available for use 

    Hi vinaybp
    Welcome to BlackBerry Support Forums
    Most often this error " 907 invalid COD " is resolve if we perform a battery pull restart and then try downloading it again over a strong Data coverage area . Have you tried to download it again ?
    Or first delete any instance of Whatapps from your BlackBerry before downloading , for that On your Homescreen > Options > Device > Application Management > locate and delete Whatsapp from that list 
    KB10040  :How to view or remove installed application on a blackberry smartphone
    After delete perform another Battery pull restart by removing the battery while your device is powered on , after reboot visit BlackBerry World  to download the most recent available. 
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Enterprise app version problem

    I setup a osx server 3.0 and want to deploy enterprise app using profile manager.
    I added a app called "abc 1.1" in Profile manager - Apps library and I can deploy this app to user with no problem.
    But When I update abc 1.1 to 1.2, I cannot keep both version in app library.
    In app Library , it only shows the app "abc" with no version displayed, so I cannot deploy both versions to users.
    How can I seperate the version in app library instead of over-write my old version when I add the new version to the app library?
    Thanks!

    Hi, Tushar,
    There are different possible ways to do this. You can do this with .NET (FileVersionInfo.GetVersionInfo), or with WinAPI (GetFileVersionInfo()).
    In attachment you can found the example, which returned proper version of the application.
    Best regards,
    Andrey.
    Attachments:
    GetVer.zip ‏137 KB

  • SendAndLoad fails in mac .app version - possible security setting problem?

    Hi all,
    I'm having trouble with sendAndLoad working on the .app version of a flash application I made. So far it's only happening on one computer, so it appears to be some sort of security setting.  Here's what's going on:
    I've built a flash application (Flash 9, AS2) that has three versions: an online version, a standalone  .exe version for PC, and a standalone .app version for mac. The user must log in to use the application. Online, this is handled by the portal hosting the flash. In the standalone versions, the user must login through the flash application. Through sendAndLoad, it accesses the same database of user info as the online version. The user just enters username/password, clicks "Submit," and if it finds the combination in the database, it lets the user in. If not, it gives them a message saying they entered the wrong username/password.
    This has tested fine across macs and pcs, but sadly one macbook can't use the .app version. It launches, they put in valid username/password, hit submit and it freezes. All I can tell is that it gets the httpStatus number 0. As you can see below, I've got it set up to spit out an error message if it fails to load (login_lv.onLoad = function(success)), but it doesn't even do that.
    I've put a crossdomain.xml file at the root level of the domain that's set to allow access from any domain.
    This computer can log in successfully to the online version of the course, but the .app version seems to be hampered by some sort of security setting. The problem computer's settings match the settings of a mac I've tested successfully. It has up-to-date Flash 10 and is running Leopard. Here are security settings:
    System Preferences>Security
         General
              Everything is unchecked
         FileVault
              Turned off
         Firewall
              "Allow all incoming connections" is selected
    I'd appreciate any ideas anyone has. I'm far from wise about the ins-and-outs of mac security, so I may be missing something. I'm happy to clarify anything.
    Code is below. It loads login_lv first, then bookmark_lv. It never gets far enough to load bookmark_lv. The severAppUrl is set to a placeholder for confidentiality's sake. The path is defintely right. It works on other computers.
    Thanks!
    Mike
    // create a LoadVars instance
    var login_lv:LoadVars = new LoadVars();
    // add the login variables to pass to the server
    login_lv.userid = "";
    login_lv.pwd = "";
    login_lv.modname = "a";
    // setup login urls
    var serverAppUrl = "http://myurlhere"; //this is just a placeholder. good ol' confidentiality agreements...
    var loginUrl = serverAppUrl+"login.asp";
    // setup bookmark urls
    var bookmarkUrl = serverAppUrl+"menu.asp";
    var bookmark_lv:LoadVars = new LoadVars();
    // add the bookmark variables to pass to the server
    bookmark_lv.studentid = "";
    bookmark_lv.isAdmin = "";
    bookmark_lv.modname = "A";
    _global.modnameTemp = bookmark_lv.modname;
    // setup login function
    function doLogin() {
    login_lv.userid = login_mc.user_txt.value;
    login_lv.pwd = login_mc.pwd_txt.value;
    login_lv.sendAndLoad(loginUrl,login_lv,"GET");
    // send the login info
    login_mc.continueBtn_mc.onRelease = function() {
    this.enabled = false;
    doLogin();
    // variables will appear in the login_lv object
    login_lv.onLoad = function(success) {
    if (success) {
    if (this.studentid == undefined) {
    login_mc._x = 0;
    trace("not logged in");
    debug_mc.body_txt.text+="\nnot logged in";
    if(this.reas == "Please Complete Overview and first 3 Module(s) with at least 70 score."){
    login_mc.loginBad_mc.gotoAndStop("r2");
    login_mc.loginBad_mc._visible = true;
    } else if(this.reas == "Please Complete Overview Module first."){
    login_mc.loginBad_mc.gotoAndStop("r3");
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc._x = 800;
    trace("now logged in");
    debug_mc.body_txt.text+="\nnow logged in";
    trace("studentid: "+this.studentid);
    trace("isAdmin: "+this.isAdmin);
    //track variables for later use
    _global.studentidTemp = this.studentid;
    _global.isAdminTemp = this.isAdmin;
    bookmark_lv.studentid = ""+this.studentid+"";
    bookmark_lv.isAdmin = ""+this.isAdmin+"";
    bookmark_lv.sendAndLoad(bookmarkUrl,bookmark_lv,"GET");
    }else{
    debug_mc.body_txt+="\nlogin load error"
    login_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n login_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;
    //prepare bookmarkXML to receive returned info from bookmark_lv function
    var bookmarkXML = new XML();
    bookmarkXML.ignoreWhite = true;
    bookmarkXML.onLoad = bookmark_lv;
    // variables will appear in the bookmark_lv object
    bookmark_lv.onLoad = function(success) {
    if (success) {
    trace("bookmarked");
    debug_mc.body_txt.text+="\nbookmarked";
    trace("bookmarkXML: "+bookmarkXML);
    var bookmarkNode = mx.xpath.XPathAPI.selectNodeList(this.firstChild, "/bookmark");
    trace("bookmarkNode: "+bookmarkNode);
    var bookmarker:String = unescape(eval("bookmark_lv"));
    trace("bookmarker: "+bookmarker);
    bookmarker = bookmarker.split("<xml>").join("");
    bookmarker = bookmarker.split("<bookmark").join("");
    bookmarker = bookmarker.split("/bookmark>").join("");
    bookmarker = bookmarker.split("</xml>").join("");
    var startIndex:Number;
    var endIndex:Number;
    startIndex = bookmarker.indexOf(">");
    trace(startIndex);
    endIndex = bookmarker.indexOf("<");
    trace(endIndex);
    var bookFinally:String;
    bookFinally = bookmarker.substr(startIndex+1, endIndex-2);
    bookFinally = bookFinally.split("<").join("");
    setBookmarkStr = ""+bookFinally+"";
    trace("string: "+setBookmarkStr);
    _global.newBookmark = bookFinally;
    play();
    }else{
    debug_mc.body_txt+="\nbookmark load error"
    bookmark_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n bookmark_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;

    try using different loadvars instances for your send loadvars and for your receive loadvars.

  • Problem printing PDF (AppHangXProcB1; Firefox.exe/App. version 19.0.2.4814/Missing App Name: splwow64.ece/ How do I add the missing app?

    When downloading PDF to printer, it stops and window states "Error occurred during printing".
    Additional info from troubleshooting: App. version - 0.0.0.0/ OS version - 6.1.7601.2.1.0.256.48/
    Local ID - 1033. (There are 7 additional Hang Signatures).

    Did the auto download. Is that it?

  • A solution for Secure Static Versioning problem in 1.5.0_10

    Hi,
    I have JRE 1.3.1_09 and 1.5.0_10 on my computer and I think I have solved static versioning problem.
    My test computer:
    - Windows XP sp2
    - Internet Explorer 7 (on another computer also IE 6)
    - Firefox 2.0.0.1
    - JRE 1.3.1_09
    - JRE 1.5.0_10
    I. Solution for Internet Explorer 6 and Internet Explorer 7
    1. Edit registry and add:
    HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Deployment\Policy
    DWORD: EnableSecureStaticVersioning = 0 (Hex)
    2. Restart browser if started.
    3. Start web page with java applet.
    II. Solution for Firefox 2.0.0.1:
    1. Install 1.3 JRE in the same parent directory as 1.5 JRE.
    Because default default installation path for 1.5 JRE is C:\Program Files\Java\jre1.5.0_10 you need to modify
    1.3 installation path from default C:\Program Files\JavaSoft\JRE\1.3.1_09 to C:\Program Files\Java\jre1.3.1_09
    After installation check out that "bin" directory is in the following path:
    C:\Program Files\Java\jre1.3.1_09\bin
    2. Install 1.5 JRE in default installation directory: C:\Program Files\Java\jre1.5.0_10.
    After installation check out that "bin" directory is in the following path:
    C:\Program Files\Java\jre1.3.1_09\bin
    3. Restart browser if started.
    4. Start web page with java applet.
    Note: HTML page must use <object> tabs for Internet Explorer or <embed> tabs for any other browser (e.g. Firefox). You need to specify correct classid in object and/or embed tag.
    P.S. If anyone would like to discuss with me send me an e-mail to [email protected], but please post question to forum and just mail me a link to forum. I will write my answer to forum.
    Hope this helps,
    Grofaty

    I have been trying to find a solution for this issue at our organization for over 6 months. Finally, we have a work around to run multiple java versions for newer and aging java apps.
    Thanks,
    Adunlow

  • I downloaded the corresponding Apple app, version 1.0.3627. I carefully followed the sync instructions several times and was unable to connect. 4 emails with no response. Help

    I received a cookoo watch as a gift. After downloading the Apple App, version 1.0.3627, I carefully followed the instructions repeatedly to connect to my iphone 5 only to fail to get a connections. I tried rebooting, turning of and on bluetooth and wifi with the same results.  I have connected to the help link in the app and after four emails over the past week, have not had a response. Any suggestions? I almost feel like someone gave me an expensive bird house that happened to contain a cheap watch.

    Definitely seems to me this is a problem with the App Developer. Hope they can get your cuckoo working.

  • How to reset the wiki server (MAC OS X 10.9 with OS X Server App Version 3) with all wiki datas only

    Hi,
    I need to reset my Wiki on MAC OS X 10.9 with OS X Server App Version 3, but without reinstalling the whole server app to configure all services.
    Does anybody knows how to reset the wiki server (MAC OS X 10.9 with OS X Server App Version 3) with all wiki datas only.
    Thanks a lot for your hints

    Hi Linc,
    sorry, I haven't saved the System-Logfile before restoring my parallels VM.
    But it looks like issues of linking data.
    For testing the Server services I have done a reset for a user password and I have deleted the profiles and configuration from Client-Side. One with Mac OS X 10.9.1, one iPad with iOS 6.1.3. But it was not possible to reconfigure/reinstall the Server Profile. Also a manually configuration was odd, because for some services the new password was necessary and for other services the old password. Very strange.
    To bring back the services I have rolled back the last snapshot of my parallels VM. Afterwards there was no probleme to reconfigure/reinstall the Profile on Client-Side (OS X 10.9.1 and iOS 6.1.3). Also the manually configuration shows the password for all services are matching with the current configuration.
    I'm going to install a further parallels VM with Mac OS X 10.9.1 and Server App 3 from scratch to move the services.
    Greetings

  • AcroExch.Document version and AcroExch.App version is different

    Currently I have installed Acrobat 9 Beta version but in the registry and AcroExch.App version is set as 8 and AcroExch.Document version is set as 9 Because Of this I have problem in application. Why is this difference.
    Thanks & Regards,
    Gnanaprakash

    You should probably report this to the beta coordinator.
    Aandi Inston

  • IPad Fios Mobile app version 2 upgrade

    Verizon, is the there a fix to all the problems reported in version 2 Review section in the App Store? Ever since upgrading, i keep getting authentication error please try again. Did you guys ever do any suitability testing before deploying this upgrade? Please fix this ASAP.

    UPDATE AS OF : 11/11/13 10:23 AM
    On My iPad 2
    My Fios Mobile App
    Version:2.0.7359   I did not uninstall/download this Version ...that's what it is today.
    ALL PARTS OF IT WORKING FOR ME.
    Could these SETTINGS in My Fios Mobile app. have a bearing on your situation ?
    My Ip: 72.76.xxx.xxx
    My Fips Code is: 34_003      which identifies NJ_Bergen County
    After uninstalling and downloading new Version did you COMPLETELY shut down your iPad ?
    In other situations this has solved problems ?
    Please let everyone know when you get a solution.
    Tom
    Freedom Essentials, QIP 7100 1,Bose SOLO TV Sound System,,QIP 7216 P2,M1424WR Rev F, iPad 2 WiFi,iPhone 5,TV SYST INFO Release 1.9.5 Build No. 17.45
    Data Object 39.45

  • Ok, I have deleted EVERYTHING off my 16gb ipad. Photos, music, apps. All I have are the standard apps. It says I have used 11gb and only have 1.6 left. When I first bought it I had up to 4 movies and lots of apps, no problems. What's going on please!?

    Ok, I have deleted EVERYTHING off my 16gb ipad. Photos, music, apps. All I have are the standard apps. It says I have used 11gb and only have 1.6 left. When I first bought it I had up to 4 movies and lots of apps, no problems. What's going on please!?

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • I dont remember the first apple id that link with my clash of clans apps. the problem now is i need to link my COC village and it keep saying "please log in with correct game center" is there anyway that i can retrieve my old apple id? please help me

    i dont remember the first apple id that link with my clash of clans apps. the problem now is i need to link my COC village and it keep saying "please log in with correct game center" is there anyway that i can retrieve my old apple id? please help me i dont want to lose my village, i have spent my money on that game to much. hmmm

    thanks mate, but the problem is im using different apple id now, and after about 1 year play coc and today i want to link the village , suddenly coc said that
    thats mean im playing this village with different apple id and it not saved. and the problem is i dont remember the first apple id and password that i use first time to download this game. hmmm it was so confusing, why coc and game center just make this thing saved with a new game center account.

  • Hello, okay? On September 13 I bought an iPad and in October bought a game on the app store problem is that when informed the card number dropped normally, but then went on to ask for a new form of payment because one had given any errors, and so not lowe

    Hello, how are you? On September 13 I bought an iPad and in October bought a game on the app store problem is that when informed the card number dropped normally, but then went on to ask for a new form of payment because one had given any errors, and so not lowered any other game and not upgraded the already downloaded. I do not know what exactly I have to do, because if informed a new payment method continues with the same problem, checked the card bill and really had given an error, because there was no billed the game. I ask you to verify what happened and explain to me what I need to do, because my single card is Visa's and do not intend to return others to use the services of the App Store.
    Thank you for understanding.

    I think you need the app store support. http://www.apple.com/support/mac/app-store/contact/ Go there and use one of the methods to contact them about your issue and they should be able to help you out.
    This forum isn't checked by Apple employees but is for users to help each other out.
    Phil

  • When attempting to set up Mac OS to open a specific app (version), and selecting 'Change All' on Get Info, it reverts to most latest app version of the same.  Any clues?

    When attempting to set up Mac OS to open files with a specific app (version), through 'Change All' on Get Info, it reverts to most latest version of the same app.  Any reason why it does not allow my other version of same app to be the default one?

    I have Acrobat Pro 10.1.13 and Adobe Reader 10.1.13.
    If I use the Finder to get all PDFS to open with Reader instead of Pro, they do.  And vice versa, using the Change All.

  • Preview App printing problem

    Running 10.6.8 on a Quad-Core PowerMac with Canon IP2600 printer via USB.
    Thought I was running out of ink at first, but a closer look shows documents printed from Preview.app are printing only outlines of black characters and black graphics as if everything is in an outline font. At first it was the lower 2/3rds of the page, then 3/4s, now it's the entire page printing black in faint outlines only, very precise (while color logos print normally).
    These docs are PNGs. The same PNG prints perfectly in Photoshop. So I created a doc in Photoshop with two thick, solid, vertical black lines; saved and printed as a PNG and as a JPEG, both print fine in Photoshop. When opened and printed in Preview, both print as a series of very thin rectangular outlines running down the page.
    Started happening out of the blue a few days ago, so I trashed three Preview pref files (showing recent modification dates), restarted and nothing changed. Do I need to reinstall the app? Can't think of any recent changes that might've affected Preview or the printer, no updates or installs in the past few weeks. Preview displays onscreen as it's supposed to.....
    Anybody have a clue what's going on here? The only other Preview.app printing problem I can find has to do with printer color profiles.....
    Thank you for any suggestions, I'm stumped!
    Mike

    Well..... duh!
    The real mystery is why docs in Photoshop continued printing long after Preview had quit printing those SAME docs. Photoshop never did fail to print - but a new ink tank/print head solved the problem.
    Good thing ya can't LOSE points for asking stupid questions, huh.
    D'oh!

Maybe you are looking for