Error Check does not work

Hi, I'm having a problem with the following code, when I add alphabetic characters or even nothing at all in the principal amt text field, I expect to get an error message, but I do not. This happens no matter which method I choose to compute the mortgage.
//Import required libraries
import java.awt.event.*;
import javax.swing.*;
import java.awt.*;
import java.io.*;
import java.text.*;
import java.math.*;
import java.util.*;
public class pos407checkbox extends JFrame implements ActionListener
     // implements ActionListener, ItemListener
     NumberFormat formatter = new DecimalFormat ("$###,###.00");
     //Common Variables
     String ErrorMsg;
     double principal;
     double IntRate;
     int Term;
     double monthlypymt;
     double EndBalance =0;
     double FirstEndBalance =0;
     double interestpmt = 0 ;
     double principlepmt = 0;
     int choice = 0;
     //Components for Menu items
     private JMenuBar menuBar;    
     private JMenuItem exitMenuItem; 
     private JMenu fileMenu; 
     //create the common components
     private JPanel jPanelRadioButton = new JPanel();
     private JPanel jPanelActionButtons = new JPanel();
     JRadioButton jRadiochoice1 = new JRadioButton("I want to enter my own principal, rate and term",false);
     JRadioButton jRadiochoice2 = new JRadioButton("I will enter my own principal, and choose rate and term",false);
     private JButton buttonCompute;
     private JButton buttonNew; 
     private JButton buttonClose;
     //create the components required for jRadiochoice1
     private JPanel jPanelUserEnterAllValues = new JPanel();
     private JLabel jLabelMortgageAmt = new JLabel("Principal Amt(No decimals or commas)");
     private JLabel jLabelMortgageAmt2 = new JLabel("Principal Amt(No decimals or commas)");   
     private JLabel jLabelIntRate = new JLabel("Interest Rate"); 
     private JLabel jLabelTerm = new JLabel("Term - In Years"); 
     private JTextField jTextFieldMortgageAmt = new JTextField();
     private JTextField jTextFieldMortgageAmt2 = new JTextField();
     private JTextField jTextFieldIntRate= new JTextField();
     private JTextField jTextFieldTerm = new JTextField();
     //create the components required for jRadiochoice2
     private JPanel jPanelRateAndTermSelection;
     private JLabel jLabelChooseRateAndTerm; 
     private JComboBox TermAndRate;
     //create the output area
     private JPanel jPanelAmoritizationSchedule;
     private JTextArea jTextAreaAmoritization;
     public pos407checkbox() {            
          super("Mortgage Application");      
           initComponents();      
      private void initComponents()
          setSize(800,460);
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);      
          setVisible(true);           
          Container pane = getContentPane();
          //GridLayout grid = new GridLayout(5, 1);      
          FlowLayout grid = new FlowLayout();      
          pane.setLayout(grid);
          //**********************************MENU BAR**************************//
          menuBar = new JMenuBar();
          fileMenu = new JMenu();
          fileMenu.setText("File");        
          exitMenuItem = new JMenuItem(); 
           exitMenuItem.setText("Exit");
          fileMenu.add(exitMenuItem); 
          menuBar.add(fileMenu);
          //pane.add(menuBar);       
          setJMenuBar(menuBar);
          //*****************************RADIO BUTTON PANEL***************************//
          jPanelRadioButton = new JPanel();
          GridLayout Radio = new GridLayout(1,2);
          jPanelRadioButton.setLayout(Radio);
          ButtonGroup RadioButtons = new ButtonGroup();
          RadioButtons.add(jRadiochoice1);
          RadioButtons.add(jRadiochoice2);
          jPanelRadioButton.add(jRadiochoice1); 
          jPanelRadioButton.add(jRadiochoice2);       
          pane.add(jPanelRadioButton);
          //***********************USER INTERFACE FOR CHOICE 1*******************//
          GridLayout userchoice = new GridLayout(3,2);
          //FlowLayout userchoice = new FlowLayout();           
          jPanelUserEnterAllValues.setLayout(userchoice);
          jPanelUserEnterAllValues.add(jLabelMortgageAmt); 
          jPanelUserEnterAllValues.add(jTextFieldMortgageAmt);       
          jPanelUserEnterAllValues.add(jLabelIntRate);
          jPanelUserEnterAllValues.add(jTextFieldIntRate);       
          jPanelUserEnterAllValues.add(jLabelTerm);
          jPanelUserEnterAllValues.add(jTextFieldTerm); 
          jPanelUserEnterAllValues.setVisible(false);
          pane.add(jPanelUserEnterAllValues);
          //***********************USER INTERFACE FOR CHOICE 2*******************//
          // Create a label that will advise user to enter a principle amount
          jPanelRateAndTermSelection = new JPanel();
          TermAndRate = new JComboBox();
          //Add the selections to the combo box
          TermAndRate.addItem("7 years at 5.35%");
          TermAndRate.addItem("15 years at 5.5%");
          TermAndRate.addItem("30 years at 5.75%");
          //FlowLayout RateAndTerm = new FlowLayout(FlowLayout.CENTER);
          GridLayout RateAndTerm = new GridLayout(2,2);
          jPanelRateAndTermSelection.setLayout(RateAndTerm);
          jPanelRateAndTermSelection.add(jLabelMortgageAmt2);
          jPanelRateAndTermSelection.add(jTextFieldMortgageAmt2);   
          jLabelChooseRateAndTerm = new JLabel("Choose the Rate and Term");
          jPanelRateAndTermSelection.add(jLabelChooseRateAndTerm);
          jPanelRateAndTermSelection.add(TermAndRate);
          jPanelRateAndTermSelection.setVisible(false);
          pane.add(jPanelRateAndTermSelection);
          //------------------THIRD PANEL CHOOSE ACTION----------------------
          jPanelActionButtons = new JPanel();
          buttonCompute = new JButton("Compute Mortgage");
          buttonNew = new JButton("New Mortgage");
          buttonClose = new JButton("Close");
          FlowLayout Actionbuttons = new FlowLayout(FlowLayout.CENTER);
          jPanelActionButtons.setLayout(Actionbuttons);
          jPanelActionButtons.add(buttonCompute);
          jPanelActionButtons.add(buttonNew);
          jPanelActionButtons.add(buttonClose);
          jPanelActionButtons.setVisible(false);
          pane.add(jPanelActionButtons);
          //*******************ADD THE TEXT AREA FOR OUTPUT TO THE GUI******************//
          jPanelAmoritizationSchedule = new JPanel();
          jTextAreaAmoritization = new JTextArea(26,50);
          JScrollPane scrollBar = new JScrollPane(jTextAreaAmoritization, 
          JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
            JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
          scrollBar.setPreferredSize(new Dimension(500,250));
          FlowLayout Amoritization = new FlowLayout();
          jPanelAmoritizationSchedule.setLayout(Amoritization);
          // add scroll pane to output text area
          jPanelAmoritizationSchedule.add(scrollBar);
          jPanelAmoritizationSchedule.setVisible(false);
            pane.add(jPanelAmoritizationSchedule);
          setContentPane(pane);
          //pack();
          // Add Action Listeners
          exitMenuItem.addActionListener(this);
          buttonCompute.addActionListener(this);         
          buttonNew.addActionListener(this);
          buttonClose.addActionListener(this);
          TermAndRate.addActionListener(this);
          jRadiochoice1.addActionListener(this);
          jRadiochoice2.addActionListener(this);
//create a method that will clear all fields when the New Mortgage button is chosen
private void clearFields()
     jRadiochoice1.setSelected(false);
     jRadiochoice2.setSelected(false);
     jTextAreaAmoritization.setText("");
     jPanelAmoritizationSchedule.setVisible(false);
     jPanelActionButtons.setVisible(false);
     jTextFieldMortgageAmt.setText("");
     jTextFieldMortgageAmt2.setText("");
     jPanelRadioButton.setVisible(true);
     jPanelUserEnterAllValues.setVisible(false);
     jPanelRateAndTermSelection.setVisible(false);
  public void actionPerformed(ActionEvent e)
          Object source = e.getSource();  
          if (source == exitMenuItem)
                   System.exit(0);
          if(source == buttonClose)
               System.exit(0);
          if (source == buttonNew)
               clearFields();
          if (source == jRadiochoice1)
               jPanelActionButtons.setVisible(true);
               jPanelRadioButton.setVisible(false);
               jPanelUserEnterAllValues.setVisible(true);
               principal = Double.parseDouble(jTextFieldMortgageAmt.getText());
               choice  = 1;
          }//End if for checkbox1
          if (source == jRadiochoice2)
               jPanelRateAndTermSelection.setVisible(true);
               jPanelAmoritizationSchedule.setVisible(true);
               jPanelActionButtons.setVisible(true);
               jPanelRadioButton.setVisible(false);
               choice = 2;
          if (source == buttonCompute)
               jPanelAmoritizationSchedule.setVisible(true);
               //Make sure the user entered valid numbers for the principal
               if (choice ==2)
                    int[] term = {7,15,30};
                    double[] rate = {5.35,5.50,5.75};
                    try
                         principal = Double.parseDouble(jTextFieldMortgageAmt2.getText());
                    catch(NumberFormatException nfe)
                         ErrorMsg = (" You Entered an invalid Mortgage amount"
                              + " Please try again. Please do not use commas or decimals");
                         jTextAreaAmoritization.setText(ErrorMsg);
                    int loan = TermAndRate.getSelectedIndex();
                    Term = term[loan];
                    IntRate = rate[loan];
               else
                    try
                         principal = Double.parseDouble(jTextFieldMortgageAmt.getText());
                    catch(NumberFormatException nfe)
                         ErrorMsg = (" You Entered an invalid Mortgage amount"
                              + " Please try again. Please do not use commas or decimals");
                         jTextAreaAmoritization.setText(ErrorMsg);
                    try
                         IntRate = Double.parseDouble(jTextFieldIntRate.getText());
                    catch(NumberFormatException nfe)
                         ErrorMsg = (" You entered an invalid Interest Rate");
                         jTextAreaAmoritization.setText(ErrorMsg);
                    try
                         Term = Integer.parseInt(jTextFieldTerm.getText());
                    catch(NumberFormatException nfe)
                         ErrorMsg = (" You entered an invalid Term value");
                         jTextAreaAmoritization.setText(ErrorMsg);
               jTextAreaAmoritization.setText(" Loan amount of " + formatter.format(principal) );
               double intdecimal = intdecimal = IntRate/(12 * 100);
               int months = Term * 12;
               int paymentNum = months;
               double monthlypayment = principal *(intdecimal / (1- Math.pow((1 + intdecimal),-months)));
               //Display the Amoritization schedule header info
               jTextAreaAmoritization.setText(" Loan amount of " + formatter.format(principal)
                                                + "\n"
                                                + " Interest Rate is " +  IntRate + "%"
                                        + "\n"
                                        + " Term in Years "  + Term
                                        + " Monthly payment "+  formatter.format(monthlypayment)
                                        + "\n"
                                        + "  Amoritization is as follows:  "
                                        + "\n"
                                        + "****************************************************************************************************"
                                        + "\n"
                                        + "PAYMENT # " + "\t" + "UNPAIDBALANCE"
                                        + "\t" + "PRINCIPLE PAID" + "\t" + "INTEREST PMT" + "\n\n");
     public static void main(String[]args) { 
          pos407checkbox gui = new pos407checkbox(); 
}

it does actually get set.
the problem is your actionperformed() falls throught to the final
jTextAreaAmoritization.setText(" Loan amount of " + formatter.format(principal) etc etc
at every error handler you need to exit the method
catch()
ErrorMsg = (" You entered an invalid Interest Rate");
jTextAreaAmoritization.setText(ErrorMsg);
return;//<-------------------
}

Similar Messages

  • In FB60, duplicate invoice check does not work if invoice date is different

    In FB60, duplicate invoice check does not work if invoice date is different
    This issue is in FB60 and not MIRO.
    Duplicate invoice check is activated in vendor master.
    I posted an invoice for a vendor with amount $ 100, Reference 1234 Invoice date Nov 01, 2011
    I tried posting for same vendor (and also Co Code) with amount $ 100, Reference 1234 Invoice date Nov 01, 2011. System does not allow. This is fine.
    Now I change only date, from Nov 01 to Nov 02, and system allow posting.
    Why I don't get the error message when date is different ? It should not be treated as a different invoice since invoice reference, amount, Vendor and Co Codes are same.
    SAP documentation says that it checks document date during duplicate invoice check even for FI invoices, then why does it allows in this case.
    Is this a bug ?
    I already tried changing settings in SPRO under LIV, this does not impact FB60 invoice booking.
    Thanks
    Sandeep

    Hi,
    Use BTE - 1110 - (Check on Invoice Duplication) for FB60. Take the help of your ABAPer to make a coding in Function module mentioned in BTE.
    Need to make a copy of the FM and then you can do relevant coding.
    refer the link.
    [http://www.thesapconsultant.com/2006/10/sap-business-transaction-events.html]
    Regards,
    Shridhar

  • Error: ELM does not work from UI

    Hello guru´s,
    hard to explain this briefly, but here it goes.
    We´re trying to upload an ELM from UI, and it doesn´t work. But the thing is, if you just SAVE from UI (not launch), and then you go to CRMD_MKTLIST and you flag required fields, it works. But obviously, we need to do that from UI.
    Besides this, we´ve implemented a Badi CRM_MKTLIST_BADI for a specific format but it´s never called from UI; however, if we simulate the execution from SAP GUI, this BADI works correctly.
    Thanks in advance.

    SunSudio Express (December 2006 release) introduces some
    interesting new features, but there are still problems. For the first time,
    I was able to debug Fortran 90 applications in Linux, but debugging is
    still very limited. This is good to know that you were able to debug a f90 application
    on Linux. What problems do you see? Please, report them, and we
    will file them as bugs or RFEs (requests for enhancements).
    Furthermore, the Fortran error parser does not work, even when
    compiling using Sun's f95 compiler. Yes, you are right, this feature does not work yet.
    This is a heavy disadvantage. I assume that Fortran error parsing
    is not supported on Linux, although the tutorials don't make this
    point clear: Yes, it does not work yet on all platforms.
    In the Options window, there are settings concerning C/C++ (and
    its parser), but there are no similar options for the Fortran parser,
    even in "Advanced Settings" (which are similar to the old Options
    window). There will be similar options for Fortran.
    My Linux system is Debian 3.1 (Sarge), with JDK 1.5.0.09.JDK 1.5.0.09 is ok.
    We do not target Debian system, but we assume everything
    should work there (we test on Red Hat and SUSE).
    Good to know that our assumption is correct :-)
    I don't think that I'm doing something wrong, but I want to ask, just
    to be sure: has someone had seen the Fortran error parser working
    on Linux? No. It does not work on Linux, and it does not work on other platforms.
    What about Fortran word completion? No, this feature is not implemented yet.
    Thanks you for trying Sun Studio 12 Express release and for your report.
    Nik

  • Error Parser does not work, even in SSX3

    SunSudio Express (December 2006 release) introduces some interesting new features, but there are still problems. For the first time, I was able to debug Fortran 90 applications in Linux, but debugging is still very limited. Furthermore, the Fortran error parser does not work, even when compiling using Sun's f95 compiler. This is a heavy disadvantage. I assume that Fortran error parsing is not supported on Linux, although the tutorials don't make this point clear: In the Options window, there are settings concerning C/C++ (and its parser), but there are no similar options for the Fortran parser, even in "Advanced Setings" (which are similar to the old Options window). My Linux system is Debian 3.1 (Sarge), with JDK 1.5.0.09.
    I don't think that I'm doing something wrong, but I want to ask, just to be sure: has someone had seen the Fortran error parser working on Linux? What about Fortran word completion?

    SunSudio Express (December 2006 release) introduces some
    interesting new features, but there are still problems. For the first time,
    I was able to debug Fortran 90 applications in Linux, but debugging is
    still very limited. This is good to know that you were able to debug a f90 application
    on Linux. What problems do you see? Please, report them, and we
    will file them as bugs or RFEs (requests for enhancements).
    Furthermore, the Fortran error parser does not work, even when
    compiling using Sun's f95 compiler. Yes, you are right, this feature does not work yet.
    This is a heavy disadvantage. I assume that Fortran error parsing
    is not supported on Linux, although the tutorials don't make this
    point clear: Yes, it does not work yet on all platforms.
    In the Options window, there are settings concerning C/C++ (and
    its parser), but there are no similar options for the Fortran parser,
    even in "Advanced Settings" (which are similar to the old Options
    window). There will be similar options for Fortran.
    My Linux system is Debian 3.1 (Sarge), with JDK 1.5.0.09.JDK 1.5.0.09 is ok.
    We do not target Debian system, but we assume everything
    should work there (we test on Red Hat and SUSE).
    Good to know that our assumption is correct :-)
    I don't think that I'm doing something wrong, but I want to ask, just
    to be sure: has someone had seen the Fortran error parser working
    on Linux? No. It does not work on Linux, and it does not work on other platforms.
    What about Fortran word completion? No, this feature is not implemented yet.
    Thanks you for trying Sun Studio 12 Express release and for your report.
    Nik

  • Sound check does not work with dock connector

    I have the 60GB video iPod. Sound check does not function when using the dock connector, i.e. plugged into my Belkin Autokit or a Kensington SoundDock. However, it functions as intended when used with the headphone jack. I previously used a 4G iPod, and sound check did function with the dock connector using those same products.
    I am wondering if this could be:
    a) a compatibility issue between the 5G connector and the older accessories
    b) a firmware issue (I am using the 10-12-05 updater)
    c) a bug in the 5G units
    d) a bad unit (i.e. mine only)
    If there is someone out there who has the same setup and could test this, it would help me. I could eliminate (a), (b), and (c) if yours works, and then I would try an exchange of my unit.
    Thanks in advance if you can help.

    I have a similar problem. I've never really used sound check but I recenty installed a Harman/Kardon Drive+Play iPod interface. The sound quality using the dock connection is not great. It sound somewhat distorted. It sounds much better through the headphone port. i always thought the dock connector would provide a cleaner signal. I will borrow a click wheel 4G iPod to see if the problem is with the interface or my video iPod.

  • Help!!  iChat Communication Error: AV Does Not Work!!

    I just purchased a iMac and Macbook, converting from PC. I have desperately tried to get iChat to work to talk to my children while traveling. I set up an AIM account for my iMac at home under my kids logon (since I can't talk to myself). I use my .Mac account on my Macbook. I have searched the forums and changed my ichat and Quick Time settings as specified. Whether I attempt to call my family from my Macbook or they try to call me from my iMac, I cannot get iChat AV to work. We get the ring and answer the call, but it ends and I get "There was a communication error during your chat."
    Please help. This was one of the reasons I converted to Mac.
    Here is my log. (Before: Binary Images Description for "iChat":):
    Date/Time: 2007-12-14 15:26:40.700 -0700
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3778388888.
    [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    0x15154e20: State change from AVChatNoState to AVChatStateInvited.
    0x15154e20: State change from AVChatStateInvited to AVChatStateConnecting.
    [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x15154e20: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:

    I have the same error. I'm trying to video chat with my brother who has the exact same computer as me and we are both on home networks with no firewall and plenty of abandwith... Heres the error.. Already tried changing port to 443 and doing quicktime stream
    Date/Time: 2007-12-23 13:50:00.722 -0800
    OS Version: 10.5.1 (Build 9B18)
    Report Version: 4
    iChat Connection Log:
    2007-12-23 13:49:23 -0800: AVChat started with ID 1025414969.
    2007-12-23 13:49:23 -0800: arnst191: State change from AVChatNoState to AVChatStateWaiting.
    2007-12-23 13:49:23 -0800: 0x19178110: State change from AVChatNoState to AVChatStateInvited.
    2007-12-23 13:49:31 -0800: 0x19178110: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-12-23 13:49:31 -0800: arnst191: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-12-23 13:49:51 -0800: 0x19178110: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-12-23 13:49:51 -0800: 0x19178110: Error -8 (Did not receive a response from 0x19178110.)
    2007-12-23 13:49:51 -0800: arnst191: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-12-23 13:49:51 -0800: arnst191: Error -8 (Did not receive a response from 0x19178110.)
    Video Conference Error Report:
    157.581824 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    159.583946 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    141.396462 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    149.562930 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    149.564249 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    155.581108 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK5a1d2e5e31befc59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1187275023
    Call-ID: f4dbb06c-b1a0-11dc-a5f3-810eba9c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 725
    v=0
    o=arnstein 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    156.082350 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK5a1d2e5e31befc59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1187275023
    Call-ID: f4dbb06c-b1a0-11dc-a5f3-810eba9c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 725
    v=0
    o=arnstein 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    157.083109 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK5a1d2e5e31befc59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1187275023
    Call-ID: f4dbb06c-b1a0-11dc-a5f3-810eba9c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 725
    v=0
    o=arnstein 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    157.582773 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5dbef56061bd013e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1920655706
    Call-ID: f60d1d90-b1a0-11dc-a5f3-cfeaab0e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 727
    v=0
    o=arnstein 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    158.084153 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5dbef56061bd013e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1920655706
    Call-ID: f60d1d90-b1a0-11dc-a5f3-cfeaab0e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 727
    v=0
    o=arnstein 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    159.084678 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5dbef56061bd013e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1920655706
    Call-ID: f60d1d90-b1a0-11dc-a5f3-cfeaab0e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 727
    v=0
    o=arnstein 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    159.612478 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119e3000 - 0x119e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x119ed000 - 0x119f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x119fb000 - 0x119fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x1492f000 - 0x14a15fff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14a24000 - 0x14a29fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x14aa8000 - 0x14ac4fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x162c5000 - 0x16446fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16474000 - 0x166dafff com.apple.ATIRadeonX1000GLDriver 1.5.18 (5.1.8) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x177dc000 - 0x177e5fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x17878000 - 0x1787bfff com.apple.LiveType.component 2.1.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17880000 - 0x178e5fff com.apple.LiveType.framework 2.1.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x17905000 - 0x17976fff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x17984000 - 0x17987fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1798d000 - 0x17992fff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17997000 - 0x179d2fff com.apple.QuickTimeFireWireDV.component 7.3.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x179dd000 - 0x17a0afff com.apple.QuickTimeIIDCDigitizer 7.3.1 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x17a15000 - 0x17a5ffff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x17abe000 - 0x17c4bfff com.apple.audio.codecs.Components 1.6 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x17c76000 - 0x17c76fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x17cae000 - 0x17caefff liblangid.dylib /usr/lib/liblangid.dylib
    0x17d3d000 - 0x17d3efff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x18635000 - 0x1863cfff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x19305000 - 0x19315fff com.apple.DVCPROHDVideoDigitizer 1.2 /Library/QuickTime/DVCPROHDVideoDigitizer.component/Contents/MacOS/DVCPROHDVide oDigitizer
    0x1932d000 - 0x19374fff com.apple.DVCPROHDMuxer 1.2 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x19f7d000 - 0x19f8ffff com.apple.FCP Uncompressed 422.component 1.4 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x19f95000 - 0x19f9afff com.apple.DesktopVideoOut 1.2.4 /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x19f9f000 - 0x19fa2fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1a466000 - 0x1a482fff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1a494000 - 0x1a4b1fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a51c000 - 0x1a529fff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90127fff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90128000 - 0x90157fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90158000 - 0x9066efff com.apple.WebCore 5523.10.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9067d000 - 0x90699fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9069a000 - 0x906a1fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x906a2000 - 0x906fcfff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x906fd000 - 0x90857fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90858000 - 0x90866fff libz.1.dylib /usr/lib/libz.1.dylib
    0x90867000 - 0x90868fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90869000 - 0x908abfff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x908ac000 - 0x908cffff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x908d0000 - 0x90902fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90903000 - 0x90971fff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90972000 - 0x909b6fff com.apple.DirectoryService.PasswordServerFramework 3.0.1 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x909b7000 - 0x909b7fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x909b8000 - 0x90a4bfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90a4c000 - 0x90a51fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90a52000 - 0x90a6dfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90a6e000 - 0x90ba4fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90ba5000 - 0x90bb8fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90bb9000 - 0x90c2dfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90c2e000 - 0x90cdefff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90cdf000 - 0x90d69fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90d6a000 - 0x91401fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91402000 - 0x91402fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91403000 - 0x91407fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91408000 - 0x9149afff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9149b000 - 0x914e8fff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x914e9000 - 0x91560fff com.apple.CFNetwork 220 (221) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91561000 - 0x91569fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x915a8000 - 0x915cffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x915d0000 - 0x915eefff com.apple.QuickLookFramework 1.0.1 (168.1) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x915ef000 - 0x915effff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x915f0000 - 0x915f0fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x915f1000 - 0x9164efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9164f000 - 0x916dbfff com.apple.LaunchServices 286 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x916dc000 - 0x91709fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9170a000 - 0x91722fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91723000 - 0x9179ffff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x917a0000 - 0x9180ffff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91810000 - 0x91ba6fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91ba7000 - 0x91c62fff com.apple.WebKit 5523.10.5 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91c63000 - 0x91c72fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x91c73000 - 0x91ca9fff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91caa000 - 0x91d35fff com.apple.QTKit 7.3.1 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91d36000 - 0x91d54fff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91d55000 - 0x91e0bfff com.apple.CoreServices.OSServices 210.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91e0c000 - 0x91e48fff com.apple.CoreMediaIOServicesPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x91e49000 - 0x92004fff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92005000 - 0x920aefff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x920af000 - 0x9210bfff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9210c000 - 0x9211bfff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9211c000 - 0x9211cfff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9211d000 - 0x9224ffff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92345000 - 0x9238ffff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92390000 - 0x9242efff com.apple.QuickTimeImporters.component 7.3.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92439000 - 0x9274afff com.apple.QuickTime 7.3.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9274b000 - 0x92781fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x92782000 - 0x92849fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9284f000 - 0x928f6fff com.apple.QD 3.11.50 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x928f7000 - 0x928fefff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x928ff000 - 0x92915fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92916000 - 0x9291bfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9291c000 - 0x9291cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92929000 - 0x929dbfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x929dc000 - 0x929e7fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x929e8000 - 0x929e8fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x929e9000 - 0x92a35fff com.apple.QuickLookUIFramework 1.0.1 (168.1) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92a36000 - 0x92e46fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92e47000 - 0x92e48fff libffi.dylib /usr/lib/libffi.dylib
    0x92e49000 - 0x93207fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93208000 - 0x93215fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93216000 - 0x932f5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x932f6000 - 0x9333bfff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9333c000 - 0x93474fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x93475000 - 0x934b2fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x934b3000 - 0x9372cfff com.apple.Foundation 6.5.1 (677.1) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93a76000 - 0x93adbfff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93adc000 - 0x93b2cfff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93b2d000 - 0x93b2ffff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93b30000 - 0x93b36fff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93b37000 - 0x93b90fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93b9e000 - 0x93c7ffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x93c80000 - 0x93c97fff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93c98000 - 0x93c9afff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93c9b000 - 0x93cabfff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93cac000 - 0x93ce5fff com.apple.securityfoundation 3.0 (32768) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93ce6000 - 0x93cf7fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x93cf8000 - 0x93d03fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93d04000 - 0x93d8bfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93d8c000 - 0x93d93fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x93d94000 - 0x93ed9fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93eda000 - 0x93f0bfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93f0c000 - 0x94d8dfff com.apple.QuickTimeComponents.component 7.3.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94d8e000 - 0x94dadfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94dae000 - 0x94dd2fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x94dd3000 - 0x94dd7fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x94dd8000 - 0x952a4fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x952a5000 - 0x952a5fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x952a6000 - 0x952bafff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x952bb000 - 0x95386fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95387000 - 0x95397fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95398000 - 0x953d2fff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x953d3000 - 0x956d9fff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9570a000 - 0x957eefff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x957ef000 - 0x957f4fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x957f5000 - 0x9586ffff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95870000 - 0x958affff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x958b0000 - 0x958dafff libauto.dylib /usr/lib/libauto.dylib
    0x958db000 - 0x958fffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95900000 - 0x95916fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9591d000 - 0x95920fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95921000 - 0x9593ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95a06000 - 0x95bcffff com.apple.security 5.0.1 (32736) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95d94000 - 0x95da0fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95da1000 - 0x95da1fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95da2000 - 0x9607bfff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9607c000 - 0x9617dfff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9617e000 - 0x9617efff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9617f000 - 0x962fdfff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x962fe000 - 0x9633ffff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96340000 - 0x963bffff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x963c0000 - 0x96bbafff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96bec000 - 0x96beefff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96bef000 - 0x96c3ffff com.apple.framework.familycontrols 1.0.1 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96c78000 - 0x96ca0fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96ca1000 - 0x96d50fff com.apple.DesktopServices 1.4.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96d51000 - 0x96d5afff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96d5b000 - 0x96d5bfff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96d5c000 - 0x96d66fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96d67000 - 0x96d6efff libbsm.dylib /usr/lib/libbsm.dylib

  • Openoffice german-spell-checking does not work anymore

    Hi
    I noticed that spell-checking in openoffice does not with the german dict. (openoffice-spell-de) while the english dict. does. (openoffice-spell-en).
    Is this only a problem of my setup or a global problem? is there a workaround for that?
    grettings matto

    It works for me (I just tested it).

  • Openoffice - empty language modules and spel checking does not work

    Hi,
    I installed openoffice-base, openoffice-de and openoffice-spell-de. My /opt/openoffice/share/dict/ooo/dictionary.lst looks ok:
    ### start de
    DICT de AT de_DE
    DICT de AT de_AT
    DICT de DE de_DE
    DICT de DE de_DE_neu
    DICT de DE de_DE_comb
    DICT de LI de_CH
    DICT de LU de_DE
    DICT de CH de_CH
    HYPH de AT hyph_de_DE
    HYPH de DE hyph_de_DE
    HYPH de LI hyph_de_DE
    HYPH de LU hyph_de_DE
    HYPH de CH hyph_de_CH
    THES de DE th_de_DE
    THES de DE th_de_DE_v2
    ### end de
    Ive read nearly every hint on the internet to this problem, but nothing works.
    When trying to check the spelling, OO returns immidiately and says, its everything fine, even if i have errors.
    I tried to install the dictionary again with the OO wizard, but without success. Im getting some Macro error when trying to run it.
    Hopefully someone can help me. Im out of ideas
    Edit: sorry i just saw, that i posted my topic in the wrong sub-forum. Maybe someone cann move it to the correct one...
    Last edited by setti (2008-04-21 21:23:19)

    With hunspell update released yesterday problem still exist... Language modules box is empty, spellchecker not working. When trying to use DicOOo there is some macro error.
    EDIT
    Mea Culpa. Everything is working now, I've missed update to openoffice-base
    Last edited by blasse (2008-04-24 08:11:11)

  • Archive Source Files with Errors, Option Does not work

    Any one tried "Archive Source Files with Errors" on the
    sender adapter. It shows no effect.
    1.We are on SP19.
    2.Adapter type : FTP adapter.
    Steps for the Reconstruction 
    1. Configure a sender FTP adapter.
    2. choose the option "Archive Faulty source files"
    3. Specify a directory for "Directory for archiving Files with Erroors"
    4. Send a file which can cause File Content conversion errors.
    Regards,
    Raj

    Hi,
    FYI
    I am in PI 7.0 SP 10. It works fine for me. Whenever you have any content conversion problem or module problem, it has created the same input file in specified directory.
    In your case are u getting content conversion error in the Communication Channel ..just cross check it. If not try to get error over there and then test this feature
    Rgds,
    Moorthy

  • Satellite Pro C855-1TC boot error - backup does not work

    Hi
    My laptop went curput 2 days after I done a back up.
    Came up with an error code: oxc00000f
    I tried using the backup disk but ask to delete all on hardisk which i didn't
    I have all my photo's etc on there,
    I tried all the other options. It says came up were windows is installed the drive is locked and unlock and try again. How do you unlock?
    Also the laptop was preinstalled. The laptop didn't come with the disk
    How do you find your product key code?
    Its not on a label on the laptop. Just Windows 8 home sticker,
    Typicaly, warranty run out month before grrr.
    I can borrow a friends windows 8 disk but I need my key no so frustrating
    Im no techno fob just need advise please.
    Thanks amanda

    The laptop did not come with any disks because there was a possibility to create own recovery medium (USB or Disk) using the preinstalled software called Toshiba Recovery Medium Creator.
    If you dont have such disk, you order this here:
    http://backupmedia.toshiba.eu/landing.aspx
    Now back to your issue:
    Press power button and then F12
    Now you should see some bootable devices. Last option is HDD Recovery.
    Check if you could recover the notebook using the HDD recovery option.
    Regarding the images on your disk.
    Well, its possible to remove the HDD and to connect this HDD to another computer using external USB-SATA caddy. This allows you to move the pictures to another computer.
    Note: this needs to be done before running the HDD recovery process.

  • Ihave firefox 3.6.8 spell check used to work on hotmail but I had to uninstall firefox and reload it now spell check does not work on hotmail . I have installed the dictionaryadd on

    I can't gte spell check to work it just says
    Most browsers check for spelling mistakes automatically. Look for the words that are flagged by red lines and right-click them to see suggestions. Note that with some browsers, you may need to download a dictionary.
    I have done this

    Not all locales come with a dictionary installed for licensing reasons.<br />
    If you do not have the en-US locale then check that you have a dictionary installed (Tools > Add-ons > Extensions) and selected.<br />
    <br />
    You can see which dictionary is selected if you right-click in a text area and open the Languages submenu.<br />
    Also make sure that [[X]"Check Spelling" in the right-click context menu has a tick.<br />
    You can also try to toggle the "Check Spelling" item off and on again.<br />
    <br />
    See http://kb.mozillazine.org/Spell_checking and [[Using the spell checker]]<br />
    See also http://kb.mozillazine.org/Dictionaries

  • Why budget check does not work with account assigment distrib. by quantity?

    Hi Gurus,
    I have an issue in the budget check for Purchase Order (PO).
    I'm using the FM B31I_ACC_PURCHASE_ORDER_CHECK.
    The case is next:
    1 Item with 21 account assignment type AS and distribution by quantity:
    ASSET_NO QUANTITY
    1           1
    2           1
    3           1
    4           1
    5           1
    6           1
    7           1
    8           1
    9           1
    10          1
    11          1
    12          1
    13          1
    14          1
    15          1
    16          1
    17          1
    18          1
    19          1
    20          1
    21          1
    All account assignment are for the same G/L account, fund, functional area...
    The price for each item is $2,499.14, then total price is $52,481.94 (2,499.14 * 21).
    I debugged the FM B31I_ACC_PURCHASE_ORDER_CHECK and found that in FM BBP_PD_COMMITMENT_FILL_BAPI it's making a rounding with percentage:
    The system assume next:
    Each item is 4.76% of total (result of divide 100% / 21 = 4.76190476...) but the percentage is rounded to 2 decimals.
    Then it makes the conversion by the amount corresponding to each item:
    ($52,481.94 * 4.76) / 100 = $2,498.1403
    Finally the budget is checked by $52,460.95 (2498.1403 * 21).
    But available budget is $52,481.90, the check pass, but really there are 4 cents missing (total price is $52,481.94).
    Can somebody say to me if this is a standard behavior?
    It can be fixed with configuration?
    The problem is for multiple account assignment with distribution by quantity and:
    (100 / quantity) = not integer (or have more than 2 decimals)
    For example: with quantity 20 it works because 100% / 20 = 5.00%, then the budget is check exactly.

    1503317 - System Behavior for Account Distribution between SRM and R/3 system
    When using distribution by Value in a SRM document this value is not correct and a rounding occurs once this document is transferred to ERP system.
    Cause
    It is not possible transfer documents to the back end system with distribution by value, due to a back end restriction.
    Resolution
    The following information is the system behavior in R/3 / ERP:
    in R/3, there is accounting distribution only by quantity or percentage. So when distribution by value is used, a rounding will always take place.
    in R/3, the use of value based distribution in SRM will lead to rounding differences.
    Distribution by quantity is allowed in SRM and MM side. However MM do not accept is distribution by value. This is internally converted to distribution percentage based.
    Keywords
    Distribution by Quantity, Distribution by Percentage, Distribution by Value

  • Relinking files through link checker does not work properly.

    Good Morning:
    I am using Dreamweaver CS6, and updating an old site (built in CS4). I have over 100 broken links to graphics which I am trying to relink through the "link checker" - will sporadic success.
    I have to update this site yearly, with new product graphics.
    When I try to update using the "check links sitewide" feature, I can update maybe two graphics, and then it will hiccup on the third attempt and REFUSE to relink to the new graphic I direct it to.
    My computer specs are as follows:
    Mac Pro
    Processor  2.8 GHz Quad-Core Intel Xeon
    Memory  2 GB 800 MHz DDR2 FB-DIMM
    Graphics  ATI Radeon HD 2600 XT 256 MB
    Software  OS X 10.8.2 (12C60)
    Any help would be appreciated.

    My guess is that you defined the language used to check on one or a few number of words.
    Select all the define the language to use.
    I'm quite sure that, after that, it will do the trick correctly.
    Yvan KOENIG (VALLAURIS, France) lundi 15 mars 2010 21:38:13

  • U44M1P34 InDesign Update Error: fix does not work

    I followed the suggested fix for the update error U44M1P34: I uninstalled InDesign and then tried to install the update. It continues to fail after several attempts.

    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • I want to have all my tabs return after closing. In Tools/Options/General/ I have' Show my Windows and Tabs from last time' checked, but it does not work. When I open FF again none of my formerly open Tabs show... FF v.4.

    When I open FF up again after I have closed it, I want all tabs to return. In Tools/Options/General/ I have' Show my Windows and Tabs from last time' checked-does not work. In addition, the feedback window fails to 'Submit...!'

    Some things to check:
    #'''Browsing history must be saved'''
    #*Firefox button: Firefox button > Options > Options > Privacy > [X] Remember my browsing history
    #*Menu Bar: Tools > Options > Privacy > [X] Remember my browsing history
    #'''Also make sure you do not clear "Browsing History" when using Clear Recent History or when closing Firefox'''
    #*Using Clear Recent History
    #**Firefox button: Firefox button > History >Clear Recent History
    #**Menu Bar: Tools > Clear Recent History
    #*When closing Firefox
    #**Firefox button: Firefox button > Options > Options > Privacy (checked) > Settings
    #**Menu Bar: Tools > Options > Privacy (checked) > Settings
    #**See: https://support.mozilla.com/en-US/kb/Clear%20Recent%20History
    #'''Make sure you are not in Private Browsing mode''' or '''in permanent Private Browsing mode''':
    #*See: https://support.mozilla.com/en-US/kb/Private%20Browsing
    #'''If you have the'''Tab Mix Plus'''extension''', then disable the built-in session restore.

Maybe you are looking for

  • Is it possible to fix a corrupt FCPX project?

    here is my crash detail: Process:         Final Cut Pro [226] Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro Identifier:      com.apple.FinalCut Version:         10.0.3 (192356) Build Info:      ProEditor-192350600~1 Ap

  • Employee photo

    Hi Experts, I can save the employee photo from ESS. But after saving it i can't see it. It shows blank with a red cross. From the picture property I find the URL and when I am running it a popup generated "Do you want to save this file " for download

  • Forced restart and kernel panic at hibernation

    Hey Folks! My MacBook forces a restart (with grey screen and the corresponding message) and indicates a kernel panic every time I send my MacBook to hibernation. The restart then works perfectly fine. Does anyone have a clue, what the reason for this

  • The question about flight instrument

    hello~~ i have some problem about which toolkit that have the basic six flight instrument i need that toolkit to know the information form the airplane the example is like the add file thanks for your help.... Attachments: six flight instrument.JPG ‏

  • Exceptions issue

    how many predefined exception are there in Oracle 10g and 9i at least approximatly, How do one can achive the purpose of continue stm in C with oracle plsql if I dont want to use goto statement I mean that If i want to skip certain cycles in the loop