Building an application that does not use any local program files or libraries

I need to build an application that will not use any local libraries or LabView program files(even if LabView is installed on the PC). I also am curious if anyone knows if there is a way to debug such an application(in it's compiled state).
Any help on these topics would be greatly appreciated.
-Nate
Solved!
Go to Solution.

Hello,
I am unclear on what you are trying to accomplish here. As the previous poster mentioned, if you enable debugging when building your application, you can remotely connect and probe the block diagram of the running executable. Executables use the run-time engine but could also access drivers or other run-times if using a specialized toolkit/module. This all depends on your application.
-Zach
Certified LabVIEW Developer

Similar Messages

  • Using a dll function that does not have any inputs from a VI

    Hello all, I'm very new to Labview, I have wraped a dll library using the LVlib wizard and now I am trying to use it in a project.  I have a function that does not take any inputs or return any thing except that a struct is populated with some status information as part of the call.  I am able to draw a StartInterface VI because my void startInterface(const char* configFile, struct status_struct* status) takes the location of a configutation file as an input. But I can not figure out how to connect my Call Library Node to my a function vi that does not have any inputs ( void shutdownInterface(struct status_struct* status)). 
    Note that the status struct is deffined to be only and out put at the creation of the LVLIB.
    Thanks, Mike

    Thanks for the responses guys:
       I think I am aware of the conotations of inputs and outputs when I created the lvlib I specified the argument  struct status_struct* status as only an output instead of the default of input and output.
    I do not think that I am doing anything as complex as function callbacks. My immediate goal is to have an executable (I have application builder) with two buttons and two three text fields one text field for the input of the config file, two text-fields for a cstring that is contained in the status struct; one button to start the interface and one button to stop the interface. 
    This is in all likely hood a case of my self being too dense and missing something fundimental ;-)  I just can't figure out how to wire the shut down method after I've configured the call library node. See the attached pictures:
    Attachments:
    Start.jpg ‏7 KB
    shurtdown.png ‏9 KB

  • WSDL for WSDL based Proxy that does not have any input

    Hi all,
    I am trying to create a service which is based on a db adapter. The db adapter is created using a procecure that does not accept any input and gives out a cursor. I have created a
    proxy based on a wsdl which was created by me. I have not given any soap:body in the input as I dont have any input for this service. When I test the service it is not going into the
    request pipeline instead what ever the input (Here input in the sense even the proxy does not have any input as per the wsdl we need to give some xml tag to test it right?)
    to the proxy service is getting echoed back. It is neither going inside the request pipline nor Invoking the business service. When I create a proxy service as a plain xml then It is
    working fine. I am very confused and donno what to do.. Kindly help me on this.
    thanks
    Edited by: 887737 on Apr 5, 2012 4:20 AM
    Edited by: 887737 on Apr 5, 2012 4:21 AM

    it depends on the selection algorithm you have on the proxyservce
    on the fourth tab you can dispatch based on soapaction/body/header/etc
    you could dispatch on the soapaction and skip the body

  • My application exe does not allow any other exe to be opened above it.

    Hello All.
    I want to ask that when my application exe runs, it does not allow any other program or any other exe to be opened above it. Instead other exe opens but behind that and my exe always remains at the top. Is there any way so that i launch any exe,and it opens above my application exe.
    Regards.

    Choose 'Never' for the floating style of your panel.

  • Login that does not use https

    I don't have access to https sites from my current work facility.
    Do you have a login method that does not use HTTPS?
    Is there any way that I can link my metalink account and my OTN account, and get to OTN through my metalink account?
    David

    Okay ... I fixed this, Oracle XE finally convinced them to let us have access to https at OTN.
    David

  • Can I convert a proxy for a class that does not has any interfaces?

    Can I convert a proxy for a class that does not has any interfaces?

    Hi.
    I can hardly understand your question: what do you want your proxy (what kind of proxy?) to be converted into?
    All I can tell you is the following: Proxies created using java.lang.reflect.Proxy can only be created using an interface. This interface has to be implemented by the proxied object. So: no interface, no java.lang.reflect.Proxy.
    Bye.

  • Customer Query to idetify customers that does not have any transactions

    Dear All,
    I am using the following query to find out the customers that does not have any transactions in the system:
    SELECT customer_number, customer_name, DECODE(status,'A','ACTIVE') current_status
    --count(*)
    FROM ra_customers
    WHERE customer_id NOT IN (select distinct bill_to_customer_id from ra_customer_trx_all)
    ORDER BY customer_name ASC
    Is this right?
    The above query is to identify those customers that were added by mistake and that does not have any transactions been done.
    Please update...
    Many thanks in advance...

    santark wrote:
    Dear All,
    I am using the following query to find out the customers that does not have any transactions in the system:>
    SELECT customer_number, customer_name, DECODE(status,'A','ACTIVE') current_status
    --count(*)
    FROM ra_customers
    WHERE customer_id NOT IN (select distinct bill_to_customer_id from ra_customer_trx_all)
    ORDER BY customer_name ASC
    You are will only see customers which have not been BILL TO there could be SHIP TO Customers as well hence look out for all the usages of customers in the AR transactions to get the query right.
    Is this right?
    The above query is to identify those customers that were added by mistake and that does not have any transactions been done.
    Please update...
    Many thanks in advance...Thanks

  • Create timer function that does not use start-sleep

    Hey all I would like to create a timer function that does not use the start-sleep command because this freezes my GUI. I've wrote the start of a function but it seems to move on before the specified time has finished.
    Here's what I have:
    $Global:timerCounter=0
    $Global:timer = new-object System.Windows.Threading.DispatcherTimer
    Function Timer{
    param(
    [parameter(Mandatory=$true)]
    [int]$time
    $timer.Interval = [TimeSpan]"0:0:$($time)"
    $timer.Add_Tick({
    $Global:timerCounter++
    if($Global:timerCounter -ge 1) {
    $Global:timer.Stop()
    $timer.Start()
    Then in my script i would like to call Timer -time #of seconds. It seems that when I call it the add_tick is registered and then started but it continues on with the rest of my script. Is there a better way of doing this without using start-sleep?
    Thanks!

    Okay the issue I'm having is that I have code after the $timer.start that I don't wan't to run till a powershell job is done. In all the examples I've seen it has to come to the end of the code then it starts the tick. So in your example it comes to the
    end of of your code and showsDialog() then starts ticking.
    So:
    add-type -AssemblyName system.windows.forms
    $form=New-Object System.Windows.Forms.Form
    $btn=New-Object System.Windows.Forms.Button
    $form.Controls.Add($btn)
    $btn.add_Click({$form.Close()})
    $btn.Dock='Fill'
    $btn.Font='Lucida Console, 20.25pt, style=Bold'
    $btn.Text=[DateTime]::Now
    $timer=New-Object System.Windows.Forms.Timer
    $timer.Interval=1000
    $timer.add_Tick({$btn.Text=[DateTime]::Now})
    $timer.Start()
    $form.ShowDialog()
    #I want to do other things here but only after the ps job has finished
    Thanks I really am trying to figure this out. 
    Here is the code I'm working with I guess I'm unclear on how to order the timer and the rest of my code:
    if($syncHash.mainCopy){
    $syncHash.mainJobDone = $false
    $syncHash.writeHost = $false
    while(-not $syncHash.mainJobDone){
    [System.Windows.Forms.Application]::DoEvents()
    if($syncHash.writeHost -eq $false){
    Write-OutputBox -Message "Copying"
    $syncHash.writeHost = $true
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    $syncHash.currentCopyTime++
    }elseif($syncHash.currentCopyTime -ge ($syncHash.averageCopyTime * 2) -and $syncHash.collectionCopyTime.Count -ne 0){
    $syncHash.Unusable += $syncHash.currentMainCopyMachine
    $syncHash.computersNotForInstall += $syncHash.currentMainCopyMachine
    $syncHash.inProgress = $null
    $syncHash.mainCopyTimedOut = $True
    Write-OutputBox -Type WARNING: -Message "$($syncHash.currentMainCopyMachine) is taking too long. Removing Job.."
    Add-Content -Path $log_path -Value "$($syncHash.currentMainCopyMachine) taking to long to copy to"
    Stop-Job $syncHash.mainCopy
    }else{
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    Write-OutputBox -Message "." -NoNewLine
    ############################# ############# So I need it to wait right here I have other code other than in this block ############# that needs to run $syncHash.currentCopyTime++
    if(-not $syncHash.inProgress){
    $syncHash.mainJobDone = $true

  • TS1702 HOW TO CANCEL AN SUBSCRITION  FOR AN APPLICATION THAT DOES NOT WORK

    HOW TO CANCEL AN SUBSCRITION  FOR AN APPLICATION THAT DOES NOT WORK

    Please stop SHOUTING at us.
    http://support.apple.com/kb/ht4098

  • Install maverik on my MacBook Pro, I had no problem. Two days later I was shut down suddenly and reboot with a closed padlock and asking me for a password that does not match any of mine. What I can do?

    Install maverik on my MacBook Pro, I had no problem. Two days later I was shut down suddenly and reboot with a closed padlock and asking me for a password that does not match any of mine. What  can I do?

    Try booting to the Recovery drive, running Disk Utility and Repair disk and Repair Permissions.
    1. Reboot and immediately hold down command and R (two keys).
    2. When you see the screen shown on this page, select Disk Utility and continue.
    3. When DU is running, select the hard drove on the left, First Aid and Repair Disk.
    4. After Repair Disk, click Repair Permissions.
    Quit DU and restart.

  • The timekeeping system we use does not like HTML 5 so what is the latest version of Firefox that does not use HTML 5?

    We have been told by our timekeeping system provider that the latest versions of FireFox, Chrome and IE are not compatible with their websites at this time. I was told that it was because of the use of HTML 5 by the more recent versions of these web browsers. I need to download the most recent version of FireFox that does not use HTML 5. Can anyone tell me which version this would be?

    It isn't "Timesheet Next Generation", is it? We had a thread on that here: [https://support.mozilla.org/questions/961306 Websites using php and mysql stopped sorting drop down lists properly starting last week. Did something change?]
    Unfortunately, HTML5 is a large specification with a lot of parts that has been implemented in pieces over the course of several years. It would be really helpful if your vendor could indicate what EXACTLY is not compatible and then it could be researched. Otherwise, you'd have to use trial and error. Either way, you would end up with an older browser that isn't safe to run on the internet. It could be time to consider other vendors...

  • I cannot run iPhoto after update to Yosemite.  I cannot update iPhoto because the application store does not have any iPhoto update available.  Anyone can advice how to overcome this hassle?

    After update to Yosemite 10.10.3 the iPhoto program icon is banned and there is an error message that an update is required to run iPhoto, but the application store shows a message that iPhoto does not have any update available at this time.  There is not even any iPhoto program available on the application store.  Any suggestion on how to solve this annoyance?

    mende1 wrote:
    Unfortunately, Apple has removed both iPhoto and Aperture from the Mac App Store so they cannot be downloaded anymore. This means you are forced to migrate to Photos (included in OS X 10.10.3) or, if this app does not include features you need, look for a different app.
    Not true. Apple has removed both Apps from App Store so you cannot buy them anymore. But if you have any of these Apps already purchased in the past, then you can still download them on your Mac.
    Aristotle247 wrote:
    After update to Yosemite 10.10.3 the iPhoto program icon is banned and there is an error message that an update is required to run iPhoto, but the application store shows a message that iPhoto does not have any update available at this time.  There is not even any iPhoto program available on the application store.  Any suggestion on how to solve this annoyance?
    Open App Store, sign in with your Apple ID and go to Purchases tab. If you see iPhoto app listed there close down the App Store and do this steps as this is what worked for me:
    Open Finder and go to Applications folder.
    Locate iPhoto app
    Drag iPhoto app from your Applications folder to Trash (NOTE: Do not emptied Trash yet)
    Open App Store app and navigate to Purchases tab.
    Click on Install button which is next to the iPhoto app (on the right hand side).
    Once iPhoto is downloaded again, test it if its working for you. If all is ok, you can remove your Trash.

  • Cannot modify application: [dimension] does not have any members

    Hi experts,
    When I try to add a newly created dimension to an application, I get the error message: "[dimension] does not have any members. Validate and process members first".
    I have indeed added members to the dimension and saved to the server and processed. However, I guess that the processing does not work as it should because when I process the dimension, it only goes further than "Progress (1/4)", followed by the message "The task has been successfully completed".
    I would expect it to go up to "Progress (4/4)....
    The backward compatibility pack has been installed.
    Any suggestions?

    Hi Petar,
    - Version is 7 SP4 for Microsoft
    - It's a customer install
    - Same behavior in Apshell. I can "process" the dimension in Apshell but I don't think it really processes it. It still stops at step 1/4 even at Apshell
    - When I add the dimension to an application, it says that the dimension does not contain any members, even in ApShell.
    So to summarize: the behavior is the same in Apshell.
    Can I look into any logs to see exactly what happens?
    Thanks,
    Sam

  • Keithley 6487 Driver That Does Not Use IVI

    Hi,
    Does anyone know if a driver set has been developed for the Keithley 6487 that does not require the Keithley IVI? To date I have been using .llb packages to control instruments and would prefere to use one in this case if possible.
    Many Thanks
    Ben

    Hi Ben,
    Thank you for contacting National Instruments. Please only post once as posting the same question many times divides the effort of the group and generally results in a longer resolution time.
    Duplicate post
    Thanks
    Andrew McLennan
    Applications Engineer
    National Instruments

  • My ipod touch is not turning on, i tried to reset it holding home button   power but that does not work, any idea?

    my ipod touch is not working , i tried to rest it holding the power button and home for a while but that does not help..
    any idea ?

    Connect the iPod to its syncing computer.  Let it charge for 1/2 hour .  If iTunes sees the iPod restore it via iTunes
    Next see if placing the iPod in recovery mode will make it visible in iTunes so you can restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore
    Also see:
    iPod touch: Hardware troubleshooting

Maybe you are looking for

  • Help with my error message

    this is my second iPOD with the same error message. "Attempting to copy to the disk "CYNDIEBRAY" failed. The disk could not be read from or written to." can someone help me use my iPOD.. the genius desk just exchanged my other on. i have a new 80GB a

  • Using US MacBooks in the UK

    I am trying to use my US Macbook in the UK. I tried to connect it to the power outlet botn with a conventional adapter and with a voltage converter; but in neither case does the adapter seem to be satisfied with the kind of power it gets. The light o

  • JSF Custom Validator Problem

    Please help, I have written a handful of custom validators and I'm having a small problem with them. For some reason the validator will not display there message in a <h:message> tag. They do however display in a <h:messages> tag as long as the globa

  • Acrobat pro 6.0 and vista

    We are upgrading to VISTA from XP and Acrobat Pro 6.0 will not complete installation.  Is this a known issue?  I am finding conflicting information and need to know if there is a patch or if we just need to upgrade. Thanks for any help

  • Where within CS6 Photoshop will I find the folder and file to clear the scratch disk on my harddrive ???

    Where is the folder (and file) to erase the scratch disk ...