How to enable an axis without affecting the others ?

I use an 7340 4 axis card with MID7654 driver unit. I have to make several independant programs, using each 1 or 2 of the 4 available axis on the card. I wonder how to enable/disable a single axis without affecting the other, because the "enable axis" VI is not three states : an axis can only be enabled or disabled, but not "not affected". I didn't find any NIMotion VI to do it or to give "all axis" information.
Any idea ?

Hi,
    It is possible to check the states of the axis with the function "Read per axis status".
    It is possible to eanable and disable axis with the function "Enable axis".
    Hope it can help.
.NIDays2008 {font-family:Arial, Helvetica, sans-serif; font-size:12px; color: #065fa3; font-weight: bold; text-decoration: none; text-align: right;} .NIDays2008 a, a:hover {text-decoration: none;} .NIDays2008 a img {height: 0; width: 0; border-width: 0;} .NIDays2008 a:hover img {position: absolute; height: 90px; width: 728px; margin-left: -728px; margin-top:-12px;}
>> Avez-vous entendu parler de NI Days ?

Similar Messages

  • How to format my computer without affecting the software installed?

    how do I format my computer without affecting the software installed?

    You can, but if you don't format the drive using the Zero Data option all your personal files will still be accessible to someone who knows how to gain access to them. If that's not a concern then here are two options (easy and not so easy):
    The Easy Way
    1. First, boot from your Tiger DVD, select your language and click on the Continue button, then select Disk Utility from the Utilities menu, select your boot hard drive, go to the First Aid tab, and click the button for Repair Disk. Repeat this until no trouble is found. Then click on the Repair Permissions button. Then quit DU, return to the installer and shutdown the computer for a couple of minutes.
    This will assure that the drive is OK and permissions are OK.
    2. Next, boot to single user mode by restarting and after the chime press and hold down the COMMAND-S keys until a black screen with white type appears.
    3. At the prompt, type the following commands pressing return after each command line:
    /sbin/fsck -yf
    mount -uw /
    rm /private/var/db/.AppleSetupDone
    shutdown -r now
    The second-to-last command above will cause OS X to think that the operating system is newly installed, and when you reboot, it will send you to the startup wizard where you can start a new user without reinstalling.
    The Not So Easy Way
    Follow these instructions step by step to prepare a Mac for sale:
    First, back up the data:
    1) Shut down all Virtual PCs. They cannot be in their "fast saved" state. They must be shut down from inside Windows.
    2) Clone to an external drive using Carbon Copy Cloner.
    Next, prepare the machine for the new buyer:
    3) Deauthorize the computer in iTunes! Deauthorize both iTunes and Audible accounts.
    4) Remove Open Firmware passwords
    5) Turn the brightness full up and volume nearly so.
    Install a fresh OS:
    6) Insert the OS X install CD/DVD.
    7) Restart the computer while holding down the C key to boot from the CD/DVD.
    8) Run Disk Utility from the file menu and erase the internal hard drive (optionally zero all data).
    9) Install OS X.
    10) Reboot the computer.
    11) From the welcome screen, you can skip the registration step by typing command-Q.
    12) When prompted, create an account (it will be an admin account).
    13) From your new admin account, configure networking.
    14) Then use Software Update to bring your system and all of it's applications up to date.
    15) From Disk Utility, repair permissions on the new volume.
    Now delete the account you just created:
    16) Boot from a different volume (e.g. a firewire drive, if available)
    17) Clean up the image using the following terminal commands:
    prompt> rm /Volumes/<imagevol>/var/db/BootCache.playlist
    prompt> rm /Volumes/<imagevol>/var/db/volinfo.database
    prompt> rm -r /Volumes/<imagevol>/var/vm/swap*
    18) Now you can get rid of the admin account you used to set up the machine Use the terminal:
    prompt> nicl -raw /Volumes/<imagevol>/var/db/netinfo/local.nidb -delete /users/<admin>
    prompt> rm -r /Volumes/<imagevol>/Users/<admin>
    prompt> rm /Volumes/<imagevol>/var/db/.AppleSetupDone
    19) Shut down and ship it to your buyer. When they get it, it will boot to the Welcome screen just like a factory Mac, except that it's better because it's completely up to date.

  • HT5622 I have two iPhones using the same Apple ID. I want to change the ID on one of the phones without changing the other. Can it be done without affecting the other devices that use the ID.

    How can I change the Apple ID on one phone but the other. Right now they both use the same ID.

    Sure.
    For the iTunes/App store...Settings>iTunes/App Store...tap the ID shown, sign out...now, sign back in with the ID you want to use. Be aware, any apps obtained with the old ID can only be updated using that ID, as all apps are forever tied to the ID used to obtain them.
    Fir iCloud: Settings>iCloud...turn everything off, including Find My Phone. For Contacts/Calendars, you'll be prompted to keep the data on the phone or delete it...your choice. Then, scroll down, Delete Account. Now, set everything back up using the new ID.
    This won't affect any data stored at iCloud.com, or any other devices.

  • To insert a new row in a table control without affecting the other rows

    Halo experts,
    I have a Table control TCTRL in a program .
    The lt_tab contains two cols A and B
    In change mode of the transaction Col A is in display mode and Col B is in change mode
    When i press the + button to insert a new blank entry .I need a blank row with both col A and col B input enabled w/o affecting the display of above and below rows of table control
    In PBO module of subscreen 101
    LOOP AT lt_tab  WITH CONTROL tctrl.
    MODULE tctrl_status.
    endloop.
    In the user command of 0101
    i am writn
    When 'INS'.
    INSERT INITIAL LINE INTO itab.
    Inside MODULE tctrl_status.
    IF lt_tab IS INITIAL.
        LOOP AT SCREEN.
          IF screen-name = 'COLA'.
          screen-input = 1.
      ENDIF.
        ENDLOOP.
          MODIFY SCREEN.
    endif.
    but the problem here is still the Col A is in display mode and Col B is in change mode after output
    .Here modify statement is happening but it does not update the TCTRL-COLS-Screen structure for the col A ( which I have set statically while designing the screen ).I dont want to make the entire row in edit mode only the inserted row ( for both Col A and Col B) and the rest shud remain as it is
    Thanks
    Kallu

    hi Naveen
    I have made my tctrl input disabled for both the columsn and
    I have a module before the PBO loop where I set the like
    module set_tctrl_status.
    IF gv_ok_code NE gc_disp.
        LOOP AT tctrl-cols INTO gs_cols.
          IF gs_cols-screen-name = 'ColB'.
            gs_cols-screen-input = 1.
            MODIFY tctrl-cols FROM gs_cols INDEX sy-tabix.
          ENDIF.
        ENDLOOP.
    This is just to set the Col B in edit mode when in change and create status.
    But if i press the INS button for that change i am coding inside the loop endloop of the pBO like
    if itab is initial.
    LOOP AT tctrl-cols INTO gs_cols.
    gs_cols-screen-input = 1.
    MODIFY tctrl-cols FROM gs_cols INDEX sy-tabix.
    endloop.
    But the problems i it is setting the enite rows as input enabled . I want tos et only that row inpur enabled

  • Resetting username and password, but I have two iPhones using the same username and password. Can I delete the App Store user name on one device without affecting the other phone?

    When we bought our daughter her iPhone I thought it would be a great idea for her to use my username and password for her App Store. As she is learning to download and search off apps, it appears that this May not hand been a good idea as the apps I have on MY iPhone, are showing as already downloaded and on our cloud. I'd prefer to change the username on her device, but in looking I am noticing that I will probably be deleting the username and password on both of our devices and then I will have to reset for both of us. Am I correct?

    If you create an Apple ID for your daughter, signing out of the existing Apple ID with the iTunes & App Store on her iPhone will not change anything on your iPhone.
    All apps include DRM protection which is tied to the Apple ID that was used to download the apps.
    If she starts using her Apple ID to download apps, when there is an app update for an app on her iPhone that was downloaded with the current shared Apple ID, she will need to use that Apple ID and password to download the app updates.

  • I have two apple accounts on one computer. How do i delete one account without deleting the other?

    I have two questions!!   
    I need to know how to delete one account without deleting the other account on the computer?
    I am deleting the account because i have a new laptop that now has the my account... will deleting the account on one computer affect the account on the other laptop?

    What do you mean by deleting the account? One can't delete an Apple ID/iTunes account. One just stops using it.
    Since yo can only have five computer authorized for one iTunes account you might want to deauthorize the computer for that account
    iTunes Store: About authorization and deauthorization

  • HT201363 My iPhone, iPad and iPod are all associated with the same Apple ID.  How can I remove the iPod and associate it with a new Apple ID without affecting the data on the other devices (note: there is no data on the iPod I want to keep)?

    My iPhone, iPad and iPod are all associated with the same Apple ID.  How can I remove the iPod and associate it with a new Apple ID without affecting the data on the other devices (note: there is no data on the iPod I want to keep)?

    Very simple.  Turn off Find my iDevice, then  Tap Settings, General, Erase, Erase all content and settings.

  • I have 2 ipod touches. I backed up the new one with old's info. The old one will not unlock with the password I had wrote down and I tried my new ones password.  How can I reset the old ipod without affecting the new one and how can I unlock the old one?

    I have 2 ipod touches. I backed up the new one with old's info. The old one will not unlock with the password I had wrote down and I tried my new ones password.  How can I reset the old ipod without affecting the new one and how can I unlock the old one?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software

  • How to remove a photo from a LRPublishedCollection without affecting the Publish Service?

    Hello guys!
    I would like to know if there is a way to remove a photo from a LRPublishedCollection without affecting the Publish Service. Basically I would like it to be removed from the collection but I don't want to be added to "Deleted Photos to Remove".
    Thanks a lot!
    Jordy.

    I don't know how to keep it from being put on the "Deleted Photos to Remove" list at least briefly, but if you do this, it'll amount to the same thing:
    * save status for all photos in collection
    * set status of all photos to "do not publish"
    * remove photo from collection.
    * publish the collection, and make sure you call the deleted callback, but don't do anything else.
    * restore previous photo statuses.
    Only works in Lr4+.
    Rob

  • How do i move some of the folders in iphoto library ( to an external HDD) without actually having to move the whole library and without affecting the albums i have already created in iPhoto.????

    I have been storing my photos separately in folder and importing it in iphoto without actually copying them. Now to free some space in my hdd i want to move some of those folders to an external hdd. How do i do that without affecting my iphoto albums. ????

    Well, strictly speaking, you can do this.Two ways. One is tricky:
    How are you at editing SQL databases?
    This user found a way:
    https://discussions.apple.com/thread/3216539?tstart=30
    But tread very carefully - get it wrong and you'll hose everything. Make a back up first.
    The other is expensive:
    Purchase Aperture, and if you have the latest versions of both these apps, then you can open the Library with Aperture, and use the relocate Masters command.
    Or, in the end, make a managed Library. A Referenced Library is more work for zero gain.
    Regards
    TD

  • How to replace a layer which has a mask applied without affecting the mask?

    I have a layer with a photo.  I have animated a mask on this layer, but now the client wants the photo replaced with another one.  When I add a new photo to a new layer and copy the mask properties from the good working layer, the mask winds up in a different place than the original.  I've tried doing a replace footage with the source photo trying to make it the new photo but same results, the mask always gets repositioned.
    How can I replace an image on a layer that has an animated mask on it with another one without affecting the mask?
    Thanks,
    Steve

    Thanks everyone.  Now that I understand more about Track Mattes it works fine.  I can scale and position new layers under the animated mask.  This helps tremendously

  • My MacBook Pro died, but have a TimeMachine backup. I've bought a new one. How do I make the new one just like the old without affecting the OS on the new one?

    My MacBook Pro died, but have a TimeMachine backup. I've bought a new one. How do I make the new one just like the old without affecting the OS on the new one?

    ppauley wrote:
    My MacBook Pro died, but have a TimeMachine backup. I've bought a new one. How do I make the new one just like the old without affecting the OS on the new one?
    One you start up the new one for the first time, Setup Assistant starts and offers you the option of migrating your old Mac to your new Mac with Time Machine, among other choices, as the source. You can also use Migration Assistant (in the Utilities Folder) to do the same thing.

  • Pages:  How can I sort one column of words and not have it affect the other columns?

    How can I sort one column of words and not have it affect the other columns?  I have opened the inspector to the edit columns and rows under Table.  It will sort the column, but then it changes the other colums as well.  I know that if I use Numbers, it will work, but I want to know how to do the same thing in Pages.

    Hi Peter,
    Numbers sorts full rows on values in selected column(s). The technique for sorting a single column is essentially the same as Jerry is describing for Pages tables—separate the (data in the) column to be sorted, sort it, return it to the table.
    In Numbers the actual column may be separated from the original table, sorted, then returned. In Pages, the data must be extracted, sorted, then pasted back in, overwriting the unsorted data (if it was left in the original table).
    iWork tables follow a database model in which each row is a Record, and each column holds a Field within the records.
    As evidenced by the current question (and several similar questions arising in the Numbers community) that model doesn't apply to the way some users, especially some who come in from the MS Excel world, use tables.
    With Excels model—islands of data on a single large table, the ability to sort one or a selected few columns of data makes sense. One 'island' may comprise only cells AA21:AH50. Sorting that small 'table' should be possible without disturbing the rest of rows 21-30, which are probably part of one or more other 'data islands' in the sea that is a MS Excel spreadsheet.
    In Numbers, each of those 'islands' would be a separate Table, and that Table would be sortable without disturbing other Tables in the document.
    Regards,
    Barry

  • Creation of credit notes without affecting the stock on FI side.

    Hello,
    We would like to know about the procedure to follow to create credit notes without affecting the stock.
    For instance a credit note has to be made because the invoice pricing was not correct (discount not taken into account,etc...). We want to issue a credit note for the customer in value (not in quantity) refering to this invoice.
    How to process? Is it supposed to be through a FI transaction?
    Thanks and Regards,
    Rajesh Kumar Mantri

    Dear,
    Use transction FB70 and select Credit Memo in transaction and pass the entry and mention the invoice numner in field Inv. Ref. under payment tab..
    Regards,
    Chintan Joshi

  • Sorting the year without affecting the tracks

    How do I sort the year from most recent to oldest without affecting the order of the tracks?

    The most recent albums at the top of the list is "last is listed on top", and apparently Apple has not set up a sub filter to list albums "last on top" while listing tracks "first on top".
    If you list Albums "first on top" then the tracks will also be "first on top".
    Yeah it's kinky.
    At the top of iTunes, click iTunes/Provide iTunes Feedback. Tell Apple what you think.
    Tracy

Maybe you are looking for

  • Screen dims and multi-language "restart" message appears

    Currently, every time Safari is used, the entire screen dims and a multi-language (German, Chinese, etc.) message comes on the screen saying that I must physically power down my machine and restart. No error message is given, nor are any other option

  • HT1751 iTunes thinks I'm running two versions on my computer. Please help.

    My old computer crashed and I just replaced it. Since the new computer I installed a newer version of itunes. Now itunes thinks I'm running two versions on my computer. Please help.

  • Cannot Download Movies on My Canon DC20

    Hey guys need some help. I bought Camcorder Canon DC20 when i record my video i want to download it on my iMac G5 10.3.9 Panther but I was shocked as it can't download the movie my G5 requires a firewire in order for it to be downloaded is there anyw

  • Computer not authorised. Need help badly.

    When I connect my iPod touch 3g to my PC it automatically opens iTunes and starts syncing. Almost immediately after the syncing has started it tells me that my computer isn't authorized for some of the apps on my iPod. Then I have three options Autho

  • Prints an extra page with message

    Every time I print I get an extra page. I'm only prinitng one doucment and I get a second page with the following message: userdict/ESPW1{}bind put Can someone help make this stop?