How to handle missing NIDAQ in built application?

Hello everybody. I wrote an application for measurement. It is distributes as an installer with included LV Runtime and Visa Runtime. It also needs NIDAQmx but because its size I do not include it to the installer but inform the user to install it if it isn't yet. Because I put a lot of effort to have nice and smart error handling I also tried what happens if I run my application without having NIDAQmx installed. And what happens is not really nice as you can see from the pictures. And it's not even all the errors. 
What I would like to achieve is to have just one error being displayed that nidaq is missing - similar to when runtime is missing. Is it possible to set this in the config file? Otherwise I don't know how I could handle this from within my application because those errors appears before it starts.
Thanks a lot
LV 2011, Win7
Attachments:
01.png ‏37 KB
02.PNG ‏28 KB
03.png ‏51 KB

Hello everybody. Here is my result. To be honest one of the best features I learned! Comparable to mastering Event Structure years ago and understanding Queue State Machine concept.
Run Splash_SplashScreen.vi. If you have some comments let me know. Thx
Message Edited by ceties on 09-07-2008 03:06 AM
Message Edited by ceties on 09-07-2008 03:13 AM
LV 2011, Win7
Attachments:
SplashScreen.PNG ‏12 KB
SplashScreenLoad_02.zip ‏89 KB

Similar Messages

  • How to add accessibility to already built application

    Hi,
    Can any one help me how to add accessability to already built application. jdev version which am using is 11.1.1.4.
    Thanks in advance.
    Regards,
    lavanya.

    Hi,
    its mostly a configuration in ADF Faces
    http://docs.oracle.com/cd/E23549_01/web.1111/b31973/af_access.htm
    Frank
    Ps.: One of the beauties of using ADF Faces instead of hand-crafted web site in which case you would have been screwed

  • How to handle Queue blockage due to application error in BPM

    Hi
    In the integration process that i have created, there is a SyncSend(calling a webservice using SOAP adapter) Step.
    Sometimes the response message from the receiver application may be a Fault message.
    Whenever a fault message is sent back to integration process in XI, the message fails and the queue is blocked.
    Bacause of this queue blockage , the next messages to be processed are getting blocked.
    How to handle this?
    Thanks
    Ram

    do you have configured the fault message mapping in the Operation Mapping? what error does the sxi_monitor display?

  • How to handle the error in Oracle9i Application Server?

    After installing the Oracle9i Application Server ,Oracle8i 1.7 Database,I visit the link"http://localhost" ,then click "Jsever (demo)". Then ,there appears "500 Internal Server err".
    The log file:
    mod_jserv.log
    [24/01/2002 09:25:32:031] (EMERGENCY) ajp12: connection fail
    [24/01/2002 09:25:32:031] (ERROR) an error returned handling request via protocol "ajpv12"
    Please help me.Any help appreciated!

    After installing the Oracle9i Application Server ,Oracle8i 1.7 Database,I visit the link"http://localhost" ,then click "Jsever (demo)". Then ,there appears "500 Internal Server err".
    The log file:
    mod_jserv.log
    [24/01/2002 09:25:32:031] (EMERGENCY) ajp12: can not connect to host 127.0.0.1:8007
    [24/01/2002 09:25:32:031] (EMERGENCY) ajp12: connection fail
    [24/01/2002 09:25:32:031] (ERROR) an error returned handling request via protocol "ajpv12"
    Please help me.Any help appreciated!

  • Fin Reports and how it handles #Missing HELP!!!!

    Posting here too as the Fin Reports threads don't get much traffic....
    I have a dilemna.
    I have a expense account 'Office Expense' that has data in it for FY11 Budget of 4K, but for FY12 Budget there is no data so it's #Missing basically.
    How can Fin Reports treat that #Missing in formulas?
    Logic:
    IF FY12 = 0 or #Missing AND FY11 > 0 THEN (FY12 - FY11) * -1
    Result Should be:
    0 - 4000 = -4000 * -1 = +4000
    Is this possible in Fin Reports?

    Here's the equivalent Excel formulas I need converted into Fin Reports:
    To get the value correct plus or minus:
    =IF(AND(A32<0,B32<0),(+A32-B32),-(+A32-B32))
    To calculate pct correctly:
    =IF(AND(C32<0,B32=0),-1,IF(C32=0,0,IF(B32<0,-(+C32/B32),+C32/B32)))

  • How to handle data between 2 bsp applications

    Hello Experts,
    i´ve got 2 BSP applications, users enter in application 1, do serveral actions there, and then jump into application no 2.
    But, they need some data from application one for getting startet in application 2.
    Whats the best bay to pass the data?
    I don´t want to write them into a db table, also i don´t want to pass it via url (?field1=value).
    Are there other possibilities?

    Please search this forum, you will find many threads on the same...
    Raja

  • How to handle missing data when a limit value does not exist

    Hi guys
    I am quite new to all this OLAP stuff and I don't know how to detect the following situation:
    What happens when CREDITT.MYSERIES2 does not exist? the query then returns V1 and V2 populated with the data from CREDIT.MYSERIES1 and CREDIT.MYSERIES3 respectively (and V3 being all NULLs). I have no way of knowing that the limit has not worked on Series2.
    Is there any way to detect this? (perhaps assigning V2 to be all NULLs?)
    Thanks in advance
    Adam
    SELECT
         TRUNC(IND-TO_DATE('01011900','ddmmyyyy')+2),V1,V2,V3
         FROM (                     
              SELECT *                     
              FROM TABLE(                          
                   OLAP_TABLE( 'OLAPFAME.MAG_CRD DURATION SESSION',
                                  'DIMENSION IND AS DATE FROM DAY
                                  MEASURE V1 AS NUMBER FROM AW_EXPR DAILY.DATA(SERIES STATVAL(SERIES, 1))
                                  MEASURE V2 AS NUMBER FROM AW_EXPR DAILY.DATA(SERIES STATVAL(SERIES, 2))
                                  MEASURE V3 AS NUMBER FROM AW_EXPR DAILY.DATA(SERIES STATVAL(SERIES, 3))
                                  ROW2CELL R2C1' ))                          
              MODEL                               
                   DIMENSION BY(IND)                               
                   MEASURES(V1,V2,V3,R2C1)                               
                   RULES UPDATE SEQUENTIAL ORDER())
         WHERE OLAP_CONDITION( R2C1,
                                  'LIMIT SERIES TO ''CREDIT.MYSERIES1'',
                                                 ''CREDITT.MYSERIES2'',
                                                 ''CREDIT.MYSERIES3'';
                                  LMT DAY TO ''21DEC2009'' TO ''31DEC2009'';
                                  LMT DAY REMOVE DAYOF(DAY) EQ 7 OR DAYOF(DAY) EQ 1',
                                  1 )=1

    I am not sure what your issue is entirely because what you posted is not your working code.
    WHERE OLAP_CONDITION( R2C1,
    'LIMIT SERIES TO ''CREDIT.MYSERIES1'',
    ''CREDITT.MYSERIES2'',    <-- this seems incorrect
    ''CREDIT.MYSERIES3'';    <-- semicolon indicates end of statement
    LMT DAY TO ''21DEC2009'' TO ''31DEC2009'';  <-- what is this?
    LMT DAY REMOVE DAYOF(DAY) EQ 7 OR DAYOF(DAY) EQ 1', <-- what is this?
    1 )=1Could you please repost the correct code?

  • How to: Fixing missing icons in gtk applications

    I'm posting this for others to stumble upon, since the other threads covering this problem are already closed or very old, and none of them answer the question sufficiently.
    Upon updating a few days ago, I lost all icons in some gtk applications, for example nautilus and evince (side by side on this screenshot):
    I searched through the forums and google and found several suggested solutions:
    Reinstalling librsvg
    Reinstalling gtk-update-icon-cache
    Running /usr/bin/gdk-pixbuf-query-loaders --update-cache as root
    None of these things made any difference for me, not even after rebooting. You can try them, but what finally made things work for me was:
    Install any other icon theme, e.g. oxygen-icons
    Use lxappearance/gtk-theme-switch2 or manually edit .gtkrc-2.0 to change the icon theme to the newly installed one
    Open one of the affected gtk applications - Most of the icons will be shown
    Change the icon theme back to whatever you had before (GNOME/hicolor in my case)
    Now all the icons in evince/nautilus seem fixed and you can uninstall the other icon theme
    There must be a more straight-forward method, but /usr/bin/gdk-pixbuf-query-loaders --update-cache is not it and at least this method worked for me.
    Last edited by Shapeshifter (2013-10-11 09:23:03)

    Add this line in your .gtkrc-2.0:
    gtk-toolbar-style=GTK_TOOLBAR_TEXT
    Edit...
    Mental note: read more carefully before post
    Yes, is GTK_TOOLBAR_ICONS instead of GTK_TOOLBAR_TEXT.
    Last edited by icrave (2008-07-01 21:52:05)

  • Handle transaction in web dynpro applications

    Hello,
    can you please tell me How to handle transaction in web dynpro applications which is using Adaptive RFC model ?
    Thanks,
    Teja

    Hi,
    please see this [thread|Link to SAP Transaction using WebDynpro for Java;
    regards,

  • How to handle Webservice

    Hi Experts,
    I want to know how to handle webservice in web Dynpro Application.
    I need some documentation regarding this.
    can any one help me.
    Advance Thanks,
    P.J.Balaji

    Hi Balaji,
    Check These links..
    <a href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdjava/faq-Models-AdaptiveWebService&">Adaptive Webservices</a>
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/6bfb2c4e-0a01-0010-8eb4-f21a42d8f6ec [original link is broken] [original link is broken]
    <a href="http://www.systinet.com/resources/tutorials">Webservice tutorials</a>
    <a href="http://www.onjava.com/pub/a/onjava/2001/08/07/webservices.html">Java Webservices and Primer</a>
    <a href="http://www.learningtree.com/courses/577.htm">Building XML webservices with Java</a>
    [url=http://www.accelebrate.com/java_webservices_training/web_services.htm]Introduction[/url]
    Urs GS

  • Missing start boundary exception, caused by an empty Part, how to handle?

    Hello,
    i wrote an application that automatically handles mails from laboratories. The only essential part of the mail is the attachment, where chemical analyses are submitted (from permitted addresses, recognized by whitelist and fileheader of the attachment). Other ways to submit data weren't allowed.
    Currently a mail was received that can't be parsed. It's from a laboratory, that
    use its provider's (a german internet suplier named Arcor) webmail, a browser-based mailing portal. It always worked fine, because they wrote some greetings. But this time they sent a blank message. The result is following structure of the mail:
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
    boundary="----=_Part_50112_10709369.1203586767396"
    //Some X-Flags
    ------=_Part_50112_10709369.1203586767396
    Content-Type: multipart/alternative;
         boundary="*----=_Part_50111_24141780.1203586767396*"
    ------=_Part_50111_24141780.1203586767396--
    ------=_Part_50112_10709369.1203586767396
    Content-Type: application/octet-stream
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=somefile.bin
    ABCDEF.... //Some binary data
    ------=_Part_50112_10709369.1203586767396--
    It seems the webmailer creates an empty mailpart and only writes the end boundary (Line: ------=_Part_50111_24141780.1203586767396--).
    I know, the start boundary is really missing.
    I checked it out by getting a mailaccount from Arcor, and it always creates this structure when sending a message without a text. By the way, the Message-ID (header) generated from Arcor's server seems to be from javamail. (.....1234.567890.....JavaMail.ngmail@....).
    I don't know how many mailclients create "empty" parts, but impossible is nothing (e.g. other or future webmailer services).
    But how to handle?
    The error occures when calling MimeMultipart.getCount(), which causes to parse the mail if not parsed. All actions, which cause the mail to be parsed, will end in this exception (for this mail).
    I looked at the javamail source and found out, that the line of the empty part is not recognized as a boundary, because of its ending delimiters:
    if (line.equals(boundary))
    break;
    So the boundary is added to the preamble. It goes on with reading lines from the stream, until line == null.
    if (line == null)
    throw new MessagingException("Missing start boundary");
    Because there is no test, if the line matches the end boundary, it's not recognized. Wouldn't it be better in this case, to add an empty bodypart and set a variable to false (e.g. complete) instead of throwing an exception? Because MimeMultipart.parse() is called by other methods, like getCount, getBodyPart and writeTo, I can't nearly do anything automatically with the mail. How should i walk through the bodyparts and fetch the parts I'm interested in?
    Subclassing seems to be difficult to me:
    Object content = message.getContent();
    //javax.mail.Message, won't return a subclassed multipart
    if (content instanceof Multipart) {
    //recursive method!
    handleMultipart((Multipart) content); //collecting parts from multipart
    Of course, I could ask the laboratory: "please send me a greeting!" ;-)
    Greetings,
    cliff

    Interesting.
    Yes, it's probably a bug that JavaMail allows you to
    create a multipart with no body parts, since the
    MIME specification doesn't allow that. Still, the
    webmail application should be fixed so that it doesn't
    try to do that, at least including an empty plain text
    body part.
    Please contact the webmail provider and tell them of
    this bug in their application.
    I'll also look into making JavaMail cope with these
    broken messages more gracefully. Contact me
    at [email protected] and I'll let you know when
    I have a version ready to test.

  • How to handle multiple datasources in a web application?

    I have a J2EE Web application with Servlets and Java ServerPages. Beside this I have a in-house developed API for certain services built using Hibernate and Spring with POJO's and some EJB.
    There are 8 databases which will be used by the web application. I have heard that multiple datasources with Spring is hard to design around. Considering that I have no choice not to use Spring or Hibernate as the API's are using it.
    Anyone have a good design spesification for how to handle multiple datasources. The datasource(database) will be chosen by the user in the web application.

    Let me get this straight. You have a web application that uses spring framework and hibernate to access the database. You want the user to be able to select the database that he wants to access using spring and hibernate.
    Hopefully you are using the Spring Framework Hibernate DAO. I know you can have more that one spring application context. You can then trying to load a seperate spring application context for each database. Each application context would have it's own configuration files with the connection parameters for each datasource. You could still use JNDi entries in the web.xml for each datasource.
    Then you would need a service locater so that when a user selected a datasource he would get the application context for that datasource which he would use for the rest of his session.
    I think it is doable. It means a long load time. And you'll need to keep the application contexts as small as possible to conserve resources.

  • How do I add an already built Shopping Cart  (PHP and MYSQL) application to a page in a Muse site?

    How do I add an already built Shopping Cart  (PHP and MYSQL) (Cartweaver 4) application to a page in a Muse site? Do I have to export the Muse site as Html to dreamweaver and them use the extension to bring the shooping cart in or can I do it directly in Muse?
    Message was edited by: mgv2048

    We have experimented with doing this with some good success. We have been working on adding Cartweaver to a Facebook page by essentially adding a Cartweaver store to Facebook in an iframe.  The "store" would be pages with just your basic product display, cart, and checkout functionality, with none of the "window dressing" - just use CSS to match the color and general look of the design it's being added to.
    The one problem with this for Facebook is when it comes time to check out toy have to leave Facebook and go to your server where an SSL is in place.  Fortunately in this situation this would not be the case, you can have an SSL installed to the root of your site and you'll be okay.
    This is an interesting project.  Give this a try and let me know how it goes and if you run into any snags, please make a post on the Cartweaver forums: http://forums.cartweaver.com - I'm really confident that this can work, and not only work, but work well.
    Looking forward to hearing how this goes, and being of what help we can.
    Lawrence Cramer - *Adobe Community Professional*
    http://www.Cartweaver.com
    PHP & ColdFusion Shopping Cart for Adobe Dreamweaver
    Stay updated:
    http://www.facebook.com/cartweaver
    http://www.twitter.com/cartweaver
    http://blog.cartweaver.com

  • How to handle file on application server without coading?

    HI all,
    can anybody tell me How to handle file on application server without coading? Is there any solution?
    Thanks in advance.

    > can anybody tell me How to handle file on application server without coading? Is there any solution?
    what is that you want to handle. what you do if you don't code ...

  • How to handle browser or application crash out of our application in java.

    I am running my application(testing automation tool) through ANT . when i run the same over the remote the browser is getting crashed. so if i need to handle it , i should handle outside my application. my application is written only in pure core java. Plz provide me the solution for handling browser crashes outside our application. so that when i run my application over the remote the browser should not crash.... if i use javascript to handle , how do i communicate java script code with pure core java code......

    this is not directly a security related question, but jars within jars won't be found by the JRE; they won't appear in the classpath.
    Some googling:
    http://forum.java.sun.com/thread.jspa?threadID=740123&messageID=4245964

Maybe you are looking for

  • Fireworks CS5 wont start up in lion (error in preferences folder)

    Ok, after 10 days with out FW CS5 on my new Lion installment. I finally cracked some kind of bug where FW would freeze just after loading and the last text in the CS5 logo was tabs and then the processor would go up to around 81% and just freeze. App

  • Field Guide 8 - Configuring the Database but problems with user id

    Iam just running into problem after problem with Chapter 8 dataproviders when I'am about 2/3 of the way through. I'am now trying to configure the "Login Data Structure" Page 363. After adding the derbyclient.jar file. Then opening DerbyLogin.java and

  • Extract pages depending on pagination?

    Hi all I am receiving on a daily basis a file which contains thousands of print ready pdf's.  These pdf's are customer letters for one of our clients, but the problem I have is that some of the letters are a 1pp, some are 2pp, some are 3pp etc.  Is t

  • Selective Deletion of Infocube data

    BW experts, I have a scenario where in "rough" data already stored in an InfoCube will be replaced by a more "intelligent" data from another source. The deletion/replacement of data should happen without manual intervention (cause flat file data file

  • 'gem install rails' seems to miss a bunch of dependencies

    I followed the Arch Wiki instructions for installing rails. (Though I modified /etc/gemrc to do a system install). 'gem update' worked fine, 'gem install rails' worked fine... But when I try to create a test app for rails as per the wiki: $ rails new