Including only one set of time data on a table reading multiple signals

Hi all,
When I set the 'include time data' input on the 'build table' express VI to true, it gives me two sets of identical time data because the input signal is two sets of data merged together. Anyone know how to get rid of one of these columns?
Amanda
Attachments:
FLVI.vi ‏224 KB

Hi,
See the attached file.
Software developer
www.mcm-electronics.com
PS: Don't forget to rate a good anwser ; )
Currently using Labview 2011
PORTUGAL
Attachments:
FLVI2.vi ‏225 KB

Similar Messages

  • Adobe Flash Builder 4 licence is for one desktop and one laptop, only one at a time run or

    After installing Adobe Flash Builder 4 needed install AIR? Adobe Flex 4 SDK IS ALREADY INCLUDED?
    Adobe Flash Builder 4 licence is for one desktop and one laptop, only one at a time run or...?

    hi,
    Flashbuilder has the ability to create and run Air content from the IDE, to actually usean Air App outside of the IDE you need to install Air.
    Flashbuilder install includes 2 sdks, the 3.5 sdk for 'backward' compatibility with Flexbuilder and for targeting flashplayer 9, the 4.x SDK for Flashbuilder and  targetting flashplayer 10.0 and above.
    As far as fair use is concerned Adobe have had fair use software licensing for a while, single user 2 devices is not a problem, what is not clear is if you can use the software on both devices at the same time.
    David

  • Allow only one set of parameter values for all worksheets

    I would like to " Allow only one set of parameter values for all worksheets ", but prompt before executing the worksheet. This function is a great time saver, but the users on occasion would like to change at the least one of the parameters. Is this possible? What setting do I use? I've tried various combinations of the " After opening a workbook: " on the options page. " Run query automatically", " Don't run query (leave sheet empty) ", and " Ask for comformation ". I would have thought that "Ask for comformation " was the trick, but no. I'm considering putting a do nothing parameter that has the setting of " Allow different parameter values for each worksheet. " so that it will keep all the others, default this one, but prompt for a possible change.
    Any thoughts...
    Thanks,
    Jamie

    Hi Jamie
    Even though you have the same parameter for all worksheets a user can still choose what to use on a worksheet. Its just that if they click to another worksheet then that parameter will be applied.
    Which version of Discoverer are you using?
    Best wishes
    Michael

  • Setting a Time / Date period limit to view a Movie

    I am creating an interactive presentation and distributing it
    on CD. The presentation will be password protected - all very easy
    The part I need help with is - I want to be able to set a
    time / date restriction on the presentation. ie. the presentation
    will no longer work after a specific date or alternatively only
    work on a specified date - to prevent the presentation from being
    viewed after a set date.
    Your assistance will be greatly appreciated.

    if the systemDate>date(2009,1,15) then halt
    Put that command in your startMovie handler. If the current
    date on the
    computer is greater than Jan 15, 2009, then the program will
    not play.
    Obviously, you can change the numbers in that date to match
    the date you
    wish to use.

  • I want to make a video clip using two still pictures, placing side by side.  I am able to make with only one at a time.

    I want to make a video clip using two still pictures, placing side by side.  I am able to make with only one at a time.  Also, I am able to move the picture using Transform.  But unsuccessfull in making with two stills in same clip.  Thank you for reply.

    If you want a Picture in Picture effect, stack one still on top of the other with a connect edit. Use Transform to scale and reposition the top image.
    Russ

  • Am I the only one with a dispatch date 19th July?

    I did order on 19th June anyone else waiting this long?

    I went to the Apple Store on launch day and bought my iPhone 4. No reservation, just went in and bought it. Much easier than pre-ordering. Enjoy the iPhone when you get it. iPhone 4 is excellent.
    Oh to answer your question, it's unlikely you are the only one with a specific date. If Apple were allocating one iPhone per pre order per day, the backlog would take until iPhone 26 to get through.

  • How to use one form to submit data to 2 tables on mysql

    Can someone please help me on this,
    I am developing a jsp website and I want to use one form to submit data to 4 tables on mysql database and the tables are related by one foreign key.
    Can someone bail me out of this ....I've hit a hard brick wall!!!!...

    kwesij wrote:
    Can someone please help me on this,
    I am developing a jsp website and I want to use one form to submit data to 4 tables on mysql database and the tables are related by one foreign key.
    Can someone bail me out of this ....I've hit a hard brick wall!!!!...What's the problem? What does a brick wall look like?
    Connect to the database and execute four SQL INSERT/UPDATE statements as a single unit of work. The fact that you have one form shouldn't be an issue.
    I'll bet you're having trouble because you haven't layered the problem either in code or in your mind.
    I'd recommend that you write a POJO to take in some objects and execute the SQL. Once you have that running successfully you can worry about the form. Decouple the two.
    Computer science is all about decomposing large problems into smaller ones.
    %

  • Select max date from a table with multiple records

    I need help writing an SQL to select max date from a table with multiple records.
    Here's the scenario. There are multiple SA_IDs repeated with various EFFDT (dates). I want to retrieve the most recent effective date so that the SA_ID is unique. Looks simple, but I can't figure this out. Please help.
    SA_ID CHAR_TYPE_CD EFFDT CHAR_VAL
    0000651005 BASE 15-AUG-07 YES
    0000651005 BASE 13-NOV-09 NO
    0010973671 BASE 20-MAR-08 YES
    0010973671 BASE 18-JUN-10 NO

    Hi,
    Welcome to the forum!
    Whenever you have a question, post a little sample data in a form that people can use to re-create the problem and test their ideas.
    For example:
    CREATE TABLE     table_x
    (     sa_id          NUMBER (10)
    ,     char_type     VARCHAR2 (10)
    ,     effdt          DATE
    ,     char_val     VARCHAR2 (10)
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0000651005, 'BASE',    TO_DATE ('15-AUG-2007', 'DD-MON-YYYY'), 'YES');
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0000651005, 'BASE',    TO_DATE ('13-NOV-2009', 'DD-MON-YYYY'), 'NO');
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0010973671, 'BASE',    TO_DATE ('20-MAR-2008', 'DD-MON-YYYY'), 'YES');
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0010973671, 'BASE',    TO_DATE ('18-JUN-2010', 'DD-MON-YYYY'), 'NO');
    COMMIT;Also, post the results that you want from that data. I'm not certain, but I think you want these results:
    `    SA_ID LAST_EFFD
        651005 13-NOV-09
      10973671 18-JUN-10That is, the latest effdt for each distinct sa_id.
    Here's how to get those results:
    SELECT    sa_id
    ,         MAX (effdt)    AS last_effdt
    FROM      table_x
    GROUP BY  sa_id
    ;

  • Exporting slideshow leaves includes only one audio file, leaves off others

    I have a slideshow which is fairly long, and uses several songs from an iTunes playlist. When I play the slideshow in iPhoto, the slideshow works perfectly. However, when I export the slideshow, either by exporting to a Quicktime movie or sending to iDVD, the photos export properly, but only the first audio file from the playlist is included in the slideshow. Therefore, when I play it, either in iDVD or Quicktime, the slideshow has audio until the first song ends, then the slideshow has no audio, and is completely silent.
    Is anyone else having this problem, and is there a way around it?
    Brad

    Hi Bradley,
    Yes, others are experiencing it and it is a new bug introduced from one of the updates. apple is aware of it and so far no solution has been found.
    Only one song exporting with Slideshows
    Right now, this seems to be a know problem/bug. There have been some work-arounds. Don't know if the problem is with iPhoto, Quicktime or a combo of both.
    -From Bob Worthington: re-ripping the cuts I wanted as background music for the DVD as a single cut in iTunes. I then made a playlist containing the one extended cut of music.
    -Old Toad: share to Quicktime from iPhoto and then import the resulting movie into iMovie you can extract and delete the audio from the video and add the two songs to the video and save.
    Quicktime Pro-open the movie and bring up the Movie Properties menu window. In the top window select the audio track and delete it.
    If you want more than one song you'll have to join them together with iMovie or some other application. Then open that joined file with QT Player. Then do a select all and copy. Now go to the QT window of the movie and select the Edit->Add to Movie menu option. You don't want to scale it because it will change the play speed of the audio unless it's time is exactly the same as the movie.
    You could go the other way, open the movie, select all and copy, and then past with scaling to the audio. That will change the speed of the movie and transitions to fit the audio track. In this case the resulting video file will have the name of the audio track file that you started with.
    You may have to play with it a bit to get exactly what you want. Be sure to work with copies of all the media files for the project.
    -Peter Burtwistle: I opened the Qt movie that iPhoto makes when you export to iDVD and removed the sound track.
    Then made a new soundtrack by opening all three songs in QT, then cutting and pasting them together.
    Finally use QT Pro's 'Add to Movie" option to add the soundtrack to the original movie.
    This worked well and was fast to do too.
    -Joe Lombardo: I ended up having to extend the songs by 20 seconds so I brought them all into GarageBand and made some edits. Then I exported them all to iTunes as a single track and used that for the slideshow
    Lori

  • Multiple file uploads, or only one at a time?

    I have multiple files in folders on my iPad.  I want to upload entire folders of documents.  So far I have only been able to upload one document at a time.  Then after uploading, I have to put them in acrobat.com folders one document at a time.  It is very time consuming.  Is there any way to upload multiple files at one time?  Once the documents are uploaded, is it possible to move multiple documents into a folder at one time?  Or does each document have to be a separate upload action, and each move into folder a separate document-by-document one at a time?

    On my iPad I have been opening and saving pdf's in Adobe Reader.  I would like to upload these pdf files from the iPad Adobe Reader to acrobat.com.  I have thus far been uploading them from the iPad one fie at a time.  It is very slow and tedious.  There is also no way to get multiple pdf files from the iPad Adobe Reader to a computer except one file at a time.  So it seems that once I used the iPad Adobe Reader app to save the files, I am stuck with one file at a time movement.  I did, however, find that once I get files to acrobat.com, I can move multiples files at a time into folders on acrobat.com via the iPad.  The problem is getting them uploaded from the iPad Adobe Reader app to acrobat.com. Is there a solution I'm missing, or am I correct in my understanding of the iPad Adobe Reader app upload situation?

  • Republish to Flickr from LR4 posts as new photos instead of updates them (only one set, not all)

    I have a single set on Flickr that I cannot republish updates to from LR4 - republishing a modified photo posts it as a new photo.  All other sets seem to work fine.  I use the "built-in" Flickr plugin and LR4.3 with a Flickr Pro account.  This issue started with LR4.2 when I got my Nikon D800.  I've tried just about everything I can think of and have been searching for any similar problems for months and decided to finally ask for help myself.
    Back in October I created a set of an event, and published the photos to Flickr without issue.  A week later I wanted to republish a few photos and noticed that they instead published to the set as new.  If I mark to republish, yet another copy is posted as new.  After some testing, this is only for images in this one particular set - any other images in any other set update their existing version as expected.
    After a while I began to wonder if the machine tag I added was causing it (active:event=) so I removed the tag from the image on both sides and tried to republish again with the same results.
    Naturally I delete the new copy of the image from Flickr which then dissassociates the LR photo with anything on Flickr.  I found another (cludgy) plugin which can associate photos in LR with photos on Flickr and that fixes the link between the two.  But again, republish from LR and a new copy shows up.
    Any ideas?  This has been driving me nuts.  I haven't found any special permissions or settings on the Flickr set or within LR which would explain why this one set is affected and no others.  I don't want to delete the set on Flickr and lose the history.  I'm trying to avoid having to manually update the images on Flickr where I would also have to manually update the titles, etc.

    This has happened for LR4.2, 4.3, 4.4, and now LR5.  The seemingly random nature of this bug is irratating.  Last week while still on LR4.4 I published a photo, changed it, and was able to republish it without issue.  Today on LR5 I published a set and went to republish a handful of photos only for them to be added as new photos to the set.  LR5 indicated that they were photos to republish and not new ones to the set.

  • Process inbound Idocs only one at a time

    Hi all,
    I'm searching for a solution to the following problem:
    We are receiving ORDERS-Idocs into our R/3 4.6C-system. These Idocs are processed by our own Z-function module. The function module's coding should assure that e.g. the first idoc of each day sent by a certain customer should create a new sales order (VA01), whereas the following idocs of that same customer should only add items to that sales order (VA02).
    To make this work, we must make sure that no two idocs of the same sender are processed simultaneously, or even better that the function module is running only once at a time. I tried the following practices, which didn't satisfy our needs:
    - create own ENQUEUE/DEQUEUE object and call the ENQUEUE at the beginning of my function module - didn't work!
    - use GET PARAMETER ID to read a flag and SET PARAMETER ID to set the flag - didn't work, second idoc was too fast!
    - write a record into own DB table and check existing entry with SELECT SINGLE FOR UPDATE - worked only sometimes, needs COMMIT WORK.
    - check if there are any flags you can set in WE20 - couldn't find any!
    Does anyone have a idea for my problem?
    Greetings
    Klaus

    Hi Klaus,
    form the mentioned options, I would give enqueue / dequeue a second try.
    I would use customer (/sender) as key field for your locking object.
    If you try to set the lock right in the beginning of your FM, whole customer should be locked for processing. Second test is of course, if already a sales order exists.
    Maybe here the problem occurs: when you have some parts in update task, select for sales order is not successful for some (micro-)seconds.
    Solution for this part: use synchronic booking / commit work and wait. Maybe make a test with a select for VBAK in the end of your FM to test existence -> if not successfull, you know you identified your problem.
    If this is your problem, you should make a new enqueue after commit (because it will be deleted by commit) and wait until DB gives you new VBAK entry.
    I would start with a test, why all this different locking options don't work (instead of looking for a different locking option): make a select after your sales order creation. If this is not successfull, then here is your starting point.
    Regards,
    Christian

  • Can delete mail only ONE at a TIME

    Ever since the macmail app, changed it's appearence etc., I have been unable to delete unwanted messages I spot in my inbox. In order to delete them I have to open them one at a time, hit delete and w a i t. Going through 150 emails a day one at a time is unacceptable. What's going on?
    emac   Mac OS X (10.4.3)   1G; PC G4; 512 MB SDRAM;Superdrive;80 GB HD;Lacie external 250G HD

    Ever since the macmail app, changed it's appearence etc.
    What are you talking about? Mail hasn’t changed its appearance since Mac OS X 10.4 (Tiger) was released.
    If you’re not using Mac OS X’s Mail, but .Mac mail on the web instead, you’re posting in the wrong forum. The right forum for such questions would be .Mac Email On The Web. This forum is for discussing issues related to the Mail & Address Book applications included with Mac OS X 10.4 (Tiger).

  • Only one at a time?

    Is there no other way of adding rows or columns between existing rows and columns except 1 at a time?

    It seems a bit odd (perhaps there is a bug)... but here is how it is working currently:
    (1) Select the number of rows you want to add
    (2) Do not use the little row header pop up. It only will add one at a time.
    (3) Instead the menu item "Table"/"Add Rows Above" or "Add Rows Below" (note that "Row" is plural in these menu texts). Alternately you can right click on a row header.

  • Where can I see the downloads LIST when downloading podcasts, like in the older version of iTunes?  I find it frustrating that I see only one at a time now !  Any suggestions please?

    Where can I see the downloads LIST when downloading podcasts,
    like in the older version of iTunes?  I find it frustrating that I see only one
    download at a time now !  Any suggestions please?

    Thanks for taking a stab at it: that didn't prove to be the problem. That option in the settings for tabbed browsing was not checked.
    I may be a bit behind the times: I am used to tabbed browsing showing all the tabs it possibly can, instead of just the last one. Sometimes it won't even show the last tab: I can have 15 tabs open, and not see a single tab. I've been confused by this into closing a window with lots of tabs open, because it looks like a single page-window.
    My main problem with the tab-bar flashing to the end of the row is that it means a great deal more mouse-clicking around to browse.
    I haven't tried installing the latest beta. Maybe that would fix the problem.
    Toddo

Maybe you are looking for

  • How to alter a Form to modify multiple tables

    I want to create a form that will insert or update into multiple tables at once. I have provided a picture of what i have in mind: http://imageshack.us/photo/my-images/21/custformexample.jpg In this example I have 3 tables: Customer (Cust_ID, Name,Ad

  • Using your own Domain Name

    This is what I have as my url now... http://web.me.com/seanfahey/Black_JackPress/Welcome.html I'm trying to put in my own domain name that I purchased from GoDaddy.com. Please help! Much appreciated.

  • Push Notifications rarely/never work.

    I have tried nearly everything to get push notifications working but can't get them to work, everything is turned on for notifications. The weird thing is if I go to my friends house for a few hours and them come back and connect to my wifi push noti

  • BI process has gotten stuck and the data from CRM hasn't gotten updated

    hai friends am working for BI in CRM.... BI process has gotten stuck and the data from CRM hasn't gotten updated in the BI cubes. can any one help me to solve this issue??? WHAT MAY BE THE PROBLEM AND WHAT WILL BE THE SOLUTION??? IS THERE I NEED TO R

  • How to add a hyperlink in the text caption?

    Hi, I am using Captivate 5. Anybody knows how to insert a hyperlink in a text caption? For example, the texts in the text caption are "See Adobe Captivate Forum for details." How to create a hyperlink for "Adobe Captivate Forum" which leads to the fo