Connect the oscilloscope Tektronix TDS5054 from a LabView application



Tags: NI Software

Similar Questions

  • Error 1722 to the deployment of Installation Windows 7 LabVIEW applications

    Hello

    I use version 8.5 of LabVIEW Application Builder to deploy my standalone executable. I have never had a problem on Windows XP and have been very successful on Windows 7 installation. But now I have a client who gets the following error in Windows 7 (but the same installation package works very well for him on XP machines):

    Installing NO-SUN 1.7.0f0, part 10 of 19 with error 1722.

    Error 1722.  There is a problem with this windows package install.  A program run as part of the Setup did not finish as expected.  Contact your provider to support personal or package.  Contiunue Y or N.

    (Engineers application OR in particular) anyone have any ideas? (My contract has expired. I think that there is a way to report bugs, but is there a way to contact support OR directly in addition to this forum?)

    Thanks for any help.

    Ed

    UPDATE:

    Good news! My client back to me and told me it was his anti-virus (Trend Micro) that caused the error. When he disabled as I suggested (which I have a base of knowledge OR "Error 1722" article), the installation was successful.

    Thank you all until next time...

    Ed

  • Connect the Direct 06 Koyo PLC to LabVIEW

    Please, help me. !!!

    I have can´t connecto Koyo PLC to LabVIEW with OPC, I can't find the tools for this PLC,

    Hi qz6y7q.

    You can find a list of drivers supported here.

    I did find that the exact name, but I found that the AutomationDirect/Koyo DirectNET DL 06 is supported. Is this the same device?

    After watching for them the 2012 OPC servers, I found that they appear only as "AutomationDirect" and its variants, but they must match the Koyo devices listed in the document.

    If your device is not listed, you can contact her directly as Bob_Schor suggested.

    Kind regards.

  • How to connect the line of text from one page to another?

    I'm working on a document with a line of text on the title page that I want to repeat on the footer. My goal is to be able to change the text on the title page and automatically update to match on the footer. Can you please suggest the best way to go about this? I started to try hyperlinks and anchors text, but was not able to find a solution yet.

    Search on how to use text Variables in the help. In this case, you probably want to get your title paragraph style.

  • Read a cluster from a LabVIEW Application on ActiveX

    Trying to not pull my hair.

    New user of TestStand.  We currently have a suite of applications created using LabVIEW .exe that allows the user to manually test DUT.  Try to get a proof of concept goes to show fat improvements if we TestStand resume what the user is doing.

    Rebuilt the executeables with active ActiveX and can almost get everything working the way I want it, except for every time that a type of cluster is involved.  Works cannot read or write.  I created a customized data type to match the type of cluster, but I always get an error of-17308 complain that the Variant data type does not match the variable type expected.  I can get the types of simple data (including tables) to work, but for clusters... nothing.

    Y at - it something I am doing wrong?  Is this possible?

    Dan

    I've tested this method worked.

    To sum up to pass a cluster:

    Create a VI that has a cluster as either the entry or the cluster of production you want out of the EXE.

    Inside this VI, use ActiveX to get the desired virtual Instrument (similar to what you are doing in TestStand).  Call to set the value of control (or get the value of control) on the control that you want to get or set.  You can wire the cluster directly to set the value of control (or get the value of control) in LabVIEW because it stores the clusters in the same way.

    From TestStand, call this VI.  Move in (or on) the parameter desired to get or set.

    I've attached an example that shows how to define a control in the same VI, but you should do something different where you choose your ActiveX Server rather than the LabVIEW ActiveX Server executables.

  • Pass the string as params from a Java application to another

    I'm moving a String as a parameter to a Java Aplications of a second as a startup parameter

    for example I have applications that must call start another Java application (just contains only JOptionPane, simple JFrame or JDialog) before System.exit (0); I'm trying to send some descriptions to close the application to another.

    East of simulations of what these codes I tried this and in this form, the code works correctly and displays the string in the JTextArea...
    import java.io.IOException;
        import java.util.concurrent.*;
    
        public class TestScheduler {
    
            public static void main(String[] args) throws InterruptedException {
                ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(10);
                executor.setContinueExistingPeriodicTasksAfterShutdownPolicy(true);
                executor.setExecuteExistingDelayedTasksAfterShutdownPolicy(true);
                for (int i = 0; i < 10; i++) {
                    final int j = i;
                    System.out.println("assign : " + i);
                    ScheduledFuture<?> future = executor.schedule(new Runnable() {
    
                        @Override
                        public void run() {
                            System.out.println("run : " + j);
                        }
                    }, 2, TimeUnit.SECONDS);
                }
                System.out.println("executor.shutdown() ....");
                executor.shutdown();
                executor.awaitTermination(10, TimeUnit.SECONDS);
                try {
                    Process p = Runtime.getRuntime().exec("cmd /c start java -jar C:\\Dialog.jar 'Passed info'");
                } catch (IOException ex) {
                    ex.printStackTrace();
                }
                System.out.println("System.exit(0) .....");
                System.exit(0);
            }
    
            private TestScheduler() {
            }
        }
    
    //
    import java.awt.*;
    import java.util.ArrayList;
    import javax.swing.*;
    
    public class Main {
    
        private static ArrayList<String> list = new ArrayList<String>();
    
        public Main() {
            JFrame frm = new JFrame();
            JTextArea text = new JTextArea();
            if (list.size() > 0) {
                for (int i = 0; i < list.size(); ++i) {
                    text.append(list.get(i));
                }
            }
            JScrollPane scroll = new JScrollPane(text,
                    ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
                    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
            frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frm.add(scroll, BorderLayout.CENTER);
            frm.setLocation(150, 100);
            frm.setSize(new Dimension(400, 300));
            frm.setVisible(true);
        }
    
        public static void main(String[] args) {
            if (args.length > 0) {
                for (String s : args) {
                    list.add(s);
                    System.out.print(s + " ");
                }
            }
            Main m = new Main();
        }
    } 
    My question:

    whether is there another way to pass a value to a Java application (it should be called System.exit (0);) to another Java application, another way I tried using process/ProcessBuilder

    My crospost http://stackoverflow.com/questions/6121990/pass-string-as-params-from-one-java-app-to-another

    Yes, there are other ways. Is this way do not meet your needs?

    1. There is another exec() signature that accepts an array where the first element is the command and the rest of the elements are its args. It may or may not be a varargs call. That looked something like this, but it might not work exactly as I.

    exec("cmd", "/c", "start", "java", "-jar", "C:\\Dialog.jar", "Passed info");
    // OR
    exec(new String[] {"cmd", "/c", "start", "java", "-jar", "C:\\Dialog.jar", "Passed info"});
    

    2. you can place the information in a file that the second process reads.

    3. you can store information in a database that the second dealing with applications.

    4. you can have a single process open a ServerSocket and either connect to it and send the data in this way.

    5. you can use a higher level like Active MQ, JMS messaging tool, etc.

    6. you can use the RMI.

    7. you can use CORBA.

    I don't know that there are other approaches as well.

    I have no idea to the approach that is best for your needs. It's something that you need to understand, if you do decide, if you view details about your needs here, someone can offer some advice.

  • How to connect the local and Remote Desktop (Android OS) application simultaneously without one shot the other in the login screen?

    I want to connect to my local office via the remote desktop connection, but keep both connected at the same time without being local or remote kicking each other in the bridge/connection between the two. I tried to download and patch the termsrv.dll using UniversalTermsrvPatch - x 86 .exe for Windows Xp 32-bit SP3 compatibility. But still... Settings app may prevent 2 to be connected at the same time? If so could Microsoft please update their app. Any suggestions...

    Try this link for desktop connection xp remotely.

    https://www.Microsoft.com/en-US/Download/details.aspx?ID=7208

  • How can I configure the GPIB Tektronix tds2024 he is detected by MAX

    I try to connect the Oscilloscope Tektronix of TDS2024 to use in LabView. I use the GPIB port. I have to do something with the TDS2024? Or it should automatically detect it. I tried 2 different cables and are detected by the LabView "Measure & Automation Explorer" when connected.

    Hello

    All you have to do is plug your instrument, MAX throw if you have not already done so and scan for instruments.

    You should see the instrument listed under the GPIB device.

    Hope this helps

    Concerning

    Ray Farmer

  • Error time-out random - 1073807339 using pilots of series Oscilloscope Tektronix TDS 200 1000 2000

    I am trying to make measurements of waveform of an oscilloscope Tektronix 1052 B using LabVIEW. My program is intended to be run for hours at a time, and it works perfectly as expected for the first few hours. However, I noticed that after a few hours, there are apparently random of chances that a VISA to read or write the block function will produce the error - 1073807339. After that happens once, all read or write functions also produce this same error for a while. This happens even using subVIs new driver provided by OR (http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=047216EC20B66FABE0440003BA7CCD... Meanwhile if I stop the program, I can still bring up the oscilloscope in MAX and read and write commands him. The error seems to occur within a VI. I already read this page here: http://digital.ni.com/public.nsf/allkb/874B379E24C0A0D686256FCF007A6EA0?OpenDocument, but none of the solutions helped. I know that this is not a matter of actual timeout because I tried increasing the timeout of 30 seconds, but the error always occurs immediately as soon as the function of reading or writing block is called.

    I would like to know why this is happening and what can be done to remedy this. The Subvi in question is provided. This VI is called at various points in the program do acquire a waveform. The inititialize and narrow subVIs are called outside the Subvi.

    Then check your powersettings. Windows may unexpectedly turn off usb power

  • Error launching of the ' LabVIEW.Application [error Code:-18001]

    Hello
    I have a TS 3.4 mind sequence LabView 8.21 - Teststeps.
    The sequence is called from a Labview-OperatorInterface.
    In a step that run 100 times before without problem I receive all of a sudden the error message:

    ErrorMessage: Error running substep 'run '. Unable to launch the "LabVIEW.Application" ActiveX automation server [error Code:-18001]

    After a restart of the software al NOR-everything works normally again.
    What is this error, and what should I do with it?
    Should I ignore the error and try to execute the step again or not this average tht the ActiveX server has been lost forever?
    How can this problem occur?

    Thanks for your help


  • How should I treat the files that have been opened by using my LabVIEW application?

    Hello!

    I want to put the code in my LabVIEW program that she will handle a file opened with.  Let's say I have create my app as an .exe.  I have my .exe associated with a particular file type in Windows.  If the user double clicks on the file, it will launch my labview application.

    How can I get the information in path of file of the file that the user has clicked on in my code so I can handle?

    Thanks for your time!

    -nic

    @Ravens-

    If you put:

    SuperSecretPrivateSpecialStuff = True

     

    In your file LabVIEW.ini, it will unlock an "OS Open Document" event to use in a block Structure of the event with a 'File Path' node on the left side.  Whenever the application is launched via a file of the operating system, this event fires (even if your application is already up to-and-operational).

     

    Works like a champ and is enough would apply us!

     

    This method was published in the forums JKI.

  • acquire data from the oscilloscope DPO2024

    I am trying to acquire data from the oscilloscope DPO2024 using labview. I am able to do, but my vi file only works for channel 1. Other than channel 1, it does not work and instead, it changes the adjustment of the oscilloscope as well. Find the vi files attached.

    Any help is very appreciated.

    You must connect the channel in the waveform of reading.  It is default to channel 1 if thread continues.

  • Oscilloscope for the acquisition of data from the usb-6009 or - example of temporal division for 5 seconds, 10 seconds

    Hey Hey everyone

    I was looking for an example for two-channel oscilloscope virtual using e/s all-in-one of the 14 bits of NI DAQ USB 6009. I tried to research for example BOF time division or s/div for 1 second, 5 seconds, 10 seconds.  but was shocked to find that there is no reference for it. The range of oscilloscoper virtual

    Minimum - 10 micro s / div maximum -10milli second div but there is no example for 1 second / div or 5 seconds / div...  If anyone can guide me. I'm new to labview environment.

    This is the oscilloscope two sample obtained from google search. is there material limitations. ?

    I'm working on continuous 4-channel data acquisition data acquisition using niusb 6009

    The sampling frequency is sufficient for any desired s/div. The sample rate is 12 ksamples / s per channel, so if that meets the Nyquist criteria for the input signal, you can capture it. The number of samples has no effect on that with the exception of the amount of the signal you acquire. Your chart is not stable, if you do not trigger the acquisition. Even as real significance, therefore your emulation seems actually successful.

  • measurement on the display of the tds5034 Tektronix OScilloscope

    I collect data from the Oscilloscope with the Tektronix TDS 5034. I have a problem on the display a light, as on his screen, I know not the appropriate query to use, is there at - he know how to display such a thing? I already read the programming guide, but I can't find any command. or if you you see me just the "query" to show on the oscilloscope screen, because now I know mannualy go to settings of measure of CSOs. just to show them

    Thank you..

    I have this Programming Guide , but I can't understand the correct query,

    I just tried this query, but gives me error rather expect the display on the screen of the OSC, , I also try to add CH before measurement: MEAS1:TYPe AMPlitude;

    but I get the error in the code entry VISA:-1073807339

  • Problem during connection of the oscilloscope

    Hi Im writing a program for measring a signal to oscilloscope Tektronix TDS3054B

    The Instrument Driver Network has links that explain what a LabVIEW driver is and how to use a. Then click on the previous link I gave you and download the appropriate driver. I would recommend the project-style driver.

Maybe you are looking for

  • Quick Fix for more questions to eFax (Photosmart 7510 &amp; Envy 110/114)

    Problems resolved by the patch: Cannot send eFaxesCannot receive eFaxesCannot connect to the eFax on the front panel of the printer.Cannot save eFax on the front panel of the printer.Trying to access with eFax, it says that the printer is not connect

  • Yoga s1 - keyboard/trackpad turn off in tablet-mode/tent

    Hello I have the version of edu 10 school windows to install on my thinkpad yoga s1 and I following driver problems. no rotation of the screen not auto brightness keyboard / trackpad doesn't turn off when screen undergoes a rotation, more mixture win

  • Wireless HP5510 printer

    I hope someone can help I had my printer wireless for more than a year (now out of warranty) and two weeks, he ceased to connect to the computer, I've sent e-mails to HP, but the problem has not been resolved, here's what I said to HP (sorry if this

  • BlackBerry Z30 battery z30

    I have a black berry Z30, suddenly, from one day to the next my battery started the last half the time from the day before. The battery heats also. What can I do?

  • With regard to execution of the signature ID files - 5500 - IE.asp

    Hello Can someone help me understand the vulnerability resides in the signature. What I realized is that fires when running on the .asp file browser. Will we filter these alarm by tweaking the IPS signature. Or it will create questions in the future?