Arrayeditor assistance

Hi  Forum ,
We're  building a sequencer into an existing Labview
5.0 Vi to automate our testing and
processing. Our main Vi calls
various non-LV programs from disk and runs tests
and processes results from various samples for X amount
of time. We have been doing this manually. Automating will be accomplished based on following table
events. In this table, we can have an unlimited amount of
instructions to follow. We'd use this table to control
everything in the main Vi.  We are basically tied to
using the LV5 version of this Vi.
   Let's
say that we want
to insert an  "event " (one row can
consist of up to 120 scalar values in 6 discrete
arrays ) somewhere into the middle of the table. It
would not be efficient to have to completely redo the whole table
each time we want to add or delete an event in the middle of
the table (i.e. split table into 2 subsets,
then insert a new row or delete an old
one).   We need to be able to update,  insert,
replace  or  delete an entry anywhere in the
table also.
LV 6/ 7  has array blocks
for editing an entire row: replace, delete
or  insert , which is perfect for what we want to
do. For our situation editing in rows works.
   An "arrayeditor.vi " for our sequencer was
designed and tested with LV6 /7 and does the
required complete row replace,
delete, and insert as needed. This Vi was put
together using "Replace Array Subset",  "Insert into Array",
and "Delete from Array" functions. The primary functional app we have, without the
sequencer feature, is based on LV5.0.  Up till now, we've had to
perform the steps that we are doing in the "table" manually. We can't
try to use different versions of LV to try to patch things
together.  Saving the test LV6 .0 "arrayeditor.vi" to
LV5  format  does not work, because
these particular array  editing functions of LV6/7
do not exist in LV5.
   We do not want to upgrade the app to LV6 or LV7, because  the
main app works perfectly and FAST in
LV5.   The overall app/project size in
LV5 is small too, when you consider the size of the runtime
engines in anything the later LV's offer.   When we've
tested  LV6/LV7 versions, we've found such to be way too
large for our needs. We have limited memory restrictions in the
computer board running the main app.
   We've checked out two previous forum postings that talked about
array building or editing, and looked at the very old LV5.0
tutorial example of replacing a line/row of
data, and seen that one utilizes a strategy of
splitting an array into 2 subsets or uses a table and functions from
later LV versions that don't exist in LV5.0.  These posted
examples, messageid39731 and messageid22518, really don't completely emulate/duplicate the LV6/7
equivalents mentioned above.
   What we need are one to one LV5.0 equivalents of the
LV6/7 functions of these three array editor blocks:  "Replace
Array Subset",  "Insert into Array", and "Delete from Array"
for entire rows. These three functional blocks are the exact ones that we've verified
will solve our problem.  If we knew exactly what was "inside",
specifically the procedures followed within these blocks we could
emulate/build such using components from LV5.0
functions.    Does anyone have the the actual block diagrams of what is in the
function for the three  blocks "Replace Array
Subset",  "Insert into Array", and "Delete from Array" for
entire rows in LV6/7?   If  we could get
that, we would be happy to do up LV5 equivalents and
post for folks to use.
   Lastly, does anyone know how to remove all the extras from the LV6/7
runtime modules that are never used - to strip these down to bare
minimums for JUST what is needed for a particular app?
THANKS. Charlott

Hi Charlott,
Unfortunately, there is no way to access those array functions' block diagrams because they don't exist! In fact, they are literally "LabVIEW functions" (denoted by their yellow color), which means that they are the basic building blocks in LabVIEW and therefore do not have block diagrams associated with them. You can think of them as atoms in physics, while VIs are more like molecules (a collection of functions and other VIs).
The good news is that you can do anything (well almost ) in LabVIEW! You should be able to build the same functionality of those array functions in LabVIEW 5 without seeing any block diagrams, though it will take a little work. I would recommend reading about those functions in the LabVIEW 6/7 Help, and then trying to implement them in LabVIEW 5 from there. And once you have them built, I would definitely encourage you to post those functions here so that others can benefit! If you have any questions along the way, I (and I'm sure others too) would be happy to help.
Also, just a little forum advice: Next time you post, try to cut down the length! There was quite a bit of unnecessary detail in this one, and it can sometimes be a deterrent to prospective answerers
Kind Regards,
E. Sulzer
Applications Engineer
National Instruments

Similar Messages

  • First release of new DPL Assistant, an IDE plug-in

    We are pleased to announce the first version of a new component. "DPL
    Assistant" is an IDE plug-in that is intended to help developers use,
    and learn to use, the Direct Persistence Layer of Oracle Berkeley DB
    Java Edition. The DPL Assistant is initially provided as an Eclipse
    plug-in.
    This first version of the plug-in performs validation of DPL
    annotations in Java source code. Each time you save changes from the
    Java source code editor, the validator analyzes annotations (@Entity,
    @Persistent, etc.) and reports any errors or warnings that it can
    detect, in a similar way to how the IDE reports Java compilation
    errors.
    Of course there are many more things that the DPL Assistant could do.
    We are requesting your feedback. Please see the Possible Future
    Enhancements section at the end of this message and send us your
    thoughts by replying to this forum thread.
    Installation
    You can install the DPL Assistant using the Eclipse update manager.
    Start by adding our update site to your configuration:
        http://download.oracle.com/berkeley-db/eclipse/The DPL Assistant was developed on Eclipse version 3.3, and has been
    tested with both 3.3 and 3.4. It of course requires at least Java 1.5
    (since it works with Java annotations).
    Usage
    Once installed, the DPL Assistant may be enabled on a per-Java-project
    basis. From the Project Explorer, right-click on the name of a Java
    project, and choose Properties from the pop-up menu. In the
    Properties dialog, choose the "DPL Assistant" page, and turn on the
    "Use DPL Assistant" check-box.
    Now you can create a Java source file and type in some Java code,
    using DPL annotations. Whenever you save your changes in the Java
    source code editor, the validation tool checks the code, and adds
    error/warning markers for any problems that it finds.
    If you have your Eclipse workspace set up to build automatically, you
    only need to save your changes. (See the Project -> Build
    Automatically menu item.) Otherwise you need to do an explicit Build
    to run the validator.
    When the tool reports a problem, you should be able to see a marker in
    the margin on the left-hand side of the editor, and if you show the
    Eclipse "Problems" view you should see it there too. Also, a few --
    but not all -- of the problem types also appear as squiggly underlines
    in the source code.
    As a simple example, if you were to type in (and Save) the following
    code:
        @Entity public class A {
            String foo;
        }you should see an error marker, complaining that "Entity class lacks a
    primary key".
    Known Issues
    There is one significant known issue: if you have multiple Java
    projects in your Eclipse workspace, with entity or persistent classes
    from one project referring to classes in another project, then
    sometimes DPL Assistant can get confused. In such a case, it may fail
    to notice changes in one project that ought to cause a refresh of the
    validation for classes in another project, resulting in the retention
    of stale results from a previous validation.
    If this happens, a simple workaround is to manually request a clean
    build of the Java project (from the menu bar: Project -> Clean ...).
    Possible Future Enhancements
    At this point these are only some ideas, and do not represent any sort
    of commitment or definite plan. We would especially like to get
    opinions and feedback from the community. What features do you think
    would be useful?
    * the DPL Assistant is initially provided as an Eclipse plug-in, but
    we could add support for other IDE's, such as NetBeans or
    JDeveloper. Again, this depends on the level of interest from the
    community. Please let us know what would be useful to you.
    * instead of merely complaining about errors, in many cases it could
    fix the code automatically. Sometimes there are several possible
    fixes, depending on the developer's intent. These could be
    presented to the user in a multiple-choice pop-up menu.
    * "content assist": instead of waiting until an error has been made,
    it is sometimes possible to help the user get it right the first
    time. In the same way that the IDE helps in writing Java
    expressions (e.g., presenting a multiple-choice list of known
    methods, given an object reference of a known class), it could
    present a list of valid completions during typing of annotations.
    * wizards: instead of having to type entity classes by hand, a wizard
    could lead you through the process of defining the desired fields,
    and then generate the basic Java source code automatically.
    By analyzing an application's overall schema, a wizard might also
    help generate code for a test harness. Or, by comparing the current
    schema to a previous schema extracted from an old database
    environment, it might help generate conversion code ("mutations").
    * ultimately, it would be sweet to be able to render an abstract
    graphical "picture" (like a UML diagram) from an existing schema,
    and even (conversely) to support interactive drawing of such a
    diagram from which entity and persistent classes could then be
    generated automatically.
    Alan Bram
    Oracle

    Thanks for your account and experience with the new iWeb.
    Nice site now, although vegetarians better skip it
    I personally got rather hungry viewing it. And it is only 13.30 here.

  • Cannot install HP support assistant after upgrading to windows 7 error 1316

    After upgrading to Win 7 from Vista I am unable to install the HP support assistant.  First I get this error:  Error 1316 The specified account already exists.  After clicking OK I get the following error msg:  Error: -1603  Fatal error during installation.  Consult windows installer help (MSI CHM) or MSN for more info.  This is then followed up with the following msg:  HP support assistant not installed successfully.  An error occurred during the installation: -3  Then it rolls back the installation and will not install.  HP support assistant was working under Vista.

    Crppy wrote:
    After upgrading to Win 7 from Vista I am unable to install the HP support assistant.  First I get this error:  Error 1316 The specified account already exists.  After clicking OK I get the following error msg:  Error: -1603  Fatal error during installation.  Consult windows installer help (MSI CHM) or MSN for more info.  This is then followed up with the following msg:  HP support assistant not installed successfully.  An error occurred during the installation: -3  Then it rolls back the installation and will not install.  HP support assistant was working under Vista.
    Did you first go to the Control Panel and make sure that the HP Support Assistant software was not listed (uninstalled)?

  • After a Lion clean install, how do I retrieve my data from external back-up? Following Apple advice for use of Migration Assistant did not work creating similar issues leading to clean install.

    After a Lion clean install, how do I retrieve my data from external hard drive?
    Following Apple advice I used Migration Assistant which crashed new system twice which is why I had to clean install Lion in the first place.
    Is there a sure way of doing it?
    I have only a few programs that I will have to install myself and that should not be a problem.
    I just want my data, music and photos back where I can use them.

    Time machine backups. I went to migration assistant a few hours ago and limited my selection to "users", no need for applications, settings and other files.  Stuff started moving over at a fast pace but has now seemed to stall.
    I will let it run overnight as there are lots of songs and photos as well as a few movies.
    If that does not work, then I will go into TM and try restore. I have restored some things in the past such a mail files and it has worked well. 
    The Apple fellow at the store told me to go right into TM, he may have had a point. I'll get it eventually.

  • I couldn't install itunes in windows 7, 64 bit, DLL not found, can any one assist

    Windows 7, 64 bit, unable to install. DLL missing, kindly assist.

    That's perfect, thanks.
    Although you're getting a different error message, try the procedure from the following user tip with that one:
    "The administrator has set policies to prevent this installation" error messages when installing iTunes for Windows on Windows Vista and Windows 7 systems

  • I transferred data from my external hard drive to my restored Mac Book Pro via migration assistant and now my external hard drive in time capsule has red minus signs. How do I get rid of that without getting rid of any of my data?

    I used Migration Assistant to transfer my data from my external hard drive via Time Capsule to my restored Mac Book Pro. When I now go into Time Capsule I there are red minus signs in the corner of all the folders that are contained in my back up. How do I get rid of this and access my previous back-ups?

    Select the drive and Finder > Get info and at the bottom "ignore permissions on this volume"
    You can copy the files, but the ownership on the files still belongs to the other user account, once your done copying, then perform a #6 Reset Users Permissions and that will set all the ownership to that account.
    ..Step by Step to fix your Mac
    Another method is to copy the entire folder, then change it's permissions.

  • Trying to install Windows 8.1 from an ISO, but boot camp assistant doesn't seem to recognize

    Hi there,
    I have a 2011 Macbook pro, 15", 2.2 GHz Intel Core i7, 8GB RAM. I'm wanting to install windows 8.1 using boot camp assistant, and downloaded windows 8.1 from dreamspark (Microsoft store for students). I have downloaded all of the windows support software onto a USB, and there is a folder sitting on my desktop containing the .ISO for windows 8.1. However, when i try to run boot camp assistant, it says that the installer disc could not be found, and does not give me an option to install from a selectable .ISO. Can anyone help me with this? Is it something obvious I'm missing? Thanks!
    Connor

    For Macs with built-in Optical drives, you will need to burn the ISO to Optical media and use the Optical drive.

  • The guide to bootcamp assistant states that bootcamp can only be installed on a drive with a single partition. New Macs with Lion preinstalled have two partitions - the second is a recovery partition.  How do I install Bootcamp?

    Late in August 2011 I took delivery of a new 27" iMac with Lion preinstalled.  I need to run Windows as well. Following Apple's written suggestion, I printed off the then current 12 pages of the document "Bootcamp Installation & Setup Guide" which clearly stated that the hard drive you were going to install on had to have on it, before install, a maximum of one partition.  Using finder and disk utility I determined that there was only one partition.  Unbeknownst to me, there was (is) an additional hidden (from those two pieces of software) partition on the disk.  As of machines delivered new with Lion preinstalled, Apple has begun to include a "recovery partition".  In that partition there is a copy of the software necessary to reinstall Lion via a download from the Apple App Store.  Not knowing the partition was there, I cranked up  "Bootcamp Assistant" which nicely offered to repartition my hard drive creating a "Bootcamp Partition" in addition to the existing.  I told it how big to make each and hit the do it button, subsequently destroying my operating system.  Oh, it very nicely told me, after the damage was done, how many partitions were REALLY on the disk and that I could not install Bootcamp cause there were too many partitions.
    Luckily the the Recovery Partition, which at that point I knew existed, was not harmed and after doing some research on another compter, I used it to once again download Lion from the App Store and reinstall. So, I have recovered but am still stuck with the problem:  how do I install Bootcamp in this new environment?

    First you need to seriously back up your Mac.
    A clone is an exact duplicate of your existing Mac HDD. Merely copying and pasting a drive will not make a bootable backup. In case of problems you can boot from an Ext HDD clone and use the utilities to repair, reformat, or clone the Ext HDD back to the internal Mac HDD.  While Time machine back ups are easy you can not boot from it. The best thing to have for any kind of problem is a bootable clone backup on an external drive. Some even have two external backup drives in case one fails. There are two good apps for cloning named SuperDuper and Carbon Copy Cloner.
    In dealing with the recovery partition a simple approach is to clone the Mac partition to an external disk then re-partition the Mac to a single partition (GUID partition table) . Then clone the external disk clone back to the Mac. You will now have only one Partition and Boot Camp assistant sould not object.
    Some have recommended getting rid of the recovery partition while others have advised not to do this. If you have the Lion USB Thumb Drive you do not need a recovery partition so can discard it without concern. There is another way to get rid of the recovery partition if you decide to do it but first be sure to have a backup of your Mac ( I know I sound like a nagging mom but many dead computers have been saved by this simple precaution).
    Use Disk Utility.
    1) Make the Recovery visible in Disk Utility by using a program like Secrets:http://www.macupdate.com/app/mac/27025/secrets or MacPilot:http://www.koingosw.com/products/macpilot.php (15 day free trial).
    2) Highlite the Recovery partition and Control click it and select Mount the partition.
    3) With the Recovery partition highlited, erase the partition, you'll get an error message, ignore it.
    4) Now highlite the top identity of the hard drive and select the partition tab.
    5) Highlite the Recovery partition and press the minus sign.
    6) Click and hold on the bottom edge of the partition above and drag it to the bottom, if it doesn't go there automatically, the press apply.

  • Dual boot, Mountain Lion and Mavericks and Migration Assistant

    Hi all,
    I have a Macbook Pro Retina which cam with Mountain Lion installed, and I want to upgrade to Mavericks. However, I have a need to run some apps in Mountain Lion, as official support for those apps will not go past 10.8.5 (Avid's Pro Tools 10) and I need to be able to open archived projects.
    I also wish to clean install both operating systems fresh, and do a stripped ML partition, with bare bones essentials, on the smallest partion possible. Mavericks will be the main system, and ML won't host user data, only the legacy apps. I am fine with erasing my 500GB SSD.
    My current process is to install ML from the recovery partition, and use disk utility to partition before I do, then install Mavericks from a bootable USB (already made).
    So my questions are these:
    For ML:
    1. What size partition is the minimum necessary to install ML, plus the apps and run without hitch? The legacy apps will take maybe 4GB.I want this as small as possible.
    2. When I do a fresh install of ML, what apps can safely be deleted without affecting the system?
    For Mavericks:
    When migrating my old user account to Mavericks, I don't wish to migrate the apps, just the user settings and the data. I will make an entire backup of the user directory on a separate drive before I start this process, as well as a Time Machine backup. I then plan to migrate the account settings and data, but manually reinstall the extra apps. The reason for this is I have a lot of third party apps, and some are trials I decided to uninstall, and they all leave junk behind.
    3. If I import the user account settings and data only, what cruft or orphaned files should I be aware of?
    4. Are there options to cherry pick the settings that are migrated?
    5. If I manually copy, for example, the mail folder, iCal or messages folder in my user library, and place it into the appropriate user folder in the new account in a worst case scenario, will there be any drama I should be aware of?
    Lastly, a question of Apple ID's/iCloud:
    6. Before doing this process, should I deauthorise my iTunes account, or will that be fine when migrated anyway?
    7. What will happen with my iPhone when I sync to a fresh install on mavericks, will it attempt to wipe my iPhone, or is that part of the user data that is migrated?
    Thank you for your time and patience reading this!

    ML
    1. I'd go with at least 40 because you need some extra disk space for the computer to work properly. You can install that one partition, load it, and see how much disk space is used and adjust as required. Also boot from it and make sure it runs okay.
    2. Everything but the Apple applications, which you probably won't be able to delete.
    Mavericks
    Almost all applications are stored in the hard drive level Applications folder. Check your user applications folder and if there are no applications, just copy the entire user folder.
    3. Hard to answer. In theory, none.
    4/5. They may not work due to differences between 10.8 and 10.9. You might want to consider using Setup Assistant and restore from Time Machine. Then delete the stuff you don't want.
    6. Shouldn't matter - same computer. I have 2 partitions and both are authorized for iTunes and the App Store.
    7. If you restore from Time Machine, you should be okay.

  • Adobe Download Assistant, Photoshop Elements 11

    Altho' I've tried many times over the past few days, I've been unable to download Photoshop Elements 11 using the Adobe Download Assistant.
    I received an email from Adobe inviting me to download Elements 11, with a key to convert the trial version to a full version, which is an upgrade for me.  I think this is because I wa never able to download a workable Elements 10.  It constantly crashed, and sometimes brought my computer down with it.
    I'd love to do download a working version of Elements 10, and have spent many hours trying, but nothing ever results from the Adobe Download Assistant.
    Now it's telling me (in tiny grey letters on a black background) "The download product installation appears to be corrupted.  (Error 108)  Use the 'reset product download button' to try to download it again."  Unfortunately, there is no reset product download button to use.  I have clicked on a down arrow which produced a selection of whether to restart the download or continue trying with the download already started.  I've chosen to restart the download.  Unfortunately, nothing has changed on the window, and it is still telling me about the corrupted download.
    I have no idea what the next step is or where to go to determine whether this whole thing is a hoax or whether it will download Elements 11.  If it does, will Elements 11 work?
    Can anybody out there help?

    Key please see solution 3 in Troubleshoot Adobe Download Assistant - http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html#main_Solutio n_3 for information on how to reset the Adobe Download Assistant.
    If you continue to face difficulties then you may wish to initiate a direct download of the software.  You can find directions on how to accomplish this at http://forums.adobe.com/thread/981369.

  • Adobe Download Assistant not working after bluescreen

    I like to get the trial for Photoshop Elements 10 but the ADA is broken:
    Under Windows 7 I already used the ADA to download and install Adobe Premiere 10 successfully a week ago.
    Then I tried to get Adobe Photoshop Elements 10 but my system crashed with a bluescreen. The computer is fine again but ADA is not working anymore:
    - after startup it doesn't list any (!!!) product to download. The list is just empty
    - I can enter my username and password and click login. Then the buttons are greyed out and nothing else happens. I have to kill the application with the task manager then.
    - I can apply for a new user account but it greys out and gets stuck like as the login.
    - The help buttons lead to empty Pages in the web browser.
    I tried to uninstall ADA and reinstall it (two times) but the behaviour stays the same.
    I tried to find direct download links (the FAQs told me that there should be some) but every download page will use the ADA. I'd be fine with a plain ftp page for the trials. :-)
    I'm an IT professional but I've no idea how to get ADA working, wiped from disk to get it reinstalled or to download the trials on another way. Please help.

    I will try to install at a different location this afternoon.
    The other thread handles a different situation: "... the Adobe Download Assistant launches, asks me to sign in ... I get a nice "Welcome, Steve" message ... and a list of related products below with links to download their trials ... The Help link takes me to an Adobe Download Assistant FAQ page ..."
    - I cannot sign in and don't get a welcome message.
    - I don't see a list of products.
    - The help link takes me to an empty page.
    BUT: where does the ADA get the list of products from? Is it online or local? If everything is online where I am blocked (sign in, list, help), I'll check the firewall. Perhaps the bluescreen crash changed something.

  • Mac CS6 Suite Adobe Download Assistant Error 110, 109, 108

    Hello,
    I am the IT Director for a Small College Campus and we are having problems with the Adobe Download Assistant in regards to downloading the Mac Adobe CS6 Trials. Regarding specifically the Design and Master Suites. I was able to download the Adobe Acrobat Pro XI trial as well as the Photoshop CS6 trial without problem, but when downloading the full Suite trial, I consistantly first get the 110 error, then if I try to restart the download from where it left off, I get an error 109 or 108. The download typically goes fine until the last couple percent, but near the end I get the error and can not restart the download short of starting over completely, in which case the cycle repeats.
    I've done everything in Solution 1 of http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html, with no success. I am also able to download the Windows version of the trial suites, inside a Parallels virutal machine running Windows 7 without error, on the same machine that gives me the error for the Mac version. It seems to only affect the Mac downloads. I tested the same download on the same machine, but off-campus and was able to complete the download, so I think it may have to be a communication error in regards to our firewall, but I'm not sure why it would only effect the Mac Suite downloads. Taking down our firewall completely is not an option.
    I have tried multiple browsers to start the ADA install from, as well as multiple machines running different operating system versions (Mac 10.8 Mountain Lion and 10.7 Lion/10.6 Snow Leopard - I'm not sure exactly which previous version it was) with no success. Both computers were on an Ethernet, hardline connection; no wireless. Any suggestions would be appreciated as our production department is starting a Creative Cloud account and would like to be able to use the download manager instead of the direct download links, from another support topic, I have provided them with for the time being, as they can be difficult to find at times, as well as less reliable.
    Thank you for any help you can provide.

    Creative Cloud uses the Adobe Application Manager as opposed to the Adobe Download Assistant.  You are right though the error messages which you are posting indicate a failure of the network connection.  Since the same computer works off your college network it does sound like a configuration problem with your firewall configuration.
    I would recommend working with the manufacturers of your firewall to determine how to properly allow access.  You may also want to review Sign in or activation errors | CS6, CS5.5 Subscriptions, CS6 Perpetual - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html which does provide some guidence for general system related errors.

  • Can't get rid of Popup windows on startup looking for "HP product assistant disk"

    -HP Officejet 4500 Wireless All-in-One
    -Windows 7 Home Premium - 64 Bit
    Everytime I start up my SONY Vaio laptop  I get three windows that say "the feature you are trying to use is on a CD-ROM or other removeable disk that is not available".  Its asks for a destination and says "insert HP product assistant disk and click ok".  I installed this printer over a year ago with no problems and have been suddenly getting this "error".
    I do not have this disk and my solutions center states the program and device has the newest updates and drivers installed.  
    Help/.

    Hey dakota343,
    I noticed your post(s) about the popup you are seeing when you start your laptop. I have taken note of the message and researched it and have found a help guide for you to follow. I hope this helps clear up the message for you.
    'The feature you are trying to use is on a disk that is not available' or a Similar Message Displays...
    If you have any other questions, concerns or comments, feel free to write me back!
    Good luck
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Já testei todos os meus plugins e não consigo assistir os vídeos que preciso. O que posso fazer?

    Estou com 8 plugins no meu computador Linux:
    Adobe Reader 9.5
    Div X Web Player
    IcedTea
    ITunes
    Quick Time
    Shockwave Flash
    VLC Multimedia
    Windows Media Player
    Já testei e atualizei um por um e ainda não consigo assistir os vídeos que preciso. Vale ressaltar que essa é a primeira vez que acontece isso, pois assistia os mesmos vídeos do mesmo site sempre. Alguém sabe de preciso conjugar desatualizações de alguns desses que sejam porventura incompatíveis? OU qualquer outra solução!

    Which videos aren't working?
    Can you give an example?

  • I am unable to complete Synching with my IPhone 4S as it tells me reason is that Apps are unable to be determined on my phone however all of them Purchased from I Tunes. Can someone assist me with a Solution

    I am unable to complete Synching with my IPhone 4S as it tells me reason is that Apps are unable to be determined on my phone however all of them Purchased from I Tunes. Can someone assist me with a Solution

    You can't merge accounts. But you can check your purchase history:
    iTunes Store & Mac App Store: Seeing your purchase history and order numbers
              http://support.apple.com/kb/HT2727
    Also, what may seem stupid to you... may be a protection of privacy to others.

Maybe you are looking for

  • Is there a way to open a new window from the "Go" menu in Mavericks?

    Before Mavericks, I was able to go from the Finder to the top menu "Go" -> "Utilities", or Applications or Home- and a new window would open. Now I have to manually open a new window to avoid loosing my existing window. Is there a way to open a new w

  • I found a bug in iOS 4.3.3 - Long voice memos

    Hello, i found a bug in iOS 4.3.3 for my iPhone 3GS Long voice memos can not be played In these cases, the iPhone saves the file not in the format M4A or can not open this file. This file is stored in the folder /var/mobile/Media/Recordings In This c

  • Camera Raw 8.5 not updated !

    Since last CC 2014 update Camera Raw is not updated to 8.5 following Adobe Staff demands and explanation i unsintall Adobe Bridge CC , Photoshop CC, Photoshop CC 2014 i uninstalled Creative Cloud Desktop, Adobe Manager ( trashed) deleted AAM pref and

  • Very New To Java

    Hi, I'm very new to java - 2nd day. Trying to move from Visual FoxPro. In testing statements to learn java, I can't seem to get java.util.Scanner.nextInt or nextDouble ... etc. to wait for a keyborad input. Is there something I have to configure befo

  • Color changes (darkens) in screen capture - color sync gamma setting?

    I encountered this weird effect that the color darkens when I did a screen capture in one Mac but not the other. In fact, it darkens more with shift-ctrl-cmd-4 (selection capture) than with shift-ctrl-cmd-3 (whole screen capture). The knowledge base