LabVIEW not reading data correctly

I'm new to LabVIEW (using it for a subject at university) but I've coded up a short program that counts rising and falling edges of a signal (to be used with input of a quadrature encoder).
I've tested it at low frequency using the Simulate Signal block and it works fine, but as soon as I pump it up to anything above 4 Hz, it starts playing up (counting a positive edge as a negative edge). At 10 Hz, it doesn't count any edges at all. Same thing with the encoder - when we turn it very slowly the counts register fine, but turn it at even a moderate speed and it'll start missing.
Not sure what the issue is. The code is pretty simple so I'm not sure how that'd cause the problem. Here's a copy of my counter block (the true/false input tells it whether to count up or down).
Solved!
Go to Solution.
Attachments:
counter_block.vi ‏21 KB

I've editted the counter file to include time measurement and also included a test file from which I run the counter. It seems to struggle above 5 Hz. I've ran it in my actual file (which is similar to the test but also counts edges of a second signal) and get the same interval between codes, so the actual code doesn't seem to be the limiting factor here.
Attachments:
counter_block.vi ‏22 KB
test.vi ‏59 KB

Similar Messages

  • Date filter not reading dates correctly

    I've noticed that since Bridge CS5 came out, the filter on date is not working correctly. For example,I'm looking at a series of images that I captured today (Sept 7th), and the date shown in the metadata panel of Bridge ays "Today". Yet, the Filter pane shows only "yesterday", not "today" as an option. When I click on "yesterday", Bridge displays the files that I took today! (And for the record, I'm using Bridge on Sept 7th, at 6 PM Pacific time when I'm posting this.)

    Sorry, hope you can read the details...
    Thanks, screenshot is clear, I see it but can't believe my eyes I'm
    afraid....
    Tried to reproduce it on my system but can't achieve this, pictures shot at
    same day as 'today' give today in the filter panel and yesterday also
    correctly filtered.
    You have of course already checked the date and time of your camera?
    But that should reflect also the data in the EXIF shown under file
    properties in the Metadata section.
    Assuming you have already tried to reset the Bridge Preferences (holding
    down option key while restarting Bridge) you could also repeat this after
    having manual deleted the AdobeBridge4.plist file from the preference folder
    in the User library.
    If still no luck, a way to narrow the possibilities down is if you have CS4
    still installed you could try it in Bridge CS4 with the same files.
    If it shows correct in CS4 it might be related to your CS5 install  or to
    NEF from D200 and Bridge CS5.
    If it shows also incorrect in CS4 it might be related with your User account
    or OSX.

  • When I was talking on phone, suddenly the phone was switched off. i tried to switch it on but it gave the message....connect to itunes for set up.  when I connected it to itunes...it gave the message, itunes can not read data from this iphone, restore it

    when I was talking on phone, suddenly the phone was switched off.
    i tried to switch it on but it gave the message....connect to itunes for set up.
    when I connected it to itunes...it gave the message, itunes can not read data from this iphone, restore it to factory settings. It also said while restoring ypu will lose all media data but you can restore the contacts.
    I restored the factory settings....the phone was on recovery mode...it was verified by itunes and all that..but in the end it again said that iphone has some problem and can not function right now.
    after that when ever i connect it with itunes, it gives the message, it can not activate the iphone further, try again later or contact customer service.
    What to do now?????? Customer service people say..it is hardware problem

    If it's a hardware problem, then the phone will need to be replaced.
    There is no magic that can fix a hardware problem.

  • Server Socket does not read data input stream

    Hi all,
    I am very newbie to Java Network programming with sockets and multi-threading.
    But I am obliged to develop a chat system written in Applets which can be placed on the website and used by visitors who come to my website.
    In order to understand this, I have tested a basic web chat program I downloaded from the Internet which use sockets and multi-threadings. The program work fine, no bugs at all at both compilation and run time. I noticed that all three streams for Client side (i.e. first one is input stream used receiving data from User; the second one is socket input stream used for receiving data from Server socket, and the third is socket output stream used for writing data to server socket) were established. And the same, two socket streams (input & output) for Server side were also connected when running program giving right port number and IP address of the server.
    The problem is both server and client sockets do not read data using the following stream classes:
    1. DataStreamInput: I use input.readUTF() method
    2. or BufferedReader: I use input.readLine() method
    The example of the codes are below:
    private BufferedReader input = null;
    private PrintWriter output = null;
    private Socket socket = null;
    public void open() throws IOException
    {  input = new BufferedReader(new
    InputStreamReader(socket.getInputStream()));
    System.out.println("Server socket input stream was created, and");
    output = new PrintWriter(socket.getOutputStream());
    System.out.println("Server socket output stream was created");
    public void run()
    {  System.out.println("Server Thread " + clientPort + " running.");
    while (true)
    {  try
    System.out.println("Server is reading data from Client, wait...");
    String fromClient = input.readLine();
    System.out.println("Server received a message on " + clientPort + ".");
    catch(IOException ioe)
    {  System.out.println(clientPort + " ERROR reading: " + ioe.getMessage());
    server.remove(clientPort);
    stop();
    The problem is at the line: String fromClient = input.readLine(); in the run() method? What is wrong with the codes above?
    Note: I also try to use original codes which use readUTF() method in DataStreamInput class instead using readLine() in BufferedReader. Both methods dont read data from inputstream socket?
    I very appreciate any help/advice from experienced developers.
    Best regards

    Hi,
    Yes. The readLine() method hangs! After the test, the execuation of the program is stopped at the line of readLine() method; it does not pass it?
    There is no problem with writing to Server socket. After the test, the program pass through flush() method. Here is the code for writing to sever socket within ChatClient (client side socket) class:
    private BufferedReader input = null;
    private PrintWriter           output = null;
    public ChatClient(String serverName, int serverPort)
    {  System.out.println("Establishing connection. Please wait ...");
    try
    {  socket = new Socket(serverName, serverPort);
    System.out.println("Connected: " + socket);
    start();
    catch(UnknownHostException uhe)
    {  System.out.println("Host unknown: " + uhe.getMessage()); }
    catch(IOException ioe)
    {  System.out.println("Unexpected exception: " + ioe.getMessage()); }
    public void start() throws IOException
    {  input   = new BufferedReader (new
                             InputStreamReader(System.in));
    System.out.println("Client User input stream was created,");
    output = new PrintWriter(socket.getOutputStream());
    System.out.println("Client Socket output stream was established, and");
    if (thread == null)
    {  client = new ChatClientThread(this, socket);
    thread = new Thread(this);
    thread.start();
    public void run()
         while (thread != null) {
         String fromUser;
              try{
                   while((fromUser = input.readLine())!= null)
                   System.out.println("Client wasreading a data from User, and");
    output.println(fromUser);
         output.flush();
         System.out.println("Client has written a data to Server");
    catch(IOException ioe)
    {  System.out.println("Sending to server error: " + ioe.getMessage());
    stop();
    etc.
    Here is a piece of codes for reading data from the Client Socket in the ChatServer Class (Server Side socket):
    public void run()
    {  System.out.println("Server Thread " + clientPort + " running.");
    while (true)
    {  try
    {  //server.handle(clientPort, input.readLine());
    System.out.println("Server is reading data from Client, wait...");
    String fromUser = input.readLine();
    //while((fromUser = input.readLine()) != null)
         System.out.println("Server received a message on " + clientPort + ".");
    catch(IOException ioe)
    {  System.out.println(clientPort + " ERROR reading: " + ioe.getMessage());
    server.remove(clientPort);
    stop();
    etc. Please advice why the readLine() method hangs; does not read data from the input stream received from the CLIENT?

  • My JournE Touch tablet is not reading data on USB

    Hi!
    when I plug in my usb with games and open it i don't see anything, Like tablet is not reading data on usb.
    Can someone help me?
    Guide me a little.

    Journ.E touch handles and supports SDHC up to 32GB.
    The supported file formats are:
    *Image* file format JPEG
    *Audio* file format - MP3, WMA, AAC and WAV
    *Video* file format - AVI, MP4, 3GP, FLV and WMV
    Other files formats are not supported.

  • GUI_UPLOAD NOT READING DATA FROM PRESENTATION SERVER

    H HI IN   MY APPLICATION I HAVE USED GUI _UPLOAD        TO READ DATA FROM   PRESENTATION SERVER   IT WAS WORKING FINE BUT NOW I HAVE SCHEDULED IT IN BACK BACKGROUND WHEN I   DEBUGGED IT GUI _UPLOADI NOT READING DATA FROM PRESENTATION SERVER
    Edited by: ravikumar1006 on Mar 10, 2012 1:18 PM
    Moderator message: FAQ, please search before posting, do not write in all upper case.
    Edited by: Thomas Zloch on Mar 10, 2012 3:17 PM

    The issue is that, when you schedule a program as background job runs on application server not on local pc for that program use the application server resurces  and its not possible to read files from pc. You can find a lot of answers in forum for this

  • DVDRAM will not read data disks

    I have a A215-S4697 with a HL-DT-ST GSA T20n DVDRAM.  The drive will read CD and DVD audio and video disks.  It will not read data disks.  The driver says it is a CD-ROM.  Is there a better driver I need?  Has anyone had the same problem and found a solution?
    Thanks 

    Cory K wrote:
    Is the file open in Excel, or is it open because your VI is writing data to it somewhere in your code?
    If the latter case is true, you can use a semaphore to ensure that a read and write operation are not trying to occur simultaneously.
    The file is open in Excel.

  • Serialport readbyte not reading the correct data

    Hello everybody
    I'm writing a software in VB.net to communicate with an external device with modbus I have a problem while reading data received from the device , to put it in example , using
    sp1.ReadByte() the data sent from the device is this :
    05-03-04-00-00-01-9F-FE-0B
    but I receive this
    05-03-04-01-9F-FE-0B
    I use this to read Data
    Dim reponse As Byte() = New Byte(5 + (2 * nombre_registrre - 1)) {}
    For i As Integer = 0 To response.Length - 1
    response(i) = CByte(sp1.ReadByte())
    Next
    It seems like 0x00 are ignored , I tried to send stream of hex manually and Ive got the same problem , always readbyte ignore 0x00 bytes
    Why is that ?
    thank you so much for your help
    Hey :)

    you are expecting 9 bytes ..
    is  (5 + (2 * nombre_registre - 1))  = 9 ... No that is impossible the answer of this equation will always be even
    therefore 
    for i as integer = 0 to responce.length-1  
    dont read 9 bytes ... it will read an even number of bytes.
    Something is wrong in your code
    I don't think it's has someting to do with my buffer length , If so why do I receive the other bytes (Not 0x00 bytes)
    as I said before , the only bytes I can not receive are 0x00 , I think its something with readbyte() function
    Hey :)

  • Labview not reading csv file properly.

    I'm trying to use the read spreadsheet file vi to read the attached csv.
    It does a few things incorrectly:
    1) the first cell of the resulting array has ÿþ appended to the front of it, seems like labview is grabbing some special character it shouldn't? (Notepad, notepad++ and excel can all open the file without issue and none show ÿþ or anything like it).
    2) It's mistreating the EOL characters as two line feeds, resulting in blank rows between each data row. (Looking at the csv in notepad++ confirms that the lines are ended with a CR and a LF (same as EOL).
    3) I'm reading it in as a string, because one of the columns is non-numeric, but then I strip that column out and attempt to convert the remaining string array into a numeric array (this fails). It also fails if I pull out an individual element of the array and attempt to convert it to a number (in both cases using fract/exp string to number), below I have an example of trying to read the 2nd column of the 1st row (index: 0,1) which is formatted as a string: "1.37238168716431" and converting that into a number gives 0 as you can see in the snapshot of the front panel.
    Solved!
    Go to Solution.
    Attachments:
    REPORT02.CSV ‏4 KB

    I guess the file is in unicode, that doesn't help me very much.
    I don't use the "Read from Text File Function" - at least not directly, although it is called in Read from Spreadsheet File. Where is it called, however, right-click doesn't show an option for Convert EOL, instead it's a terminal and it's default is F and as the terminal is disconnected, I'm assuming it's not converting EOL. So it's already "unchecked" in a sense.
    No idea how to convert the unicode string to ascii. (no functions show up when i search unicode or ascii in the manager). It displays it just fine in the text box, so I'm not sure why it's able to display it without issue but not read it as a number.
    Using Labview 8.6, by the way.

  • Can not read data from URL!

    Hello,
    I want to read data from URL (http://84.100.130.82:8000/;stream.nsv). But can not do it. Because when try to call function openDataInputStream() shows this error: java.io.IOException: response does not start with HTTP it starts with: ICY. How I can fix this bug?
    HttpConnection c = null;
    InputStream is = null;
    OutputStream os = null;
    StringBuffer b = new StringBuffer();
    String           response,
    responseLitle;
    c = (HttpConnection)Connector.open(“http://84.100.130.82:8000/;stream.nsv”);
    os = c.openOutputStream();
    os.flush();
    is = c.openDataInputStream();     // ERROR CODE HERE
    int ch;
    // receive output
    while ((ch = is.read()) != -1)
    b.append((char) ch);
    response = b.toString();Regards, Ramunas

    Hi, I�m trying to do the same as above, get MP3 from a Shoutcast server.
    I got the same fault ("response does not start with HTTP it starts with: ICY") when I tried to open an HttpConnection as bellow:
    ============================================
    HttpConnection conn = (HttpConnection) Connector.open("http://64.236.34.196/stream/1074");
    Then I tried to open a socket connection as bellow:
    ======================================
    SocketConnection conn = (SocketConnection) Connector.open("socket://64.236.34.196:80");
    String get = "GET /stream/1074 HTTP/1.1";
    DataOutputStream os = conn.openDataOutputStream();
    os.writeUTF(get);
    InputStream is = conn.openInputStream();
    But then I got the following error:
    =========================
    java.lang.SecurityException: Target port denied to untrusted applications
    Could someone help me to find out what is going on?
    Thanks a lot!

  • Thunderbolt Not reading Battery Correctly

    Hey there!
    I have been searching the net for this particular problem I am having and sofar have found nothing, so I was hoping maybe you guys could help me out.
    My Thunderbolt after fully charging the battery will show at the highest about 60% battery life, if not lower. This morning for example it would only show 29%. I have bought 2 additional extended batteries for the phone, both will show around the same percent when fully charged.
    I have tried doing the whole battery calibration "thing", with no success whatsoever. One time, after my phone died; I took the battery out of my phone and put it in my friends phone and it showed 82% remaining, yet my phone would say 0% and die. I have done multiple Factory Resets as well.
    I've heard of a few other people having this problem and just warranting back the phone, but thats the problem. My warranty ran out a couple months ago. I had to replace my thunderbolt twice for random annoying issues, and when I got my Third phone (current), the battery wouldnt charge past 80% but i figured the battery was going out and not that big of a deal. The warranty ran out a couple months after I received my current phone so I decided to finally by addition Extended Batteries. And here I am. -_-
    At most the battery will last maybe 3 hours under use, 5-6 with light use. If i leave it in standby, maybe around 8 hours. And this is with the Extended battery!
    When my Phone dies, I am capable of pulling the battery out, waiting a minute, and putting the battery back in and wala! it will have a sudden 2-5% of battery life left again. I can usually do it 4-5 times before it wont work anymore.
    Occasionally the phone will drain fast, get to anywhere from 19-2% and just sit at one specific percent for a few hours.
    I have tried multiple charging cables including: Car Charger, Stock Phone Charger, Offbrand wall charger, and PC-USB charging.
    I am thinking my phone is not reading the battery voltage correctly. When my phone stops charging, or really just sits at a random percent for forever, it shows roughly 3.822V. When the battery is "dead" according to my phone, it shows around 3.6 - 3.5V. I'm not completely sure if that is normal, or even relevant.
    Any help would be most appreciated, thank you! And I apologize for the long post.

    PC Charging is the Worst What i would Recommend is a H.T.C charger And buy a  H.T.C  O.E.M Battery a Extended Type if Possible.
    These two Items at Android Central Cost about what the The Battery it Self cost. Just a Few Months Back Please give these a Look i don't think you will be disappointed.  The Battery Cost $34.99  the Charger $14.95  plus a little for S&H.. b33

  • After WLS10.3 migration getBinaryStream in Oracle.sql.BLOB not reading data

    Please some one help me. After the 10.3 migration, the values in CSV file(as BLOB in DATABASE) is not read by getBinaryStream method. It returns 0. It was working before. Please find below the code:
    import oracle.jdbc.OracleResultSet;
    import oracle.sql.BLOB;
    public InputStream RetriveISfromBlob(int batchid)
                        BLOB blob;
                        InputStream instream=null;
                        try
                             Statement stmt = connection.createStatement ();
                             ResultSet resSet = stmt.executeQuery
                             ("SELECT content FROM file_upload WHERE batch_id="+batchid);
                             resSet.next();
                             System.out.println("after query");
                             /*Get the BLOB locator.*/
                             blob = ((OracleResultSet)resSet).getBLOB(1);               
                             /*get the blob's outputstream
                             any data read from this stream comes from the BLOB*/
                             instream = blob.getBinaryStream();
    Below is code from Another class which call the above method RetriveISfromBlob:
    InputStream inputstream = fileDataDAO.RetriveISfromBlob(batchId);
                   System.out.println("afterfileread");
                   CommaFileInputStream reader = new CommaFileInputStream(inputstream);
                   reader.setIgnoreFirstLine(true);
                   CommaRecord comma = reader.getCommaRecord();
                   System.out.println("Number of records -" + comma.size());     /This returns o but CSV file has lot of datas
    NOTE: When I use Ojdbc14.jar only the above code returns 0. When i use Ojdbc_6g.jar it throws NULL POINTER EXCEPTION because the code was written like import oracle.jdbc.driver.OracleResultSet; But in all cases the data in BLOB was not read
    Edited by: 833987 on Feb 4, 2011 9:07 AM

    Hi,
    The problems 1, 2 and 3 under the heading Issue 2 should be fixed in the Early Adopter release 3.1 EA3, which is now available.
    David

  • OOK Burst Demodulator Not Reading Data

    I am using the OOK Burst Demodulator with the OOK Modulator vi found on this forum.  When I try running the OOK Burst Demodulator, avaiable from the RF Fixed Point Examples,  I am getting Error -50400.  It looks as though the data is not coming through across the DMA.  My problem is probably that data is not being demodulated correct.
    On the transmit side, I am using the OOK Modulator example.  Before, I was getting FIFO underflow issues because there was not enough data being written to the DAC.  Therefore, I modified the VI to loop the data back into the FIFO.  Therefore, it sends it's sync bits and data bits over and over again.  Will this work with the OOK demodulator?  Any suggestions on OOK modulation and demodulation would be appreciated.  Thanks!
    Patrick

    Hi Patrick,
    Try out the attached OOK modulator with the fixed point demodulator.
     Let me know if this does not work.
    --Vinay
    Attachments:
    Burst OOK Modulator.zip ‏71 KB

  • MultiProvider not reading data

    Hi all,
    I am using a Multiprovider to integrate the data from a DSO and an InfoCube. But is not not reading the data from the DSO.
    Here is the Structure:
    Infocube : SALESCUBE
    Dimensions:
    Transaction:
    TRNSCN_ID: Transaction id
    Customer:
    CUST_ID: Customer ID
    And I have 3 keyfigures called PRC_MAT, SAL_QUANT, REV
    DSO: SAL_LOC
    Key field: TRNSCN_ID
    Data field: SALES_REG
    Now In my multiprovider, in assignment of TRNSCN_ID I have slected both the infocube and the DSO. Yet when I read the data it shows data only from the infocube.
    The columns under 'SALES_REG' are blank (When i do "Display Data" for the multiprovider in SAP BI GUI ) and BExAnalyzer shows 'Not Assigned''
    I checked the data in both the DSO and the Infocube and the data under TRNSCN_ID is consistent in both and I have loaded it from the same source.
    I did some some investigation and II think the issue is in the sql query genereted by the multiprovider: 
    select
    [S1].[/BIC/CUST_ID]
    AS [K____16106]
    [S2].[/BIC/TRNSCN_ID]
    AS [K____16123]
    ,  [F].[/BIC/PRC_MAT]   AS [K____16107]
    ,  [F].[/BIC/REV]   AS [K____16108]
    ,  [F].[/BIC/SAL_QUANT]   AS [K____16109]
    FROM
    [/BIC/FSALESCUBE] [F]
    JOIN
    [/BIC/DSALESCUBE1] [D1]
    ON
    [F].[KEY_SALESCUBE1]
    = [D1].[DIMID]
    JOIN
    [/BIC/SCUST_ID] [S1]
    ON
    [D1].[SID_CUST_ID]
    = [S1].[SID]
    JOIN
    [/BIC/DSALESCUBE4] [D4]
    ON
    [F].[KEY_SALESCUBE4]
    = [D4].[DIMID]
    JOIN
    [/BIC/STRNSCN_ID] [S2]
    ON
    [D4].[SID_TRNSCN_ID]
    = [S2].[SID]
    JOIN
    [/BIC/DSALESCUBEP] [DP]
    ON
    [F].[KEY_SALESCUBEP]
    = [DP].[DIMID]
    where
    [DP].[SID_0CHNGID]
    = 0
    ) ) AND  ( (
    [DP].[SID_0RECORDTP]
    = 0
    ) ) AND  ( (
    [DP].[SID_0REQUID]
    <= 2000000250
    The DSO is not mentioned anywhere in the query.
    Here are 2 unresolved threads with the same issue created by others:
    Multiprovider Problem
    Re: Multiprovider Issue
    Please help out if you have any idea.
    Thanks,
    Nikhil

    Hi Vikram,
    Thanks. This has partly solved the problem. It sows data from both the infocube and DSO but it comes in 2 rows, not 1.
    To do this, I created this new structure:
    Infocube: IC_REV
    Dimensions: TRNSCN_ID
    Keyfigures: PRC_MAT, REV, SAL_QUANT
    DSO: LOC_SALE
    Key Field: TRNSCN_ID
    Data Field: TRNS_DATE (Keyfigure), SALE_OFFC, SALES_REG
    I have included all these InfoObjects in the multiprovider.
    On running the query, it displays the data from the infocube and the dso in different rows.
    For example, I have a TRNSCN_ID value "SALE01".
    in the result, It shows 2 rows for "SALE01", one from the infocube and one from the DSO.
    The data for TRNSCN_ID in the infocube and dso is consistent as I have run their DTPs from the same parent DSO (which has all the data) as the source of data for both the Infocube and the DS.
    Here is the SQL if needed:
    select
    [S1].[/BIC/TRNSCN_ID]
    AS [K____16123]
    ,  [F].[/BIC/PRC_MAT]   AS [K____16107]
    ,  [F].[/BIC/REV]   AS [K____16108]
    ,  [F].[/BIC/SAL_QUANT]   AS [K____16109]
    FROM
    [/BIC/FIC_REV] [F]
    JOIN
    [/BIC/DIC_REV1] [D1]
    ON
    [F].[KEY_IC_REV1]
    = [D1].[DIMID]
    JOIN
    [/BIC/STRNSCN_ID] [S1]
    ON
    [D1].[SID_TRNSCN_ID]
    = [S1].[SID]
    JOIN
    [/BIC/DIC_REVP] [DP]
    ON
    [F].[KEY_IC_REVP]
    = [DP].[DIMID]
    where
    [DP].[SID_0CHNGID]
    = 0
    ) ) AND  ( (
    [DP].[SID_0RECORDTP]
    = 0
    ) ) AND  ( (
    [DP].[SID_0REQUID]
    <= 2000000250
    select
    [O1].[/BIC/SALE_OFFC]
    AS [K____16133]
    [O1].[/BIC/TRNSCN_ID]
    AS [K____16123]
    ,  [O1].[/BIC/TRNS_DATE]   AS [K____16129]
    FROM
    [/BIC/ALOC_SALE00] [O1]
    Any idea how to resolve this?
    Thanks,
    Nikhil

  • Application not reading data from opc server?

    Hello, 
    I have developed an application that reads and writes information from and to an OPC server (Phoenix Contact), and for this have used the DSC Module and labview 2014. When I run it from LabView, it works perfectly. I want to deploy it to another computer and for that I have created an Installer that includes the source files, the labview runtime, the DSC runtime, ni distributed manager 2014, and the variable engine.  
    When I install my application to the other computer, it doesn't "see" the data from opc, although the data reaches the computer (I've checked). Can you please help me with some suggestions regarding this problem? Am I missing something?
    Thank you.

    You don't have NI OPC Servers on either computer?  That's generally the software required to talk directly to an OPC Server.  On the computer where things are working, try going to your start menu and searching for NI License Manager.  See if there is a listing for NI OPC Servers.  I'd expect it to be activated to a single driver.
    On the deployment PC, make the same check.  I'd expect it to be missing.
    The distributed manager is just a way to view the shared variables you have on the system and interact with them.  DSC works with NI OPC Servers to display your tags.  The RTE is needed on the deployment PC.  But, I'd also expect you to need a way to convert the tag into the shared variable you're seeing in both the DSC RTE and distributed manager.
    Using the Phoenix utility shows the computer is connected to the same network.  But, it doesn't show the tags are reaching LabVIEW.  You're generally better off starting with the Quick OPC Client as this will use similar methods that LabVIEW will.

Maybe you are looking for

  • Dynamic SQL and MERGE

    Hi all, I'm under 10G r1 I want to execute a dynamic SQL with merge in it when I try with insert ,update it works but I just want to use merge if possible this is the code CREATE OR REPLACE PROCEDURE I_COLUMN_CDS_FIXINGS v_ticker VARCHAR2, v_date DAT

  • Ipod not recognised by finder, updater or itunes

    whilst updating my ipod (older version 30gb with dock) with my mac last night (power mac G5) - there was a problem which meant that i had to restart the mac. now the mac doesn't recognise the ipod (not seen in finder or itunes) and i can't restore it

  • IPod classic to be discontinued?

    I've heard that rumor --- does anyone know if there is truth to it?  I really, really hope not.  I love having my whole library in my pocket and none of the other products have anywhere near the capacity I'd need.

  • Following a tutorial and no global.css

    Hello all. I'm following the "page layout tutorial" in The Missing Manual for DW CS3. I'm at the section, 'Applying Some Style' (page 357). At this point, I am going to create new styles to format my new page (because it's a pre-made layout)- change

  • Jdbc version question

    Hi, I want to use ojdbc (jdbc 9.2.0.4) instead of the default jdbc used by JDeveloper. I am connecting to an Oracle Database (version 9.2.0.4). I have changed the project settings to use ojdbc14.jar and also registered the driver in tools/preferences