Audigy 2 ZS: Keeping line input from playing on speak

I recently installed an Audigy 2 ZS in a Win2k machine. In the mixer, I've selected "Analog mix" for recording. So "What-U-Hear" should be off, right? And I have disabled "Monitor during recording." So, while recording, I don't hear what is coming in the line input. But if I turn recording off, suddenly what's coming into Line-In blasts out the speakers. Is there a way to permanently disable passing Line-Input to the speakers when I'm not recording or even running a recording program?
Bob

The mixer device list for the Audigy 2 ZS shows a separate Line-in for record and play. So it appears that the ability to keep Line-In from playing on speakers is there. However, unfortunately the Creative Mixer implements this as a record option and an option to "Do not monitor while recording." With this option checked, Line-In isn't passed through to the speakers but only during recording. At other times you'll hear what is coming into the Line-in. By comparison, the Audigy 2 LS has an option to "Do not monitor," which blocks Line-in pass-through under all conditions (unless an api enables it). The Line-In pass-through was a particular problem for me for a C++ program I've written. So I solved the problem by selecting "Do not monitor while recording," muting the global volume, and un-muting the global volume with a call to the mixer functions when I turn on recording from within my program. This prevents pass-through even when my program isn't running, which was important for my particular application. Unfortunately, this isn't a viable option for someone using an off-the-shelf recorder-player. Other mixers might implement this differently.
BigZed wrote:
Sorry to bump this but...
I happen to have a very similar proble to Katman's
W2k machine, recording from the line input, i got
either no sound to record (if line input is not
checked in the mixer - both windows' or creative's)
or i got sound to record AND this sound also
goes to the line out (when i check the line input
in the mixer), which defies my purposes.
Line in was always selected as input in the recording
panel.
I tried to uncheck the "record without monitoring"
option but it does absolutely nothing to me.
I have updated the drivers just a few weeks ago.
Hints?

Similar Messages

  • Digital line input from a Jennic zigbee kit to data acquisition BNC 2432

    I am working on a project involving data acquisiton of data from a Jennic zigbee microcontroller . I am getting burst of data form a line of the kit which tells about the temperature and light signal. How do i give as an input to labview. I tried with the normal data acquisiton it always shows a hight and i dont see any transition. When i try t sample  in different frequency i am not able to do it. i get an error.. How do i get the data out in the form of 8 bit codes so i can represent in the corresponding temp-erature./ light intensity///

    Hi saty,
    Thank you for posting to the NI forums.  Which data acquisition (DAQ) device are you using – or are you using serial communications?  The 2432 is not (at least currently) made by NI, but Tektronix has a product with that model number – is this what you’re using?  Also, what is the error that you are receiving?
    If you are using a DAQ device, are you using the Traditional DAQ drivers or DAQmx.  There are numerous examples for each in the LabVIEW Example Finder.  Browse to Hardware Input and Output and then select your driver.  There will be digital I/O examples for both driver versions.
    Please post back, and with more information, I can give you some better recommendations for the architecture of your program. 
    Ed W.
    Applications Engineer
    National Instruments

  • How do I keep my ipod from playing podcasts on shuffle?

    I have some "songs" that I want to classify solely in the podcast category so that they don't play when my ipod is on shuffle.  When I try to delete them from the "music" folder they are also deleted from Podcasts.   Help!

    right-click on the file and get info. go to the options tab and see if you can change media kind to podcast. on the same tab, checkmark skip when shuffling.
    (open image in new browser window)

  • HT204291 Airplay keeps jumping back from my Bose speaker to iPad. Why is this?  I have used it before and am using the same wifi.

    Why does my airplay keeping jumping back to iPad from Bose?

    How to use multiple iDevices with one computer

  • Comparing input from command line to a String token problem

    Hi,
    I want to compare my input from the command line to a token.
    my command line looks like "java myProgram george bush president washington"
    The next command could be "java myProgram geoge president washington"
    Basically I have a text file which has a name, job and location field. The text file looks as follows
    jim, farmer, chicago
    paul, builder, texas,
    george bush, president, washington
    I am using string tokenizer with a "," as my field delimiter.
    My lecturer wants me to take the input from the command line so applets are out of the question. However even though there are 3 fields, args.length() could equal 4 because "george bush" is only the name but george is args[0] and bush is args[1]. Is there a way to have a delimiter on the command line instead of a space such a ",". Can anyone see any other way around this?
    Thanks

    1982. The year of.....wait for it.....
    Jack And Diane
    Tainted Love
    Key Largo
    Open Arms
    Do You Believe In Love
    Gloria
    Working For the Weekend and of course the GREATEST song of 1982...
    drum roll please......
    Heat Of The Moment.

  • Problem with tokenized  input from command line

    I am trying to take an input from the command line, parse it to tokens and perform whatever operation is needed depending on the name of the token, on a binary tree of stacks for example, if i type 1 2 1 3 printLevelOrder, then the root of the tree should have 3, 2,1 in the stack, the left child should have 1 and the right child should be empty. and then a level order print of the tree should be performed.
    however what is happening when i run this code is the numbers are being put into the right stacks of the tree, but any commands such as printLevelOrder or PrintPopRoot are entering the code that is for placing numbers onto the stack instead of executing that command and skipping past this piece of code.
    so my question is, why is the if statement if (word =="printLevelOrder") not being executed when thats whats in the word ?
    example input and output shown below code fragment.
              try {
                  BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                 String line = "";
                 while (line != "***") {
                      System.out.print("> prompt ");
                      line = in.readLine();
                      StringTokenizer tokenizer = new StringTokenizer(line," ");
                      String word = new String();
                      while (tokenizer.hasMoreTokens()) {
                             word = tokenizer.nextToken();
                             boolean notCommand = true;
                             if (word =="printLevelOrder") {
                                  theTree.printLevelOrder();
                                  System.out.println("(word ==printLevelOrder)");
                                  notCommand=false;
                             if (word == "printPopLevelOrder") {
                                  theTree.printPopLevelOrder();
                                  notCommand=false;
                             if (word == "printPopInorder") {
                                  theTree.printPopInorder();
                                  notCommand=false;
                             if (word == "printPopPreorder") {
                                  theTree.printPopPreorder();
                                  notCommand=false;
                             if (word == "printPopRoot") {
                                  theTree.printPopRoot();
                                  notCommand=false;
                             if (word == "***") {
                                  notCommand=false;
                             if (notCommand == true) {
                                  System.out.println("(notCommand == true)");
                                  boolean notPlaced = true;
                                  int v = 1;
                                  while ((notPlaced==true) && (v < theTree.size())) {
                                       if (theTree.element(v).isEmpty()) {
                                            theTree.element(v).push(Integer.valueOf(word));
                                            System.out.println("Inserting"+word);
                                            System.out.println("in empty stack at location: "+v);
                                            notPlaced=false;
                                       if (notPlaced==true) {
                                            if (  Integer.valueOf(word) >= Integer.valueOf( theTree.element(v).top().toString() )  ) {
                                                 theTree.element(v).push(Integer.valueOf(word));
                                                 System.out.println("Inserting"+word);
                                                 System.out.println("in stack at location: "+v);
                                                 notPlaced=false;
                                       v++;
              }valid inputs: int value, printLevelOrder, printPopLevelOrder, printPopInorder, p
    rintPopPreorder, printPopRoot, *** to quit
    prompt 1 3 2 4 2 printLevelOrder(notCommand == true)
    Inserting1
    in empty stack at location: 1
    (notCommand == true)
    Inserting3
    in stack at location: 1
    (notCommand == true)
    Inserting2
    in empty stack at location: 2
    (notCommand == true)
    Inserting4
    in stack at location: 1
    (notCommand == true)
    Inserting2
    in stack at location: 2
    (notCommand == true)
    Exception in thread "main" java.lang.NumberFormatException: For input string: "printLevelOrder"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:447)
    at java.lang.Integer.valueOf(Integer.java:553)
    at TreeStack.main(TreeStack.java:73)
    Press any key to continue . . .

    lol aww, shame that you forgot to do that. i had 10 / 10 for mine, and seing as the deadline is now well and trully over,
    here is the entire source for anybody who was following the discussion or whatever and wanted to experiment.
    additional files needed >
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/Stack.java
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/ArrayStack.java
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/StackEmptyException.java
    http://users.cs.cf.ac.uk/Paul.Rosin/CM0212/StackFullException.java
    /*TreeStack.java - reads command line input of values and assigns them to stacks in a  binary tree and performs
    operations on the ADT. valid inputs: <int>,   printLevelOrder,   printPopLevelOrder,
    printPopInorder,   printPopPreOrder,   printPopRoot.         Terminates on invalid input.
    Written by George St. Clair.
    S/N:0208456         22/11/2005
    import java.util.Vector;
    import java.io.*;
    import java.util.StringTokenizer;
    public class TreeStack {
         private final int TREE_CAPACITY = 7 + 1;
         private final int STACK_CAPACITY = 10;
         Vector tree = new Vector(TREE_CAPACITY) ;
         //collect input from command line, add values to stacks at nodes of the teee
         //and perform required operations on the treestack
         public static void main (String [] args) {
              //create a tree of stacks
              TreeStack theTree = new TreeStack ();
              try {
                   //collect standard input
                  BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                 String line = "";
                 while (line != null) {
                        System.out.print("");
                      line = in.readLine();
                      //tokenise input
                      StringTokenizer tokenizer = new StringTokenizer(line," ");
                      String word = new String();
                      while (tokenizer.hasMoreTokens()) {
                             //assign word to the token
                             word = tokenizer.nextToken();
                             boolean notCommand = true;
                             //perform operation on treestack depending on what word is
                             if (word.equals("printLevelOrder"))  {
                                  System.out.println("printLevelOrder");
                                  theTree.printLevelOrder();
                                  notCommand=false;
                             if (word.equals("printPopLevelOrder"))  {
                                  System.out.println("printPopLevelOrder");
                                  theTree.printPopLevelOrder();
                                  notCommand=false;
                             if (word.equals("printPopInorder"))  {
                                  System.out.println("printPopInorder");
                                  theTree.printPopInorder();
                                  notCommand=false;
                             if (word.equals("printPopPreorder"))  {
                                  System.out.println("printPopPreorder");
                                  theTree.printPopPreorder();
                                  notCommand=false;
                             if (word.equals("printPopRoot"))  {
                                  System.out.println("printPopRoot");
                                  theTree.printPopRoot();
                                  notCommand=false;
                             //if word was not a command it must be a number
                             if (notCommand == true) {
                                  boolean notPlaced = true;
                                  int v = 1;
                                  //starting at the root, find suitable place for number
                                  while ((notPlaced==true) && (v < theTree.size())) {
                                       //if the stack at v is empty, number goes here
                                       if (theTree.element(v).isEmpty()) {
                                            theTree.element(v).push(Integer.valueOf(word));
                                            System.out.println("inserting: "+word);
                                            System.out.println("in empty stack at location: "+(v-1));
                                            notPlaced=false;
                                       //if the stack is not empty
                                       if (notPlaced==true) {
                                            //if the value on the top of the stack is smaller than number, number goes onto the stack
                                            if (  Integer.valueOf(word) > Integer.valueOf( theTree.element(v).top().toString() )  ) {
                                                 theTree.element(v).push(Integer.valueOf(word));
                                                 System.out.println("inserting: "+word);
                                                 System.out.println("in stack at location: "+(v-1));
                                                 notPlaced=false;
                                       //if that node was no good, check the next one for suitability
                                       v++;
              catch (Exception e) {
                   //occurs when user inputs something that is neither a command, or a number, or upon EOF, or stack is full
         public TreeStack () {
              //create the TreeStack ADT by adding stacks in the vector, note vector 0 is instantiated but not used.
              for (int i = 1;i<=TREE_CAPACITY;i++)
                   tree.add(new ArrayStack(STACK_CAPACITY));
         public int size() {
              //return the size of the tree +1 (as 0 is not used)
              return tree.size();
         public ArrayStack element (int v) {
              //return the ArrayStack at v
              return (ArrayStack)tree.get(v);
         public int leftChild (int v ) {
              //return left child of v
              return v*2;
         public int rightChild (int v ) {
              //return the right child of v
              return v*2+1;
         public boolean children (int v ) {
              //search for children of v and return true if one exists
              for (int i =v;i<size();i++) {
                   if (i/2==v ) {
                         //left child found at i
                         return true;
                   if ((i-1)/2==v ) {
                        //right child found at i
                        return true;
              //no children found
              return false;
         public boolean isInternal (int v ) {
              //test whether node v is internal (has children)
              if (children (v)== true) {
                   //has children
                   return true;
              return false;
         //print the top value in each stack encountered on a level-order traversal of tree
         public void printLevelOrder() {
              //for every node of tree v
              for (int v = 1;v<size();v++) {
                   if (!element(v).isEmpty() ) {
                        //print the top value in stack v
                        System.out.println(" "+element(v).top());
                   else {
                        //stack at v is empty
                        System.out.println(" -");
         //pop off and print the top value in each stack encountered on a level-order traversal of tree
         public void printPopLevelOrder () {
              //pop off and print the top value in stack v
              for (int v = 1;v<size();v++) {
              //for each node of tree v
                   if (!element(v).isEmpty() ) {
                        //if v isnt empty print the top value in stack v
                        System.out.println(" "+element(v).top());
                        //pop the top value in the stack at v
                        element(v).pop();
                   else {
                        //stack at v is empty
                        System.out.println(" -");
         //pop off and print the top value in each stack encountered on an in-order traversal of tree
         public void printPopInorder () {
              printPopInorder (1);
         public void printPopInorder (int v) {
              boolean isInternal = false;
              if (isInternal (v)) {
                   //use a boolean for isInternal to save on running the method twice
                   isInternal = true;
                   //recursively search left subtree
                   printPopInorder (leftChild(v));
              //pop off and print the top value at v
              if (element(v).isEmpty() ) {
                   //stack at v is empty
                   System.out.println(" -");
              else {
                   //if v isnt empty print the top value in stack v then pop
                   System.out.println(" "+element(v).top());
                   element(v).pop();
              if (isInternal ) {
                   //recursively search right subtree
                   printPopInorder (rightChild(v));
         //pop off and print the top value in each stack encountered on an pre-order traversal of tree
         public void printPopPreorder() {
              printPopPreorder(1);
         public void printPopPreorder(int v) {
              //pop off and print the top value at v
              if (!element(v).isEmpty() ) {
                   //if v isnt empty print the top value in stack v then pop
                   System.out.println(" "+element(v).top());
                   element(v).pop();
              else {
                   //stack at v is empty
                   System.out.println(" -");
              if (isInternal (v)) {
                   //recursively search left and right subtrees
                   printPopPreorder (leftChild(v));
                   printPopPreorder (rightChild(v));
         //pop off and print all values from the stack at the root
         public void printPopRoot (){
              //while the root stack has values left
              while (!element(1).isEmpty()) {
                   //print, then pop
                   System.out.println(" "+element(1).top());
                   element(1).pop();
    }

  • How to keep the input field from PDF Form to RTF

    Hi,
    I'm looking to keep the input fields from my pdf form document to Rtf so I can use them in my Rtf document.
    Regards,
    Alan

    Good day Alan,
    I'm afraid that's not possible as form fields in a PDF file have no equivalent either in a Word format (.docx/.doc) or within the Rich Text Format (.rtf).  That data is simply stripped during the conversion as there's no equivalent available.
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • When i am talking on the iPhone and i get a text message how do i keep the text message alert tone from playing in my ear?

    when i am taliking on my iphone and i get a text message  at the same time
    how do i keep
    the alert tone from playing in my ear while i am on the phone ?

    This is happening with iOS 7. It worked with iOS 6.

  • Is it possible to have 5.1 S/PDIF input from the pins of Audigy 2 ZS SB0350?

    LIs it possible to have 5. S/PDIF input from the pins of Audigy 2 ZS SB0350? Hello,
    I took this sound card (Audigy 2 ZS SB0350) yesterday from a friend, just to test whether it can do what I intend to use it for. It is only the card itself without the front panel (the I/O Dri've Bay) and I want to connect a satellite receiver's S/PDIF output to the sound card input in order to experience a 5. sound, which my satellite receiver supports. Since it turned out that this sound card has no digital inputs but on the front panel (the I/O Dri've Bay), I started wondering whether I can connect the coaxial digital out of the satellite receiver directly to some of the pins of the Audigy 2 ZS, and in case I can do that, will I have the desired 5. sound on the analogue outputs of the sound card or just stereo?
    If this is impossible, can you confirm that if I buy Audigy 2 Platinum (with I/O Dri've front panel) I can have the desired effect (no matter if the output of the satellite receiver is coaxial or optical)?
    Thank you for your answer
    Best regards,
    Zdravko

    Install disks for specific systems do not boot a different system.  Sometimes if the two computers are from the same year and are the same type and the same build number, maybe.

  • Get input from user and create a file and run a script in command line.

    Hi all,
    i'm trying to get a input from user and write it into a file named alpe.jacl
    To get multiple userinputs like address and jobtitle etc etc in the same single window.
    and the code will save the inputs in alpe.jacl one by one in a new line like
    nameis name
    address russia
    jobtitle dev
    So i coded like below.
    Though GUI for user input looks dull Its working fine.
    Now I want this code to perform one more task which is the GUI will contain one more button INSTALL with OK and CALCEL .
    and when after putting all inputs and creating the alpe.jacl file if someone clicks INSTALL it should start ./install.sh script present at the same folder which contains some unix shell commands.
    Here am not able to figure out how to go further...
    One more thing after all the inputs given when I am clicking on the OK button its closing the window instantly which i dont want. I want it like it should wait till someone press CANCEL to exit.
    Please some one help me.
    import javax.swing.*;
    import java.io.*;
    public class file
    public static void main(String []args)throws IOException
    FileWriter ryt=new FileWriter("alpe.jacl");
    BufferedWriter out=new BufferedWriter(ryt);
    JTextField wsName = new JTextField();
    JTextField sName = new JTextField();
    JTextField cName = new JTextField();
    Object[] message = {    "Web Server Name:", wsName,"Server Name:", sName,"Cluster Name:", cName};
    int answer = JOptionPane.showConfirmDialog(    null, message, "Enter values", JOptionPane.OK_CANCEL_OPTION);
    if (answer == JOptionPane.OK_OPTION){    String webserver = wsName.getText();
    String server = sName.getText();
    String cluster = cName.getText();
    out.write("set webservername " +wsName.getText()+"\n");
    out.write("set ClusterName " +cName.getText()+"\n");
    out.write("set ServerName " +sName.getText()+"\n");
    out.close();
    }}Thanks,
    Ricky

    Thanks a lot.
    Is there any way through which i can assign a scroll bar to my panel.
    As when the number of user inputs grows the GUI becomes more bulky and some of the fields are not showing up.
    Cheers
    _Ricky                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Considering a Macbook pro 13".  want to use garage band - how do i run line in from my guitar.  There is not a mic/line input that I can see in specs.

    Considering buying a Macbook pro 13".  Want to use garage band - how do i run line in from my guitar.  There is not a mic/line input that I can see in specs.

    Simple. GarageBand question, GarageBand forum where all those users are jacked into their Macs and can tell you how. Also look to the right of your post to the column, "More Like This."---------------------------------------------->
    https://discussions.apple.com/community/ilife/garageband

  • Can anyone help me keep wifi off on my S5?  Since the last update my wifi keeps turning on without input from me.  I have unlimited data and don't use the wifi much to extend the battery but this is killing it now.

    Can anyone help me keep wifi off on my S5?  Since the last update my wifi keeps turning on without input from me.  I have unlimited data and don't use the wifi much to extend the battery but this is killing it now.

    Help is here to resolve this issue with your wifi connection 88DaveS. Lets try disabling your "Smart Network Switch". Select Settings> Wifi. The 'smart network switch' is in the advanced settings. Locate the Menu icon in the upper right hand corner > Tap Menu > Tap Advanced > Locate and ensure the check box is Unchecked next to Smart network switch. Let us know if this helps.
    KinquanaH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • No 'Line input' option in sound prefs after upgrading from Tiger to Leopard

    I have connected guitars and mics using Garageband 3 without a problem, until upgrading from Tiger to Leopard 10.5.8.
    I'm not getting sound from the guitar apart from feedback when I plug it in to the audio line-in port on my iMac G5.
    I have read many of the questions and comments in the relevant forums all pointing to selecting the line-in option of the input tab in the sound preferences window.
    I only have the 'internal mic' appearing in that window now.
    I've checked that the cables are working correctly on a guitar amp and are fine.
    So not sure why I don't get the 'Line-in' option anymore.
    Are there any patches/updates to cure this problem, or would updating to Garageband 9 cure the problem?
    Thanks,
    Mick

    Yes, checked the 'Audio MIDI Setup' utility and can select Line-in from there.
    All working fine now!
    Thanks very much for your help.
    Mick

  • Calling C from Java. C takes in a command line input

    Hello,
    I have created some basic JNI programs, in which the java file calls the C files. The way I could do it was directly calling the functions in the C files, which I needed. Now I am trying to call a C file from Java, and the C files takes in a command line argument after being compiled.
    Also after compiling the C file, it produces an exe. I cannot change the C file and also want to call it from Java using JNI (as I want to later put all this into a jar and jnlp file and put it on webstart).
    If anyone can help me on how to call the compiled C file and how to send in the input as a command line argument I would greatly appreciate it.
    Thanks
    Nick

    Now I know how to create a C wrapper file and a Java file in JNI format. Does this mean you want to run the exe files by calling the main() method through JNI. Yes you can do that BUT you will need to turn your exe file into a dll and then write a JNI wrapper to act as a bridge between the Java and the dll.Yes. Thats exactly what I want to do. I want to call the C files through JNI. But what I am asking is, how do I send in the input which is originally sent in as stdin? And also what are the steps to follow if I want to call a main method of the C files in the JNI.
    Up till now I have been using JNI to call functions from the initial C files from the C wrapper file. But now I want to call the .exe file by sending it a command line input. Or if you can suggest a better method that would be great.
    You can execute an exe file using ProcessBuilder then there is no need for a JNI wrapper. You must read the 4 sections of [http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html|http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html] and implement ALL the recommendations. Failure to do so will cause you much grief.
    You could achieve the same result but using a lot more code and a hell of a lot more effort by invoking the exe executables from JNI code that invokes the 'C' exec() library. Just thinking about that approach makes my eyes water!
    Well if I just use the exec() library I can do it, yes thats ture. But I wasnt sure if I did that, and then put this on Java Web Start, if non PC users can access it or not. If macs, and linux machines can access this even If i use exec, then my problem is solved.
    Thanks
    Nick

  • I just bought the audigy 2 ZS line input h

    I was hoping that I could use the "line in" for my stereo input but I can't seem to be able to get it to work. I know it is something I just have to click on but I don't know what.

    baloce,
    Check the mixer to see if it's set up correctly. If you have your source connected to the line input, it should be fine. In the mixer check the normal slides to see if the line in volume is turned up. In the red slide, check you have the line in/analog mix selected for recording.
    Cat

Maybe you are looking for

  • Dynamic number of panelBoxes in panelDashboard

    Hi, I got a scenario where I need to display a set of images in a particular order as like a chain.When the chain length is more than 5 it can display them in next rows but only in the chain order, and also the number of images is decided at runtime.

  • ICal, Macbook Air, and Exchange 2010

    I have a user whos iCal is not syncing with Exchange 2010. When creating a new event, it gives the message "iCal can't save the event "xxxx" to the Exchange server. The account "xxxx" currently can't be modified. To discard your changes and continue

  • Will a iPhone car charger work with iPad 2

    Can a iPhone car charge a iPad or not? I'm using a DC/USB car adapter but when i plug it in it said Not Charging.

  • SAP EIS Architecture and sizing

    I have done lot of search for SAP documentation on sizing of different components involve in solutioning SAP EIS. But unfortunately I could not found any. Can you guys help me out here? If you did already implemented EIS, then can you guys give me a

  • Cannot connect with Corporate Sync

    Hi, I have searched this forum and other forums and could not find a resolution that has fixed my issue with this.  I'm not sure what I'm doing wrong, but the connection fails each time I try to set up my email.  My organization uses the Outlook Web