FP-AO-210 to replace analog potentiometer?

I have an old machine with 0-5V knob-style potentiometers for heat control. I wish to parallel into the potentiometer with Fieldpoint modules. Can I do this with a FP-AO-210 (0-10V output)? Of course I would only utilize 0-5V. I would use the 1601 Network interface, and power the NI system with the same power off the machine as to have the same ground. The machine has 24VDC. I need the signal isolated from the voltage output of the FP-AO-210.
I would then turn the potentiometer to zero position, and let the Fieldpoint system (in conjunction with my computer) controll the machine.
Any thoughts or suggestions with my application? Thank you in advance for your time.

If your existing control is truly configured as potentiometer, i.e. one end is 0V, one end is 5V and the 'load' on the wiper is not significant relative to the output impedance of the FP-AO then what you have suggested _might_ work. You won't, however, have isolation between the FP-AO and the machine it is controlling. Depending on your isolation requirements a better approach might be to use some digital outputs from an FP-DO to drive some opto-isolators and then a digital potentiometer. As an example, Dallas Semi has some stuff like: http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2780
This has the advantage that you can get good isolation and the controlled machine can function at the previous setting without the FP controller being active. Lots more details will be required before you can engineer a solid solution, however, and the detail may make all of the above irrelevant. Hope this helps.
Matt

Similar Messages

  • Escape Latin Characters

    I need to escape latin characters in an xml doc. Example: "é" is escaped to "é". I thought I could use the ASCII function, but SELECT ASCII('é') FROM DUAL in Oracle gives me 50089.
    I coded this as a quick fix, but I'm sure there's a better way.
    FUNCTION escape_latin(p_str IN VARCHAR2) RETURN VARCHAR2 IS
    v_str VARCHAR2(3000) := p_str;
    BEGIN
    v_str := REPLACE(v_str, 'À', 'À');
    v_str := REPLACE(v_str, 'Á', 'Á');
    v_str := REPLACE(v_str, 'Â', 'Â');
    v_str := REPLACE(v_str, 'Ã', 'Ã');
    v_str := REPLACE(v_str, 'Ä', 'Ä');
    v_str := REPLACE(v_str, 'Å', 'Å');
    v_str := REPLACE(v_str, 'Æ', 'Æ');
    v_str := REPLACE(v_str, 'Ç', 'Ç');
    v_str := REPLACE(v_str, 'È', 'È');
    v_str := REPLACE(v_str, 'É', 'É');
    v_str := REPLACE(v_str, 'Ê', 'Ê');
    v_str := REPLACE(v_str, 'Ë', 'Ë');
    v_str := REPLACE(v_str, 'Ì', 'Ì');
    v_str := REPLACE(v_str, 'Í', 'Í');
    v_str := REPLACE(v_str, 'Î', 'Î');
    v_str := REPLACE(v_str, 'Ï', 'Ï');
    v_str := REPLACE(v_str, 'Ð', 'Ð');
    v_str := REPLACE(v_str, 'Ñ', 'Ñ');
    v_str := REPLACE(v_str, 'Ò', 'Ò');
    v_str := REPLACE(v_str, 'Ó', 'Ó');
    v_str := REPLACE(v_str, 'Ô', 'Ô');
    v_str := REPLACE(v_str, 'Õ', 'Õ');
    v_str := REPLACE(v_str, 'Ö', 'Ö');
    v_str := REPLACE(v_str, '×', '×');
    v_str := REPLACE(v_str, 'Ø', 'Ø');
    v_str := REPLACE(v_str, 'Ù', 'Ù');
    v_str := REPLACE(v_str, 'Ú', 'Ú');
    v_str := REPLACE(v_str, 'Û', 'Û');
    v_str := REPLACE(v_str, 'Ü', 'Ü');
    v_str := REPLACE(v_str, 'Ý', 'Ý');
    v_str := REPLACE(v_str, 'Þ', 'Þ');
    v_str := REPLACE(v_str, 'ß', 'ß');
    v_str := REPLACE(v_str, 'à', 'à');
    v_str := REPLACE(v_str, 'á', 'á');
    v_str := REPLACE(v_str, 'â', 'â');
    v_str := REPLACE(v_str, 'ã', 'ã');
    v_str := REPLACE(v_str, 'ä', 'ä');
    v_str := REPLACE(v_str, 'å', 'å');
    v_str := REPLACE(v_str, 'æ', 'æ');
    v_str := REPLACE(v_str, 'ç', 'ç');
    v_str := REPLACE(v_str, 'è', 'è');
    v_str := REPLACE(v_str, 'é', 'é');
    v_str := REPLACE(v_str, 'ê', 'ê');
    v_str := REPLACE(v_str, 'ë', 'ë');
    v_str := REPLACE(v_str, 'ì', 'ì');
    v_str := REPLACE(v_str, 'í', 'í');
    v_str := REPLACE(v_str, 'î', 'î');
    v_str := REPLACE(v_str, 'ï', 'ï');
    v_str := REPLACE(v_str, 'ð', 'ð');
    v_str := REPLACE(v_str, 'ñ', 'ñ');
    v_str := REPLACE(v_str, 'ò', 'ò');
    v_str := REPLACE(v_str, 'ó', 'ó');
    v_str := REPLACE(v_str, 'ô', 'ô');
    v_str := REPLACE(v_str, 'õ', 'õ');
    v_str := REPLACE(v_str, 'ö', 'ö');
    v_str := REPLACE(v_str, '÷', '÷');
    v_str := REPLACE(v_str, 'ø', 'ø');
    v_str := REPLACE(v_str, 'ù', 'ù');
    v_str := REPLACE(v_str, 'ú', 'ú');
    v_str := REPLACE(v_str, 'û', 'û');
    v_str := REPLACE(v_str, 'ü', 'ü');
    v_str := REPLACE(v_str, 'ý', 'ý');
    v_str := REPLACE(v_str, 'þ', 'þ');
    v_str := REPLACE(v_str, 'ÿ', 'ÿ');
    RETURN v_str;
    END escape_latin;
    Is there a built in function I can use to make this cleaner and shorter?
    Thanks for the help!

    I thought about it, but it will replace not just characters with code >= 192 but characters with code >= 128 (plus \ character).Which should be absolutely ok, since otherwise you may depend on the environment:
    C:\>echo %NLS_LANG%
    AMERICAN_AMERICA.US7ASCII
    C:\>sqlplus michael@oracle
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu Oct 22 20:34:54 2009
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    SQL>select xmltype('<?xml version="1.0" encoding="WE8MSWIN1252" ?><e>' || chr(150) || '</e>') from dual;
    XMLTYPE('<?XMLVERSION="1.0"ENCODING="WE8MSWIN1252"?><E>'||CHR(150)||'</E>')
    <?xml version="1.0" encoding="US-ASCII"?>
    <e>?</e>
    SQL>exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP, Data Mining
    and Real Application Testing options
    C:\>set NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252
    C:\>sqlplus michael@oracle
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu Oct 22 20:35:17 2009
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    SQL>select xmltype('<?xml version="1.0" encoding="WE8MSWIN1252" ?><e>' || chr(150) || '</e>') from dual;
    XMLTYPE('<?XMLVERSION="1.0"ENCODING="WE8MSWIN1252"?><E>'||CHR(150)||'</E>')
    <?xml version="1.0" encoding="WE8MSWIN1252" ?><e>û</e>
    SQL>

  • Using the Canoscan LiDE210 how do I get a multipage PDF file to OCR?

    Purchased a LiDE 210 to replace my LiDE 20 (- which worked well for 9 years) - How can I enable the OCR function when scanning a multi-page document into PDF format and want to transfer it to WORD DOCX format, without having to edit and correct manually page by page (200-500 pages of text?

    Hello,
    You can't create pdf using Adobe Reader. You need Adobe Acrobat to create pdfs, for more on Acrobat, please refer - http://www.adobe.com/products/acrobat.html
    Also you can subscribe for our CreatePDF service here - https://www.acrobat.com/en_gb/products/pdf-pack.html
    ~Deepak

  • FAQ & Link Page

    Frequently Asked Questions & Link Page
    (This topic is an ongoing list of links to different FAQs and interesting topics on this forum and other web sites. Anyone can add new links and edit this content).
    <b>Quick Search</b>
    <b>FORUM Search Engine:</b>
    http://bbs.archlinux.org/search.php
    <b>Arch Linux Wiki:</b>
    http://wiki.archlinux.org/
    <b>Arch Linux FAQ page:</b>
    http://archlinux.veloxis.de/faq/content … l-faq.html
    <b>Archers' Favourite</b>
    <b>Favourite window manager?</b>
    http://bbs.archlinux.org/viewtopic.php?id=3372
    <b>Which root FS do you use?</b>
    http://bbs.archlinux.org/viewtopic.php?id=3376
    <b>What sound drivers do you use?</b>
    http://bbs.archlinux.org/viewtopic.php?id=2858
    <b>Arch Linux's Favorite Packages?</b>
    http://bbs.archlinux.org/viewtopic.php?pid=12157#12157
    <b>How much do you like Arch Linux?</b>
    http://bbs.archlinux.org/viewtopic.php?id=1265
    <b>User contributions projects & developements</b>
    http://bbs.archlinux.org/viewtopic.php?id=6483
    <b>Link Page</b>
    <b>ArchLinux Trusted Users Repo</b>
    http://tur.archlinux.org/
    <b>ArchStats</b>
    http://archstats.coding-zone.com/
    <b>ArchLinux Package Review Project</b>
    http://arch.gooeylinux.org/
    <b>Window Managers and Desktops:</b>
    http://www.plig.org/xwinman/
    <b>WINE Application Database:</b>
    http://appdb.winehq.org/
    <b>The table of equivalents / replacements / analogs of Windows software in Linux:</b>
    http://linuxshop.ru/linuxbegin/win-lin- … able.shtml
    <b>Arch Linux (AMLUG) Live CD</b>
    http://amlug.net/new-projects/live-cd/a … ve-cd.html
    <b>Build your own live CD</b> - a "how-to-do" document:
    http://bbs.archlinux.org/viewtopic.php?id=2425
    <b>Monitor Technology Guide</b>
    http://www.necmitsubishi.com/support/cs … /index.htm
    <b>Useful webpages for linux newcomers</b>
    http://bbs.archlinux.org/viewtopic.php?id=4016

    http://wiki2.archlinux.org/index.php/ArchFAQ
    Another FAQ to add to the fold.

  • Random Power Switch-Off (Disconnect?) on HomeHub o...

    Following useful discussions directly with the Forum Moderation team in October on a sequence of progressively slowing download speeds my Voyager 210 was replaced with a BT HomeHub (HH) Type B (software ver. 4.7.5.1.83.3.5. and Gigaset (now Sagem Communications) manufacturer  - see <http://en.wikipedia.org/wiki/BT_Home_Hub >
    The HH download speed of 10,040kbps initially on 25 Oct and 10,416 kbps on 29 Oct was satisfying.   I have been switching the router off at night and on in the morning, or if the house is left empty to reduce the fire risk and power consumption.  It may be noted the HH power consumption of 10W uses up 1 unit every four days. ( A neighbour does the same on his HH Type A and was getting over 10,000 kbps)
    However, for some reason from around the end of November the speed has dropped, typically:-
    27 Nov    9728 kbps    0 day; 00:00:47
    4 Dec    6656           0 day, 02:00:27
    9 Dec     6656        0 day, 00:43:13
    11 Dec     6656        2 day, 07:39:12
    13 dec     6656        4 day, 02:02:58
    17 Dec     5987        1 day; 07:26:21
    19 Dec     7006        0 day, 08:11:38
    20 Dec     7006 kbps    1 day, 07:57:01
    Noting the drop at the end of November  I decided on 2 December  to leave the router powered on (accepting the compromise risk above) to try and ensure the line speed stabilises via the connection to the DSLAM (Digital Subscriber Line Access Multiplexer)circuit in the exchange.
    A couple of times I had noticed the yellow power on LED was showing when I went to use the computer (the computer is switched off when not in use).  In particular on 19 Dec when I noticed it, after getting up, and similarly also on the 20th.   I then realised that the odd connection times shown on the ADSL Settings print-out, which I had made, were showing switched-off interrupts (see extract above).   I think these are broad-band interrupts rather than actual power switch-offs as the mains power was continuously on?
    My query is what has been happening since I have left the router continuously powered on?   Have BT being "doing things" at the Crowthorne exchange on the DSLAM  boards -  see  <http://www.kitz.co.uk/adsl/equip.htm  &   http://www.kitz.co.uk/adsl/linestats.htm >.   I don't think there has been any attempt to download new software to the router as the unit still shows the same version number.
    Some of the line stats (Down/Up) have changed as well
    25 Oct     Noise margin    14.8 dB/13.1dB
                  Line Attenuation    27.2 dB/12.0 dB
                  Output Power    16.6 dBm/2.0 dBm
    27 Nov    Noise margin    10.6 dB/30.5dB
                  Line Attenuation    26.9 dB/11.8 dB
                  Output Power    22.6 dBm/1.7 dBm
    13 Dec    Noise margin    12.9 dB/19.1dB
                 Line Attenuation    28.1 dB/14.6 dB
                  Output Power    18.7 dBm/1.7 dBm
    20 Dec    Noise margin    16.8 dB/8.6 dB
                  Line Attenuation    27.9 dB/14.6 dB
                  Output Power    12.4 dBm/1.7 dBm
    The 27 Nov. Noise figures coincide with the high 9728 kbps figure, but on the other hand the 25 Oct. noise figures correspond to the initial 10,040 kbps - why?   What does the anomalous Up Noise Margin 30.5 dB figure suggest - the line has suddenly become very quiet?
    Rodney Fry
    G3NDI

    Here are the ADSL Settings (I inadvertently reset the router in copying the data whcih is why the connection time has reset to near zero!).
    The BT speedtester states I haven't installed Java applets into my Firefox ver 3.6.12  browser, so here are the results from another site which I have been using for some time
    < http://www.speedtest.net/ >
    this gives 4860 kbps down;   620kbps up  and a ping of 27msec to the Maidenhead server.
    I am not connected to the master socket, which is the original one from some years back and is the one I have been using on broadband for some years.   The extension lead goes upstairs to another phone socket and BT ADSL filter.
    No, I haven't reset the router, the power has been on continuously since 2nd Dec.   Switching off the computer does not affect the router power.    I inadvertently caused a broadband disconnect just now in getting the data below.
    Rodney Fry
    ADSL line status
    Connection Information
    Line state
    Connected
    Connection time
    0 days, 00:00:19
    Downstream
    6,487 Kbps
    Upstream
    732 Kbps
    ADSL Settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    G.992.5 Annex A
    Latency type
    Interleaved
    Noise margin (Down/Up)
    15.6 dB / 7.9 dB
    Line attenuation (Down/Up)
    28.0 dB / 14.6 dB
    Output power (Down/Up)
    10.3 dBm / 1.7 dBm
    Loss of Framing (Local/Remote)
    0 / 0
    Loss of Signal (Local/Remote)
    0 / 0
    Loss of Power (Local/Remote)
    0 / 0
    FEC Errors (Down/Up)
    0 / 392529
    CRC Errors (Down/Up)
    1 / 165291
    HEC Errors (Down/Up)
    7 / 0
    Error Seconds (Local/Remote)
    1 / 78332

  • I have scratched the case of my mini 210 1004s a, can i get a replacement cover ?

    dose anyone know if I can get a replacement top for my mini 210 1004sa (silver pattern) as I have scrached it quite badly ?
    Thanks in advance !
    GTomo

    Is this it ?
     http://www.ebay.com/itm/593486-001-New-HP-Mini-210-Series-BACK-LCD-Bezel-Silver-/170784323824
     http://www.vivotechnology.net/p-15577-593486-001-new-hp-mini-210-series-back-lcd-bezel-silver-38nm6l...
     There were so many styles and patterns made, it's difficult to know which one you're after.
     Here's a link to the HP Media Library and how to get there.
     http://h20574.www2.hp.com/default.htm?lang=en&cc=US&hpappid=psml
     The video to remove the Display Cover has you take it apart quite a bit, but you could probably just remove the cover just on its own. It just snaps in and out of place, the video shows the woman using a wooden tool to remove the cover and I don't see why you just couldn't remove the cover with out having to disassemble the whole machine.

  • Can I use two FP-AO-210'​s and one FP-1000 to obtain 16 channels of analog output?

    Hello All,
    I'm new to both Fieldpoint and LabVIEW.
    I'm developing a control system that requires at least 9 channels of analog-only output. I have been trying to connect two FP-AO-210's to a single FP-1000 by connecting one FP-AO-210 directly to the FP-1000, and the second FP-AO-210 to the first FP-AO-210. However, Fieldpoint Explorer only detects the network interface and the first analog output module.
    Is this configuration correct? Or, do I need a FP-1001 in order to use a second FP-AO-210?
    Does anyone have any alternate suggestions on how to obtain at least 9 channels of analog output?
    Thanks,
    Eric W

    Eric,
    One FP-1000 (or FP-1001/160X/20XX) can control up to 9 IO modules. If the second FP-AO-210 is not being detected by FieldPoint Explorer there are a couple things to check. First check to make sure that all of the terminal bases and modules are firmly connected to each other.
    Next, check the Power & Ready LED of the FP-AO-210 at address 2. Both LEDs should be lit. If they are not, de-power the system, remove the modules and terminal bases and make sure that you do not have any bent pins. Re-assemble and power up the system. Use FieldPoint Explorer again.
    If the module is still not detected, take a look at the addressing of the detected modules. The system should be detecting the first FP-AO-210 at address 1 (or 1 + a multiple of 10 if you have s
    et the FP-1000 to a different address). If the FP-AO-210 is at a different address, then it is likely a problem with the addressing circuitry either in the network module or the terminal base. Try swapping the positions of the two terminal bases and try again. If it works, then the error is in the addressing circuitry of the terminal base, if not, then it is in the addressing circuitry of the network module. Note: bent pins can also cause this.
    Regards,
    Aaron

  • Does anyone know where I can get a replacement CPU fan for my HP mini 210-2170NR laptop?

    My fan literally "shattered" -- the blades are dropping off the wheel as if it's rotting. Half of them fell off when I opened up the laptop and checked it. Ordered a fan from Amazon claiming to be 210 series compatible but it couldn't fit. Do you know of any sites online where I can order a replacement.

    Here is one on eBay....double check the part number, however.
    http://www.ebay.com/itm/HP-Mini-210-2000-Series-2100-Cooler-Heatsink-w-Cooling-Fan-622330-001-/12087...

  • Replacement keyboard in grey/silver for a hp mini 210-2004sa

    Good evening,
    This part is beginning to turn into the bane of my existance. I need a replacement keyboard that I can refit as soon as possible; Within a few days is my target.
    I have trawled the internet and can find 1 item available from Hong Kong shippable in 4 weeks.
    Are HP able to provide this part for a HP Mini 210-2004sa PN# XD398EA in Grey/Silver as per the rest of my netbook?
    Many thanks,
    Tom

    Hi,
    You can find part # from the following site:
       http://h20141.www2.hp.com/hpparts/?cc=US&lang=EN&jumpid=hpr_r1002_usen
    You can buy from there or use part # and eBay it.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Does anyone know why i am being asked to pay £210 to get my daughters phone repaired or replaced for accidental damaged as the phone is only 5 months old

    hi can someone tell me why i am being asked to pay £210 for my daughter to get her phone screen repaired or replace for accidental damage as the phone is only 5 months old

    The warranty does not cover accidental damage.  If you have a car that is under warranty and you crash it do you think you can get it repaired under warranty?

  • Replace keyboard for hp mini 210

    The keyboard on my hp mini is bad need a replacement, but unable to find it on the website? hp spare # 590527-001

    Hi
    Please call HP Technical support over the phone and place the order for Keyboard might be the part number may be changed.
    http://h20141.www2.hp.com/hpparts/
    Please change the country and you could order the part by yourself.
    Let us know how it goes!
    *Although I am an HP employee, I am speaking for myself and not for HP.
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Replacing keyboard on hp mini 210-4150nr

    Trying to remove the keyboard on a hp mini 210-4150nr, but cant get the keyboard to pop out. I downloaded the pdf manual and took out the two screws with the keyboard picture, removed the hard drive, and pushed on the "keyboard relese area", but all it did was slightly bow out. It still feals like something is srewed into the keyboard. I even tried removing all of the screws on the bottom edge of the case but that didn't make any difference. Any help would be greatly appreciated. Thanks.

    Frizzlefry wrote:
    ...  I downloaded the pdf manual and took out the two screws with the keyboard picture, removed the hard drive, and pushed on the "keyboard relese area", but all it did was slightly bow out. ...
    Hi,
    Page #49 of the following manual shows 3 screws and no need to remove the HDD.
       http://h10032.www1.hp.com/ctg/Manual/c02619136.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Usb 6009 continuous analog output

    Hi
    I'm pretty new to Labview, so you may have to bear with me. I have a USB-6009 and I want to generate a continuos analog output voltage. I've got the example you have posted 'Gen Mult Volt Updates-SW Timed_LV7.1 (0 to 4).vi' working and it outputs a continuous sine wave.
    In a similar manner I need to generate:
    1. Ramp up voltage (and ramp down voltage): starting with a continuos constant voltage, which after a period of time linearly increases to another constant voltage, and which allows me to specify the 3 time intervals and the rate of increase.
    2. Pulsations: whereby I can specify the amplitude and time interval of each pulsation
    This is so that I can control voltage to a valve which regulates my pipe flow. In the example I have (one stated above), I do not understand specifically:
    i. Why I need both a 'Software Loop Time (ms)' as well as 'Timeout'
    ii. The 'Sinusoidal Pattern' input which seems to generate data for a sine wave- I can't get a description of that and there are no similar VIs for other waveforms; and what is the function of the two numbers it has?
    iv. How do I change amplitude and time period for the wave?
    iii. What does 'Index Array' do?
    thank you

    Hi there,
    I'm guessing the VI you are using is the one from this KB:
    http://digital.ni.com/public.nsf/allkb/6F2C2B49A89D685C8625711D007BDD64
    i. The software timed loop control is to control the rate at which you change the voltage output.  The timeout on the DAQmx Write VI is the maximum time in seconds the VI will wait to output a sample (eg. if the write buffer is full, the Write VI will wait for it to become available for 'timeout' seconds before outputting an error).
    ii. The sine pattern is just an array constant of doubles that make up the sine wave voltage values, and the for loop adds an offset (of two volts) to every single one of those values. You might want to replace that entire array constant and for loop with a Simulate Signal Express VI (just search for Simulate Sig or look in the Functions >> Input palette) and convert the dynamic data output to an array of doubles.  You can configure the type of waveform, amplitude, and time period from that express VI as well.
    iii.  Refer to previous answer.
    iv.  Index array returns an element of an array based on the index input.  You can turn on the context help and move your mouse over functions to get more help on them.
    I hope that helps!
    Way S.
    NI UK Applications Engineer

  • Is it time yet for Microsoft to "Recall" Office 2013 and provide anyone who has a 2013 license a replacement Office 2010 license?

    The interface is terrible and can't be changed.  Every application in the suite locks up/crashes nearly constantly on any machine it is used on.  The activation process is terrible and wastes hours of any support/IT dept's time.  From a 'privacy
    standpoint', the software is seemingly criminally intrusive.  It is clearly a product that should never have been released and is so far from functional that it can't be repaired by any 'service pack', 'hotfix', or 'patch'.  It needs to be completely
    scrapped.
    The only 'redeeming quality' of this software is that the guy who was in charge of creating it is gone from Microsoft.  (Unfortunately, he is now President Obama's appointee for running the attempt at repairing the 'healthcare.gov' website... 
    out of the frying pan...   )
    When the software is installed using one profile (domain or machine account) and a different profile tries to use the software, it requires 're-activation' - which often fails because the software believes it has been installed multiple times. (This is particularly
    frustrating because it has to be installed by an administrative user, but most of the time, the person who 'uses' the software is not the 'administrator' - so it is almost always being 'installed' using one profile and 'used' using another profile).
    The necessary intrusion into privacy created by the requirement of a "Microsoft Account" to use the software is seemingly criminal.
    The tracking of, and installation of licenses is absolutely ridiculous. 
    An example: 
    Many of my clients have many users and many computers (up to 75 or so). 
    I could create a "Microsoft User Account" for each 'user', but these machines get moved between users, and the software license is tied to the 'machine' and not to the 'user' so as soon as that happens, the licenses and the users are no longer
    in line and become impossible to track.
    I could create a "Microsoft User Account" for each 'computer'... and I can't even count the ways this would be a nightmare to try to track.
    I actually did that up front for one client, and created Exchange email boxes for each computer so that "prove you are really you" emails from Microsoft could be received managed, and responded to, and passed out second usernames and passwords
    to all of the users so they could "log-in" to their Office 2013 software, and created a database of the 'computer usernames and passwords' so I could track this... unfortunately, this confused the users (as it rightfully should) so they would change
    the passwords for their computer's 'Microsoft User Account' thus locking me out and invalidating my database, ... and... CLUSTERF#%K!!!
    As a 'best - worst case', I have had to create a single 'Microsoft User Account" for each of my clients' businesses so I can install and activate Office 2013 products.  This is a whole new set of "Awesome Stupidity". 
    Now, I can put a new computer into a client's office and install their new license key for their oem Office 2013, and it shows up in the 'business's Microsoft User Account'.  Then when I give the machine to the user, I get to 're-activate' the software
    (hoping that it doesn't tell me to piss-off - which happens about 40% of the time.  This is a process that can only be described as a "feat of engineering created by a group of monkeys whose former jobs included 'janitor at MAD magazine headquarters'
    or 'beer-pong referee'). 
    It starts with two hours of pressing phone buttons and ultimately talking to someone who tells me "yeah, nothin' I can do about that I'm just here for product activation" (which, incidentally, is done by machine until you pass through MS's ridiculous
    labyrinth of repetitious keystroking until the machine is convinced you are just too stupid to punch in the right numbers and allows you to talk to a person... who then asks you for the exact same set of numbers and repeats back the exact same responding set
    of numbers and acts dumbfounded when it still doesn't work - since it didn't work the first six times you punched or said it into the phone) followed by "I need to send you to the support group... but because it's 6:30 pm (in a process you started at
    3:00pm) they are gone for the day and you'll have to call back on Monday morning"
    At some point in the process, you get to log into the "Microsoft user account" and 'roll the roulette wheel of stupidity' by trying to activate the right software from a list of 40 different lines that all say "Microsoft Office 2013 Home and
    Business oem", but none give any indicator or differentiating factor like for instance: license key, date installed, license key last 4 digits, mother's maiden name, phase of moon when software was first activated, color or type of blood of the user's
    paperboy's dog's previous owner... NOTHING... RANDOM FREAKING STAB IN THE DARK - pick one, any one, hope its the license you are trying to install onto this machine, 'cause if not, you very well may kill the product on some other machine.
    So through the process, the lucky support staff person gets' to waste roughly an hour and a half on average for every Microsoft Office 2013 installation.  I have actually had to start telling my clients that they are going to likely have to pay an extra
    $100 or so per machine in order to get their new Microsoft Office software which comes on their new computer activated - that number tends to work out roughly accurately - except that it is a terrible way of trying to 'please a client'.
    Oh,... and did I mention... "THE SOFTWARE CONSISTANTLY FAILS"!?! 
    A client tries to open a document that they have been using for 8 years and Excel doesn't say "Hey, I don't know how to deal with some element of the file that you put in here using Excel 2003, or Office 2010 (both products, by the way, which worked
    great) - no... instead,... it crashes.  Doesn't really do any damage to the file it choked on, but the work you'd been doing on three other files which you also had open,... yeah,... that work is gone.
    Yeah,.... over time, I have developed a pretty consistent spiel for client's needing new computers that goes over how absolutely terrible Office 2013 is, and explains that our options are further limited by Microsoft's yanking of all Office 2010 or previous
    products from market availability, and explaining the merits of both LibreOffice and OpenOffice, as well as their drawbacks.  I also have a strangely static response explaining how "larger companies are not burdened by these issues because they are
    able to use MOPL which allows them to downgrade their productivity software to Office 2010 so they can continue to function happily, but this is really not a cost effective solution for smaller companies who primarily buy oem Office products with their replacement
    computers".
    Unfortunately, many clients still decide they want to go with Office 2013 because they apparently believe "it really can't be that bad".  The value in my 'presale descriptions' are only really realized when they come back to me a week, two
    weeks, or up to a month after the new machine is in place and say "wow,... you were right".  The place I am left open for any further problems is when I don't impress upon them beforehand just HOW BAD OFFICE 2013 REALLY IS.  In that case,
    they still come back to me as though I have done something wrong foe selling them this piece of $#!% software and I have to remind them of our previous discussions.
    Strangely, far too few heed the warnings and buy the software anyway - but the discussion has saved many clients the costs of Microsoft Project, because the discussion of LibreOffice and OpenOffice nearly always leads to at least a small philosophical conversation
    about 'Open Source Software' in general, and my absolute favorite descriptive analogy in that discussion is to compare Microsoft Project at $600 v. ProjectLibre at $0 - and then further describe the costs of licensing and implementing the associated back-end
    server solutions, etc. 
    This is a saving grace for me, because even though the client has been saddled with Office 2013, they have also saved substantially on Project and it is a rare (but granted, not absolutely absent) occasion that ProjectLibre is lacking some feature or function
    that they actually need or want to use - and on those occasions, finding out has cost them absolutely nothing in software purchases. 
    Its not surprising, I suppose, that clients have grown to accept Office as a required 'cost', but still choke heavily on the price-tag of Project every time they have to buy it.  The interesting thing to watch over the coming couple of years will be
    'how many businesses stop accepting MS Office as a 'required cost' due to the failing of the software itself and the fact that most are being burned, at least once, by purchasing the software "against technical advice" and are learning, merely by
    virtue of HOW BAD Office is, that there are other options out there that both cost less and work better... I mean,... LOTS BETTER.
    How many businesses that are used to accepting the cost of Microsoft Office as a cost of doing business will be moved over to open source options and satisfied by them by the time Microsoft releases its next version - which will, presumably work - such that
    they will no longer justify the cost of Microsoft's offering even if it is 'superior' to the open source offerings because the open source offerings are plenty sufficient and include a price tag of $0 and an installation/implementation time that is much, much
    shorter than Microsoft's offering.
    If Microsoft doesn't make some dramatic reparations, and do it soon, I expect their market share will be reduced in this area by a very significant margin.
    I am suggesting either a 'Complete Recall' of Office 2013 including an 'uninstall 2013/install 2010' process driven by the automatic update engine, or at the very least, a free and easy downgrade rights offering for anybody who has already purchased 2013
    and anyone who purchases it between now and the time the next "functional product" is released.

    I understand the inconvenience you are experiencing when working with Office 2013.
    If you have any feedback about Office 2013 product, click the and submit to Microsoft.
    Microsoft will decide how to fix the problem for all customers.
    For the activation mechanism, it intends to protect customers of their rights and interests.
    For a retail version of Office, if it was purchased with a disk, Microsoft account is not necessary during the installation.
    For volume license of Office, refer to the following link to deploy Office suites can be much efficient:
    http://technet.microsoft.com/en-us/library/cc178982.aspx
    For the problem Office 2013 keep crashing, check the following link to check:
    http://support.microsoft.com/kb/2813143/en-us
    http://support.microsoft.com/kb/2758592/en-us
    Thanks,
    Tyor Wang
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no
    help.
    If you have any feedback on our support, please click
    here

  • Apple TV (atv) no sound via optical or analog BUT sound through HDMI

    Hi all,
    This is my first post into the forums. I spent some time searching for problems with Apple TV audio and as a result I think I already know the answer to my question, but would appreciate a second opinion.
    My Apple TV is about 1.5 years old (no AppleCare) and has been working fine up until last week. I am using two audio connections:
    1) HDMI to the TV (with tiny speakers)
    2) digital optical out to the receiver (with bigger speakers... receiver has no HDMI input)
    We've been watching videos (youtube, etc) through the TV speakers (over HDMI) for a while, because we we had to keep things very quiet in our apartment. Then one day we wanted to watch a movie, so we turned on the receiver... to the overwhelming sound of silence.
    Rebooted repeatedly times, pulled the power cord out, let it cool off, etc etc. Tried a restart via the diagnostic menu... still no output over optical. I tried analog... no sound there, either. I swapped out RCA cables for the analog connections, tested it with a CD player so I know that the cables are good, and the ports on the receiver are good.
    So after all that troubleshooting, audio works over HDMI, but not optical or analog.
    Then I pulled out the digital optical cord and looked into the port. Sounds silly, but usually there's a red light on when the ATV is on, right? (or for any device with digital optical connections, for that matter). There was no light. I looked at the end of the optical cable, which was still hooked up to my receiver. The tip of the cable was definitely lit up.
    So... my guess is that somewhere within the logic board, there's some sort of component failure on the optical/analog outputs. Has anyone had this happen to them?
    Now, regarding options:
    I read one post in the forum that says the repair cost is approx 2/3 the cost of a new unit... ATV retails on the Apple web site for $229, which pegs the repair price at approx $151. Does that sound right to others? Having taken a look at the teardown guides, I'm sure this will be a "replace the logic board" repair, which will probably be one of the most expensive options.
    Thanks very much!

    Cubehead wrote:
    I have the same exact setup as you. Fortunately for me, mine works well. I can't speak to the ATV replacement option, but I do have a suggestion. On my Denon receiver, I have to assign the optical input from the ATV to the receiver (it does not happen automatically).
    Good advice...but I'd assumed they'd had it working successfully before.
    This may sound simplistic, but just checking to see if you ever went through that process. Also, just curious to see if this setup ever worked for you. In reading your post, it sounds like this is the first time you had ever used your receiver with the ATV.

Maybe you are looking for

  • I have a HP Photosmart Premium C309g-m printer and want to print a banner, but can't figure out how

    Is there a way to print a banner on my printer? Susan Central Oregon

  • Trying to wrap text around image causes table to break out of wrapper?

    Hi, I'm not sure if this is a CSS/HTML problem or just something with Dreamweaver CS3? Here is what I have My pages have a wrapper with the following attributes #wrapper { width: 800px; margin-right: auto; margin-left: auto; font-family: Arial, Helve

  • Requerying MS Access table?

    Hi, Ok, I got my insert statement to work now using a preparedstatement. I noticed now that my JTable doesn't reflect the new record unless I stop and restart my application. I'm using a JTabbedPane and adding a class that extends AbstractTableModel

  • Problem in creating workbook

    Hi All, I have a problem in creating workbook. After inserting the query and saving as workbook, when the workbook is opened again there is no query inserted into it. Some values looks like alpha numeric values are populating. I'm using BEx 3.5 and M

  • Alot of issues. bad harddrive?

    i have a 30gb 5th gen ipod, and there are many things wrong with it. first it responds very slowly when using it, it will play a few songs, but then it will freeze, the back of it gets very hot, and i hear strange clicking noises coming from it, and