When i run my executable it gives error 7

when i run my executable it gives error 7
and this is the error messege:
Error 7 occurred at Invoke Node in PRC_Deploy.vi->Deploy Library.vi->Deploy SV2.vi->WSfrontpanel.vi
and can any one tell me how to deploy the shared variable libraries on my executable file
m.shair
Mahmoud Alshair
Intelligent Systems Integrator ( ISI )
System Developer
Solved!
Go to Solution.

Hi Mahmoud,
What are you doing at the Invoke Node? Are you calling a vi? If you are check this KnowledgeBase.
For deploying shared variables from your executable, check this KnowledgeBase.
Regards,
Hillary E
National Instruments

Similar Messages

  • Why do I get "error code 3: Could not load front panel" when I run my executable​.

    I have a LV 8.5 VI that controls only an agilent spectum analyzer. The agilent VIs call DLLs rather than SCPI commands. I created an application and an installer to load on a non LV machine and ran setup which was successful. When I run the EXE I get "error code 3: Could not load front panel" for each of my agilent spectrum analyzer VIs. I have to click "OK" about ten times, once for each VI. (My executable runs fine on all machines that have labview 8.5) The front panel does load with a broken arrow. The errors listed when the arrow is clicked for all of the Agilent VIs state: Missing subVI AGE444xInitialize.VI (or close.VI or read.VI etc.)
    There is an AGE444x32.DLL in the data folder with the EXE file so I included as support both the DLL and all of the agilent drivers in the application build. Still no luck. I have built the application and installer about 6 times in various forms. I NEED AIR SUPPORT.
    Unfortunately I do not have access to the internet at my jobsite so bear with me.
    Rob

    Hi V-rob,
    I'm glad to hear the executable is working now that NI-VISA is installed.  Thanks for posting the solution!
    Jennifer R.
    National Instruments
    Applications Engineer

  • When I run the report it gives some error, any body knows about it help me.

    Hi ALL
    I instl business content reports for my client req, but now some repots are working and some reports gives
    error below,
    The requested query 0CSAL_C07/0CSAL_C07_Q0101 does not exist on the current server
    Error when generating dataProvider 0CRM_PRLI_Q0101_V01
    i can not able to run the reports , did any body face this error plz help me

    Thanks for reply
    when I instal business content , when i instal respective query/cube belong to this error occured one ,
    when i click on instal it gives error like the colected objects are not found?,what can i do
    Thanks & Regards
    Sanjana

  • Get these two error messages when I run the iTunes exe file:  Error 2 and Error 2 (Windows error 2).  Both say Apple Application Support is required.  Uninstalled and tried to install again several times.  Using Windows 7 64 bit on laptop.

    Trying to install iTunes on my Dell laptop with Windows 7 - 64 bit.  Get these two error messages when I run the iTunes exe file:  Error 2 and Error 2 (Windows error 2).  Both say Apple Application Support was not found.  Can anyone tell me why this is happening?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

    Installed Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

    Installed Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

  • When you run Muse 2014 get an error unterminated string constant. Reinstalling does not help. System: Win8.1RU. Help!!!

    When you run Muse 2014 get an error unterminated string constant. Reinstalling does not help. System: Win8.1RU. Help!!!

    Is this occurring on launch? Can you post a screenshot? This isn't an error I recall being reported before.

  • I have exported my bookmarks in JASON format now when I restore this one its gives error " Unsupported file type"

    I have exported my bookmarks in JASON format now when I restore this one its gives error " Unsupported file type"

    Hello UbaidUQ, any luck if you rename the file with no capital letters = .json, (no .JSON)
    thank you

  • Oracle ADF application run while debuging but gives error while running

    Hi,
    I created application in oracle ADF, which accesses database from SQL server 2008. I changed database names to different database having same tables. When I debug it by using breakpoint in EOIMPL class, it runs perfectly. But when run it by removing brakpoint it gives error (invalid object). Please Help.
    Thanks.

    can u paste the complete invalid objects error..
    I rember i have seen this case before which possibly got resolved by removing the system folder.. especially the systemfolder/o.j2ee/drs/ folder..
    may be some synching problem..

  • PL/PDF - Procedure test1 is executed but gives error

    Hello All,
    I have Oracle XE 10g with Oracle Apex and recently I installed PL/PDF in the same. I tried to execute the headerfooter procedure given in the installation guide. But it gives error ORA-20000: ERR-006 Procedure call error: xxfooter. How can I get the header and footer from this procedure headerfooter?
    - create header footer procedure
    CREATE OR REPLACE procedure headerfooter is
    /* 7. Example: Header, Footer, number of pages */
    l_blob blob;
    begin
    /* Initialize, without parameters means:
    - page orientation: portrait
    - unit: mm
    - default page format: A4 */
    plpdf.init;
    /* Defines the page number alias.
    Default: {nb} */
    plpdf.nopAlias;
    /*Sets the page header procedure name. The program name passed
    as a parameter executes when the page header is created. */
    plpdf.SetHeaderProcName(
    p_proc_name => 'xheader', -- Page header procedure name: xheader
    p_height => 10 -- Height of header section
    /* Sets the page footer procedure name. The program name passed
    as a parameter executes when the page footer is created. */
    plpdf.SetFooterProcName(
    p_proc_name => 'xfooter', --Page footer procedure name: xfooter
    p_height => 10 --Height of footer section
    /* Begin a new page, without parameters means:
    - page orientation: default (portrait) */
    plpdf.NewPage;
    /* Sets the font and its properties */
    plpdf.SetPrintFont(
    p_family => 'Arial', -- Font family: Arial
    p_style => null, -- Font style: regular (default)
    p_size => 12 -- Font size: 12 pt
    /* Draws a rectangle cell with text inside. */
    plpdf.PrintCell(
    p_w => 50, -- Rectangle width
    p_h => 10, -- Rectangle heigth
    p_txt => 'Page 1' -- Text in rectangle
    /* Begin a new page, without parameters means:
    - page orientation: default (portrait) */
    plpdf.NewPage;
    /* Draws a rectangle cell with text inside. */
    plpdf.PrintCell(
    p_w => 50, -- Rectangle width
    p_h => 10, -- Rectangle heigth
    p_txt => 'Page 2' -- Text in rectangle
    /* Returns the generated PDF document.
    The document is closed and then returned in the OUT parameter. */
    plpdf.SendDoc(
    p_blob => l_blob -- The generated document
    /* Print it:*/
         owa_util.mime_header('application/pdf',false);
    htp.p('Content-Length: ' || dbms_lob.getlength(l_blob));
    owa_util.http_header_close;      
    wpg_docload.download_file(l_blob);
    end;
    -Create footer procedure
    CREATE OR REPLACE procedure xfooter is
    begin
    /* Sets the font and its properties */
    plpdf.SetPrintFont(
    p_family => 'Arial', -- Font family: Arial
    p_style => 'I', -- Font style: Italic
    p_size => 8 -- Font size: 8 pt
    /* Print number of page */
    /* Draws a rectangle cell with text inside. */
    plpdf.PrintCell(
    p_w => 0, -- Rectangle width
    p_h => 10, -- Rectangle heigth
    p_txt => to_char(plpdf.CurrentPageNumber) || '/{nb}', -- Text in rectangle
    p_border => '0', -- Without frame
    p_ln => '0', -- Cursor position after the cell is printed: Beside
    p_align => 'C' -- Text alignment: Center
    end;
    Thanks.

    Thanks for your reply,
    Since the owner of header/footer procedures is different than plpdf, I should have given the grants to plpdf schema but unfortunately I missed. Thanks for the answer it worked. Instead of creating synonyms for the procedures in plpdf schema I am passing procedure name with qualifier, the name of its owner, to plpdf api (owner.procedure_name).

  • My computer is crashed after 3 hours, when am running an Executable file from LabView 6.0.2

    My VI is using DAQ6025e and GPIB cards, it is countiniusly writing data to files and talking with 2 GPIB instruments and one Serial instrument. Sudenly after 3 hours of perfect working it is crash my computer.
    Does any body know why ??? Help? S.O.S?

    Some questions to help us troubleshoot:
    1)How crashed is your computer when it crashes?
    Blue Screen Of Death crashed? If you don't know about BSOD then that
    is when your computer presents a blue screen (white in XP) and tells
    you that the system is halted, gives you a register dump and the
    memory address where it stopped (all of which is useless unless you
    are an assembly language wizard) and then you have to reboot the
    machine.
    Application error that kills LabVIEW.exe? Usually a pop-up MSGBOX
    style dialog box will appear with a such and such error occurred in
    LabVIEW.exe or another application and an OK button.
    VI Slows to a crawl w/hourglass in the app window? Program doesn't
    stop executing, it just stops responding to user inputs.
    LabVIEW error cluster error that causes the VI to quit?
    2) What O/S are you running? Win 3.1, Win 95, Win 98, Win NT 3.1, Win
    NT 3.5, Win NT 4.0, Win2000, WinME, WinXPHome, Win XPPro?, Linux?, Mac
    O/S?
    In the Microsoft family, WinNT and Win2000 are by far the most stable
    and reliable of the various versions of Windows with Win95 and Win98
    having a lot of problems running for long periods of time. Make sure
    that you get WinNT 4.0 updated to service pack 6 if you are still
    using 4.0 but haven't updated the service pack level yet. There were
    quite a number of problems with it when it first came out that have
    since been cured.
    3) Have you run the LabVIEW VI profiler yet? This will point out
    memory leaks that are due to dynamically built arrays using shift
    registers etc. or appending to strings, or improper IMAQ management,
    etc.
    4) Have you brought up the task manager and looked at the memory
    allocated for LabVIEW.exe and for the whole system as well? Is it
    growing? Sometimes there can be memory leaks that don't show in the
    profiler that will show in the task manager when you look. These can
    be due to bugs in LabVIEW itself or some driver for some hardware you
    are using, etc.
    If you are not running NT or a later derivative, then you won't have
    task manager available but you can get diagnostic tools that are very
    similar to task manager from off the web.
    5) How much memory do you have in your PC? How fast is your PC? What
    does the CPU % usage look like under task manager when you first start
    your app? If it is running >40% CPU usage for any significant amount
    of time at the start then perhaps your PC is overloaded with work and
    you need a faster PC or your code needs redesigning. I like data
    acquisition systems to operate <25% generally speaking. This number
    seems to improve the reliability of the code that is running on them.
    6) How much H/D space is available? You say you are writing data to
    files. Your h/d space isn't running out is it?
    7) Is it possible to run one instrument at a time for several hours to
    see if it is a particular instrument that is causing the crash? Make
    sure that your GPIB cards are properly configured so that they don't
    share resources with any other devices(IRQ, DMA, memory addresses,
    etc.) It may be possible that they behave fine most of the time even
    with shared resources but if they ever try to send a command
    simultaneously and they share resources, they could "collide" and
    crash your PC. You can check all this out in the control panel and/or
    MAX.
    8) Is it possible that your serial port is getting hung up after
    running a long period of time? Serial port UARTS are notoriously
    finicky especially over longer line lengths and higher data rates. It
    could be that your serial instrument is locking up your app or your PC
    serial port is locking up your app and causing the crash. Can you put
    a serial port analyzer in between your serial instrument and your PC
    to see what's going on when it crashes?
    9) Are you trying to read or write to the serial port in more than one
    thread or while loop or dynamically launched vi? If you are you MUST
    protect the serial port access with a semaphore or a VISA resource
    lock. You CANNOT use a boolean global to protect access. Regular
    globals aren't atomic and you can have race conditions that result in
    unintended serial port collisions between differen threads. I have
    seen this lock up multi-threaded serial programs before to the point
    of requiring rebooting.
    This problem can be especially frustrating if you haven't done
    multi-threaded before. The port won't necessarily lock up right away
    or at the same time every time. You MUST make sure that serial port
    access is limited to ONLY ONE execution thread at a time.
    10) Is there another application or service running in the background
    with your application that may be trying to access the serial port or
    GPIB cards when you aren't expecting it? This could cause a collision
    that could crash your system as well.
    Douglas De Clue
    LabVIEW developer
    [email protected]
    Yan wrote in message news:<[email protected]>...
    > My VI is using DAQ6025e and GPIB cards, it is countiniusly writing
    > data to files and talking with 2 GPIB instruments and one Serial
    > instrument. Sudenly after 3 hours of perfect working it is crash my
    > computer.
    > Does any body know why ??? Help? S.O.S?

  • HELP error when appletviewer runs! not a typing error, desperate!

    ahoy chaps, having a slight problem with the old java ....when i go to view my applets i get this error message, please help as im under pressure to hand in a project for my masters....
    C:\j2sdk1.4.1\program1>appletviewer L1Appl1.html
    Exception in thread "main" java.util.MissingResourceException: Can't find resour
    ce for bundle sun.applet.resources.MsgAppletViewer, key appletpanel.badattribute
    .exception
    at java.util.ResourceBundle.getObject(ResourceBundle.java:314)
    at java.util.ResourceBundle.getString(ResourceBundle.java:274)
    at sun.applet.AppletMessageHandler.getMessage(AppletMessageHandler.java:
    39)
    at sun.applet.AppletPanel.showAppletStatus(AppletPanel.java:684)
    at sun.applet.AppletPanel.init(AppletPanel.java:184)
    at sun.applet.AppletViewer.<init>(AppletViewer.java:175)
    at sun.applet.StdAppletViewerFactory.createAppletViewer(AppletViewer.jav
    a:80)
    at sun.applet.AppletViewer.parse(AppletViewer.java:1062)
    at sun.applet.AppletViewer.parse(AppletViewer.java:996)
    at sun.applet.Main.run(Main.java:138)
    at sun.applet.Main.main(Main.java:80)

    emmmm
    check your work folder, and... the HTML code...
    good luck!
    Alvaro
    http://zetazof.tuportal.com

  • Run javah -jni HelloWorld gives error...

    hi all i am new to JNI. i wanted to compiled my HelloWorld.java to header file. in which directory shld i run? i am using jdk1.3.
    this is my error:
    D:\jdk1.3.1\bin>javah -jni HelloWorld
    Error: Class HelloWorld could not be found.
    i hav installed JNI1.2 but not using it yet. what are the settings i shld do?
    thanks to everyone.
    seiw77

    Check your CLASSPATH. Your HelloWorld class should come under the directories listed in the CLASSPATH. Also make sure you include the current working directory "." in the CLASSPATH

  • Reverse Execute Budget give error note

    Hello all,
    I need help from all of you who can suggest me these. I carried residual budget for fund from 2007 to 2008. The step are FMJA, FMJB and FMJC. now the budget was carried to 2008 already but when i want to redo it by using tcode FMJD. The system gave messages "_Read note 817104" and the notes defined that "To reset the residual budget carryforward, maintain the derivation strategy (EA-PS 200 or higher) or the carryforward rules (EA-PS 110 and IS-PS 462), so that 0% is transferred ("FM - CF: Distribution percentage" = 0)._
    To reset the budget carryforward to the commitments, reset the commitments carryforward. Then redetermine the amounts and the budget carryforward.". I didn't get that how to set derivation strategy and how to reset this carryforward. It's first time for me to implement FM , please help me stey by step.
    Thank you very much

    Hello
    Please check this link on the derivation strategy.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/60/01ee403a85712ae10000000a155106/frameset.htm
    Reg
    assign points if useful

  • TS3694 when i update my iphone it gives error 3194

    is there anyone who can help me

    If your iPhone is or was jailbroken that is one possible cause, and there is no solution.
    If it isn't jailbroken and has never been you are trying to install a version lower than 5.1. Installing an older version is not supported.

  • When I run RSPCM gives error in PC and message error, alert, popup

    When I run the transaction RSPCM gives error in process chains and appear several popups, messages, alerts. what can be?

    Symptom
    The job log of a job contains message 00 517 (Job finished) and message BT
    608 (Job status was manually set to 'cancelled').
    Reason and Prerequisites
    There is a program error in the function BP_JOB_ABORT.
    Previously, the function BP_JOB_ABORT did not call the job status check
    correctly. As a result, BP_JOB_ABORT may still have set a job that had
    already finished correctly to 'cancelled'
    Solution
    Import the Support Package or implement the correction instructions

Maybe you are looking for