2 buttons in one form - need help

I created 2 buttons in one form [xxxx.jsp] .
Both have same action="xxxx.jsp" <=== I am validating the form in same page.
If the validations is true and if 1st button is pressed ,then it should go to yyy.jsp page .
If the validations is true and if 2nd button is pressed , then it should go to zzz.jsp.
form name=f2 action="main_menu_tech.jsp" method="GET">
<table align="center">
<tr>
<td>
<h3><font color="#008080"><b>Ticket ID</b></td>
<td><input type="text" name="t1"></font>
</h3>
</td>
</tr>
<tr>
<td>nput type="submit" value="Search" name="button1"></td>
<td><input type="submit" value="Edit" name="button1"> </td
</tr>
</table>
</form>
<%@ page import= "java.sql.*;"%>
<%! String tid; %>
<%tid=request.getParameter("t1");
session.setAttribute("ob2",tid);
if(tid!=null)
if(tid.equals(""))
{ %>
<br><br><br>
<h3 align="center"><font color="#008080"><% out.println("FILL IN ALL ENTRIES");%></h3>
<%
else
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:bspipdb");
Statement st = con.createStatement();
ResultSet rs=st.executeQuery("Select * from datacollectdb where ticketid='"+tid+"'");
if(rs.next())
if(request.getParameter("button1") =="search")
response.sendRedirect("display_ticket.jsp");
else if(request.getParameter("button1") =="edit" )
response.sendRedirect("edit_tdetail.jsp");
else
%>
<h3 align="center">
<font color="#008080">
<% out.print("Invalid Ticket Number");%>
<br>
<% out.print("Please try again with correct Ticket Number");%>
</font>
</h3>
<%
%>
The above code is not working. Any idea?
Please help me out!

Read the application server logs. My cents on an IllegalStateException.
To solve this, properly separate the business and controller logic from the presentation logic. Use a Servlet. Right now you're doing some business and controller logic while the presentation logic already has been run. This is asking for problems.
Not related to the problem, but you should also separate the data logic as well.

Similar Messages

  • Two buttons in one form?

    hi,
    i wanted to know if i place 2 buttons in one form, the form will submit to the same page either way, is there any way on the second page to detect which button was clicked? suppose the form sends for info on a person but i need to know which button was clicked on the other end to display other data, is it possible to know which one was clicked?
    Thank you.

    If you name the buttons the same, but assign them different values, you could check the value of the parameter with the button's name to determine which button was clicked. Alternatively, you could set up a hidden field called something like "buttonClicked" and prior to submittal of the page, change it's value to that of the button which the user clicked.
    This is more of a JavaScript sol'n, but one that works.

  • Can we have two submit buttons in one form

    please someone help me. my problem is i want two submit button in one form.one to insert data and other to search data .how can i do this.

    hi!
    it is possible but impragmatic to supply a single form with 2 submit buttons.
    albeit, rather that use submit button you may just do the following (alternatively):
    a. put a default action url to your form's action attribute;
    b. replace all your submit button with just button (form element) and put a unique id on each;
    c. then put a function name (javascript) on its onClick attribute;
    d. in your javascript function, you may now reference your button through their id's and using an if-then statement, assign the proper url that will serve as the new action for your form;
    e. on the last line of your function, execute the line formname.submit()doods72
    http://www.ingenium.com.ph

  • Multiple Submit buttons on one form

    I'm developing an application that will have 4 buttons at the bottom of the form to do various things with the form information. One of the buttons will link to a separate web page for confirmation of the action. I tried to set a global variable and place an onclick event for the button which assigns a specific value for that variable. I then placed a <jsp:forward tag in my code that would be included if the global variable was the specific value which the button changes it to. I"m not sure if I'm being clear here. There is the forms page with the 4 buttons. It possesses all of this code. So the global variable is declared at the top. The variable is set if the 'Delete' button is clicked. And further down there is an if statement used to include the <jsp:forward tag when the 'Delete button has been pressed and this form is again being drawn up.
    What I describe doesn't work. The global variable I guess is reset when this form is drawn up a second time after the 'Delete' submit button is pressed. I''m not married to the way that I'm solving this problem at this point so I'll take any suggestions. But basically I want the Web Forms fields to be sent to this delete jsp so that I can confirm the command to delete the indicated record from the database. The three other buttons on this form are 'Add/Update', 'Rename', and 'Cancel'. The Add/Update and Rename buttons should also be submit buttons but they should link back to the same page as they are located on. The cancel button is to return the user to the index page. I have this working using a document.location.href command in the onclick event for that button.
    Brian

    Hi Brain. If I'm following your thoughts, you may want to consider replacing the four sumbit buttons with four radio control buttons and one submit button.
    I would suggest that you set your form action via a radio control button then, thru the form action, pass the form to a Servlet or JSP that contains some logic.
    <!doctype html public "-//w3c//dtd html 3.2 final//en">
    <html>
    <head>
    </head>
    <body>
    <!-- set your action here to go against a Servlet or JSP.  The
         Servlet or the JSP will contain the logic to Delete, Add/Update, Rename or Cancel
         based on the formAction value.
    -->
    <form action='ServletOrJSPNameHere' method='post'>
    <br> <input type='radio' name='formAction' value='Delete'>Delete
    <br> <input type='radio' name='formAction' value='Add/Update'>Add/Update
    <br> <input type='radio' name='formAction' value='Rename'>Rename
    <br> <input type='radio' name='formAction' value='Cancel'>Cancel
    <br> <input type='submit' value='submit'>
    <form>
    </body>
    </html>
    // this code would go into your Servlet, JSP, or worker class
    String formAction = request.getParamger("formAction");
    // test for null value  
    if ( formAction == null ) { 
         // reload the page with a message to pick a radio button
    else if ( formAction.equals("Delete") {
       doTheDeleteProcessing();
    else if ( formAction.equals("Add/Update") { 
       doTheAdd/UpdateProcessing();
    else if ( formAction.equals("Rename") {
       doTheRenameProcessing();
    else {
       doTheCancelProcessing();
    }I hope this helps.

  • Progress bar after button click ------ code included . need help

    Hi,
    this is my code. i want the progress bar to move after i click the OK button but its not working. Need help urgently.
    public class LoggenGUI extends JFrame implements ActionListener{
    private JButton btnOk;
    private JProgressBar current;
    public LoggenGUI() {
    super("Login");
    this.setBounds(350,225,350,235);
    // this.setSize(300,300);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setResizable(false);
    this.btnOk = new JButton("Ok");
    // associating action event listener to it
    this.btnOk.addActionListener(this);
    this.current = new JProgressBar(0,2000);
    this.current.setValue(0);
    this.current.setStringPainted(true);
    this.setContentPane(pane);
    this.setVisible(true)
    }// end constructor
    public void iterate(){ 
    while(this.num < 2000){
    this.current.setValue(this.num);
    try{
    Thread.sleep(1000);
    }catch(InterruptedException e)
    this.num= this.num + 200;
    if(this.num >= 2000)
    this.dispose();
    this.prgrBar = new ProgressBar();
    this.current.setStringPainted(true);
    public void actionPerformed(ActionEvent evt){
    Object source = evt.getSource();
    if(source == this.btnOk){    this.iterate();    }
    } // end class

    You keep posting this question every day. Do you
    think you are going to get a different answer each
    time you posted it without reading what others have
    told you to do!"Insanity: doing the same thing over and over again and expecting different results." --- A. Einstein

  • J_3R_INV1_CONTEXT or J_3R_INV1 PDF form need help

    Hello All!
    Help me please!
    When I try to PDF print of PDF form INV-1, the subtotal on first page is incorect. becose qty * prise is incorect. qty = 1 but report do: qty = 1000 & all other data in report is incorect.
    How i can try to correct this?

    First of all sorry of my bad english.
    On Page 1 in table on column 12 qty = 1, on Page 2 in first row (a)
    Write &#1054;&#1044;&#1048;&#1053; (in russian one or 1), in second row (&#1041;) write &#1054;&#1044;&#1053;&#1040; &#1058;&#1067;&#1057;&#1071;&#1063;&#1040; (in russian 1000) but it's incorrect.
    row (&#1042;) = row(a) * price. I need row (B) = 1Price but i have 1000Price.

  • No submit button in distributed form - JavaScript help

    I have creted a from in Live Cycle Designer. After distribution submit button is not visible in Acrobat and Reader. I've looked at the form JavaScript and find out this part of code which probably hide submit button in Acrobat 9:
    showAutoGenSubmitBtn = function(bShow)
        var autoGenSubmitName = "%AUTO_GEN_SUBMIT_NAME%";
        var fld = this.getField(autoGenSubmitName);
        if (fld != null)
            var b= this.dirty;
            if (bShow)
                fld.display = display.noPrint;
            else
                fld.display = display.hidden;
            this.dirty= b;
    // Hide the auto-generated submit button for Acrobat/Reader >= 9.0
    if (app.viewerVersion >= 9)
        showAutoGenSubmitBtn(false);
    else
        showAutoGenSubmitBtn(true);
    I am not familair with JavaScript so I would apprecite if someone can help me how to edit it to make submit button visible.
    Below is a complete JaveScrip of mentioned form.
    Thanks
    //@@FORMSWORKFLOW auto-generated script
    AdobePatentID="B643"
    var AdobePatentID = "AdobePatentID=\"B643\"";
    // Show a dialog to ask the user's name and email during submit.
    askUserIdentity = function(doc)
        // string constants
        var dlgStrings =
            sDlgTitle:          "Send Form",
            sEmailLabel:        "&Email Address:",
            sNameLabel:         "Full &Name:",
            sSubmitLabel:       "&Send",
            sToLabel:           "To:",
            sSubjectLabel:      "Subject:",
            sSubjectContent:    "Submitting Completed Form",
            sAttachmentLabel:   "Attachment:",
            sFromLabel:         "From:",
            sErrorEmailRequired:"Please enter a valid email address.",
            sErrorNameRequired: "Please enter your name."
        var dlgElems = [];
        dlgElems[dlgElems.length] = {
            type: "view",
            align_children: "align_left",
            elements:
                    type: "view",
                    align_children: "align_row",
                    elements:
                            type: "static_text",
                            name: dlgStrings.sToLabel,
                            width: 80,
                            bold: true,
                            font: "dialog"
                            type: "static_text",
                            item_id: "sdto",
                            width: 270,
                            font: "dialog"
                    type: "view",
                    align_children: "align_row",
                    elements:
                            type: "static_text",
                            name: dlgStrings.sSubjectLabel,
                            bold: true,
                            width: 80,
                            font: "dialog"
                            type: "static_text",
                            name: dlgStrings.sSubjectContent,
                            width: 270,
                            font: "dialog"
                    type: "view",
                    align_children: "align_row",
                    elements:
                            type: "static_text",
                            name: dlgStrings.sAttachmentLabel,
                            bold: true,
                            width: 80,
                            font: "dialog"
                            type: "static_text",
                            item_id: "atch",
                            width: 270,
                            font: "dialog"
                    type: "gap",
                    height: 5,
                    width: 350
                    type: "static_text",
                    name: dlgStrings.sFromLabel,
                    bold: true,
                    font: "dialog"
                    type: "static_text",
                    name: dlgStrings.sEmailLabel,
                    bold: true,
                    font: "dialog"
                    type: "edit_text",
                    item_id: "emal",
                    width: 250
                    type: "static_text",
                    name: dlgStrings.sNameLabel,
                    bold: true,
                    font: "dialog"
                    type: "edit_text",
                    item_id: "name",
                    width: 250
                    type: "gap",
                    height: 5,
                    width: 350
                    type: "ok_cancel",
                    ok_name: dlgStrings.sSubmitLabel
        var desc = {
            resourceContext: "AcroForm",
            description:  {
                name: dlgStrings.sDlgTitle,
                elements: [
                        type: "view",
                        align_children: "align_left",
                        elements: dlgElems
        desc.initialize = function(dialog)
            var METADATA_ANNOT_NAME = "adhocFormState";
            var PROP_INITIATOR = "initiator";
            var initiator;
            var annot = doc.getAnnot(0, METADATA_ANNOT_NAME);
            if (annot != null) {
                var arrProps = new Array();
                arrProps = annot.contents.split(";");
                initiator = getProperty(arrProps, PROP_INITIATOR);
            var decodedFileName = unescape(doc.documentFileName);
            var initVars =
                sdto: initiator,
                atch: decodedFileName
            dialog.load(initVars);
        desc.validate = function(dialog)
            var values = dialog.store();
            if (values.emal == "") {
                app.alert(dlgStrings.sErrorEmailRequired);
                return false;
            if (values.name == "") {
                app.alert(dlgStrings.sErrorNameRequired);
                return false;
            return true;
        desc.commit = function(dialog)
            this.result = new Object;
            var values = dialog.store();
            this.result.name = values.name;
            this.result.email = values.emal;
        var ret = app.execDialog(desc);
        if (ret == "ok")
            return desc.result;
        else
            return null;
    askEmailClient = function(doc)
    // string constants
        var dlgStrings =
            sDlgTitle:      "Select Email Client",
            sDlgText:       "Please indicate the option which best describes how you send mail.",
            sDesktop:       "&Desktop Email Application",
            sDesktopDesc:   "Choose this option if you currently use an email application such as Microsoft Outlook Express, Microsoft Outlook, Eudora, or Mail.",
            sInternet:      "&Internet Email",
            sInternetDesc:  "Choose this option if you currently use an Internet email service such as Yahoo or Microsoft Hotmail. You will then need to save your form and return it manually to [email protected] using your Internet email service."
        var dlgElems = [];
        dlgElems[dlgElems.length] = {
            type: "view",
            align_children: "align_left",
            alignment: "align_fill",
            elements:
                    type: "static_text",
                    name: dlgStrings.sDlgText,
                    width: 350,               
                    font: "dialog"
                    type: "radio",
                    name: dlgStrings.sDesktop,
                    item_id: "rad1",
                    group_id: "rgrp",
                    bold: true,
                    font: "dialog"
                    type: "view",
                    align_children: "align_top",
                    elements:
                            type: "gap",
                            width: 20
                            type: "static_text",
                            name: dlgStrings.sDesktopDesc,
                            wrap_name: true,
                            width: 342,
                            font: "dialog"
                    type: "radio",
                    name: dlgStrings.sInternet,
                    item_id: "rad2",
                    group_id: "rgrp",
                    bold: true,
                    font: "dialog"
                    type: "view",
                    align_children: "align_top",
                    elements:
                            type: "gap",
                            width: 20
                            type: "static_text",
                            name: dlgStrings.sInternetDesc,
                            wrap_name: true,
                            width: 342,
                            font: "dialog"
                    type: "gap",
                    height: 5,
                    width: 350
                    type: "ok_cancel",
        var desc = {
            resourceContext: "AcroForm",
            description:  {
                name: dlgStrings.sDlgTitle,
                width: 250,
                elements: [
                        type: "view",
                        align_children: "align_left",
                        elements: dlgElems
        desc.commit = function(dialog)
            this.result = new Object;
            var values = dialog.store();
            this.result.send = values.rad1;
            this.result.save = values.rad2;
        var ret = app.execDialog(desc);
        if (ret == "ok")
            return desc.result;
        else
            return null;           
    AdobePatentID="B643"
    // set a new property value to a property in the specified array.
    setProperty = function(arrProps, propName, propValue)
        var i;
        var bSet = false;
        for (i = 0; i < arrProps.length; i++) {
            var propParts = new Array();
            propParts = arrProps[i].split(":");
            if (propParts[0] == propName) {
                propParts[1] = propValue;
                arrProps[i] = propParts.join(":");
                bSet = true;
                break;
        if (!bSet)
            arrProps[arrProps.length] = propName + ":" + propValue;
    AdobePatentID="B643"
    // get the value for a property in the specified array.
    getProperty = function(arrProps, propName)
        var i;
        for (i = 0; i < arrProps.length; i++) {
            var propParts = new Array();
            propParts = arrProps[i].split(":");
            if (propParts[0] == propName) {
                return propParts[1];
        return null;
    AdobePatentID="B643"
    showAutoGenSubmitBtn = function(bShow)
        var autoGenSubmitName = "%AUTO_GEN_SUBMIT_NAME%";
        var fld = this.getField(autoGenSubmitName);
        if (fld != null)
            var b= this.dirty;
            if (bShow)
                fld.display = display.noPrint;
            else
                fld.display = display.hidden;
            this.dirty= b;
    // Hide the auto-generated submit button for Acrobat/Reader >= 9.0
    if (app.viewerVersion >= 9)
        showAutoGenSubmitBtn(false);
    else
        showAutoGenSubmitBtn(true);

    I'm distributing the form in Acrobat Pro 9.
    I created the form in Live Cycle Designer.  Save, then open in Acrobat pro.  Extend Features to Acrobat Reader, click the drop down box on Forms and hit distribute.  I save a local copy.  When I open the distributed form the buttons do fall silent, the Submit Button on the purple line up top still works, but that doesn't appear in reader and the people who will be completing the form all use reader.  Any suggestions for a fix?
    I'd like to distribute because that automates the tracking.  It works undistributed.

  • Cannot view some important buttons in iTunes. Need Help.

    I need some help, my problem is there are buttons I need to click in iTunes, but I can't see them.
    You can see here, I can't agree to the iPhone Software License Agreement http://img179.imageshack.us/img179/1871/iphonega3.jpg
    And in this one I can't click the "OK" button so I can manage my iPod, http://img230.imageshack.us/img230/5215/ipodan7.jpg
    Any and all help is appreciated.
    Thanks,
    Blake

    This is most often due to screen resolution settings. Make sure you are set to at least 1024x768

  • Can't chat with one buddy- NEED HELP!! PLEASE EXPLAIN ERROR 8 SIMPLY!!!

    i know this has already been discussed but i am technically illiterate and dont understand any of the responses previously made about opening ports- i have no idea what that means or how to do it! i am hoping someone can help me and explain how to solve this issue in simple terms please!!!
    My situation is as follows:
    my boyfriend and i both just bought macbooks together, v 10.5.2 leopard. we were very excited to try ichat video together. However, we found that we are getting the same error message many people are getting- the error-8. this happens when either one of us tries to initiate the conversation. HOWEVER, when a third person initiated a video chat amongst all 3 of us, we were able to see and hear each other through this 3-person video chat. The two of us have also had no problem using skype video or audio. The internal camera and microphone both seem to be working fine as well.
    We both did try to go into system preferences-security-firewall- set specific preferences for applications- and added ichat. we quit out of ichat, and logged back in but we were still unsuccessful at getting video to work.
    This is the dialogue i have received on the error message and i hope it helps:
    Date/Time: 2008-03-10 21:28:38.359 -0400
    OS Version: 10.5.2 (Build 9C2015)
    Report Version: 4
    iChat Connection Log:
    2008-03-10 21:28:19 -0400: AVChat started with ID 2969637957.
    2008-03-10 21:28:19 -0400: 0x1853e900: State change from AVChatNoState to AVChatStateWaiting.
    2008-03-10 21:28:19 -0400: katie104852: State change from AVChatNoState to AVChatStateInvited.
    2008-03-10 21:28:23 -0400: 0x1853e900: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-03-10 21:28:23 -0400: katie104852: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-03-10 21:28:33 -0400: 0x1853e900: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-03-10 21:28:33 -0400: 0x1853e900: Error -8 (Did not receive a response from 0x1853e900.)
    2008-03-10 21:28:33 -0400: katie104852: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-03-10 21:28:33 -0400: katie104852: Error -8 (Did not receive a response from 0x1853e900.)
    Video Conference Error Report:
    Video Conference Support Report:
    4.370563 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    4.469525 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f16) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f5fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x605000 - 0x619fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x629000 - 0x647fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64f000 - 0x6c1fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6ff000 - 0x730fff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x759000 - 0x75cfff com.apple.BezelServicesFW 1.4.711 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x777000 - 0x779fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x7c7000 - 0x7ccfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7db000 - 0x7defff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7e5000 - 0x7ebfff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x1489e000 - 0x1498cfff com.apple.RawCamera.bundle 2.0.2 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1499d000 - 0x149a2fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15aff000 - 0x15b08fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15b12000 - 0x15b15fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x15b1b000 - 0x15b20fff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16282000 - 0x162bdfff com.apple.QuickTimeFireWireDV.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x162ca000 - 0x162f7fff com.apple.QuickTimeIIDCDigitizer 7.4.1 (14) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x16302000 - 0x1634cfff com.apple.QuickTimeUSBVDCDigitizer 2.1.7 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x16373000 - 0x164f5fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16523000 - 0x16862fff com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.26 (5.2.6) /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x1699c000 - 0x169b8fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x17b42000 - 0x17cd0fff com.apple.audio.codecs.Components 1.6.1 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x18459000 - 0x18459fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1845f000 - 0x18466fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x18470000 - 0x18471fff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x184bf000 - 0x184bffff liblangid.dylib /usr/lib/liblangid.dylib
    0x19857000 - 0x1985afff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1a0ee000 - 0x1a10afff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1a11c000 - 0x1a139fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a175000 - 0x1a182fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90135fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90136000 - 0x901c9fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x901ca000 - 0x901cffff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90439000 - 0x90571fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90572000 - 0x90598fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90599000 - 0x905d8fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x905d9000 - 0x9060ffff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x9067d000 - 0x9072dfff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9072e000 - 0x90c01fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90c02000 - 0x90c0ffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90c10000 - 0x90c75fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90c76000 - 0x90c8afff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90c8b000 - 0x90d08fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90d09000 - 0x90d10fff libbsm.dylib /usr/lib/libbsm.dylib
    0x90d11000 - 0x90d11fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90d12000 - 0x90d21fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x90d22000 - 0x90d59fff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d5a000 - 0x90d6bfff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90d6c000 - 0x90dbafff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90dbb000 - 0x90dcafff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90dcb000 - 0x90dcbfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90dcc000 - 0x90de2fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90de3000 - 0x90deefff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90def000 - 0x90eb6fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90eb7000 - 0x90ee6fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90ef1000 - 0x90efcfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90efd000 - 0x91211fff com.apple.QuickTime 7.4.1 (14) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91250000 - 0x91252fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91253000 - 0x91305fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x9130a000 - 0x9130ffff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91310000 - 0x913b7fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x913b8000 - 0x913c4fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x913c5000 - 0x913d5fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913d6000 - 0x913d6fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x913d7000 - 0x91411fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91507000 - 0x91a1dfff com.apple.WebCore 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91a1e000 - 0x91a1efff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91a1f000 - 0x920b8fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x920b9000 - 0x920c1fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920c2000 - 0x920c2fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x920c3000 - 0x92107fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x92108000 - 0x92108fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92109000 - 0x921c4fff com.apple.WebKit 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x921c5000 - 0x92206fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92207000 - 0x92257fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92258000 - 0x92258fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92259000 - 0x9225dfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9225e000 - 0x931e5fff com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x931f4000 - 0x93207fff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x93208000 - 0x93232fff com.apple.CoreMediaPrivate 1.4 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93233000 - 0x9328dfff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9328e000 - 0x932a5fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x932a6000 - 0x932f5fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x932f6000 - 0x933b0fff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x933b1000 - 0x93402fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93403000 - 0x9343cfff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9343d000 - 0x934d0fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x934d1000 - 0x93516fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93517000 - 0x93519fff com.apple.CrashReporterSupport 10.5.2 (157) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9351a000 - 0x93536fff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93537000 - 0x936b5fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x936b6000 - 0x936e3fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x936e4000 - 0x936e8fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x936e9000 - 0x93727fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93728000 - 0x93784fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93785000 - 0x937a9fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x937aa000 - 0x93831fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93832000 - 0x939fdfff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x939fe000 - 0x93a3bfff com.apple.CoreMediaIOServicesPrivate 1.5 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93a3c000 - 0x93a86fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93a87000 - 0x93ab8fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93ab9000 - 0x93b62fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93b63000 - 0x93c64fff com.apple.PubSub 1.0.2 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93c65000 - 0x93ce1fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93ce2000 - 0x93ce2fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93ce3000 - 0x93d3cfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93d3d000 - 0x93d53fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93d54000 - 0x93dcefff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93dcf000 - 0x93deafff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93deb000 - 0x93e08fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93e09000 - 0x93f68fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x93f69000 - 0x93fe8fff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93fe9000 - 0x94075fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94076000 - 0x94873fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94874000 - 0x94a2ffff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94a30000 - 0x94a30fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94a31000 - 0x94afcfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94afd000 - 0x94b1bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94b1c000 - 0x94ba5fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94d42000 - 0x94e21fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x94e57000 - 0x94f7bfff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94f7c000 - 0x95007fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9500e000 - 0x9502cfff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9502d000 - 0x95306fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95307000 - 0x95379fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9537a000 - 0x954b1fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x954b2000 - 0x954b3fff libffi.dylib /usr/lib/libffi.dylib
    0x954b4000 - 0x954b4fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x954b5000 - 0x954c5fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x954c6000 - 0x954f1fff libauto.dylib /usr/lib/libauto.dylib
    0x954f2000 - 0x9551afff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9551b000 - 0x95522fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95523000 - 0x95542fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95543000 - 0x95901fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95902000 - 0x95910fff libz.1.dylib /usr/lib/libz.1.dylib
    0x95911000 - 0x9596efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95ac8000 - 0x95ae0fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95ae1000 - 0x95bc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x95bc3000 - 0x95c3afff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95c3b000 - 0x95d20fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95e33000 - 0x960adfff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x960ae000 - 0x960b5fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x960b6000 - 0x961fbfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96215000 - 0x96247fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96248000 - 0x96658fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96659000 - 0x9667dfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9667e000 - 0x966c0fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x966c1000 - 0x966cafff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x966cb000 - 0x966cbfff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x966fc000 - 0x96a92fff com.apple.QuartzCore 1.5.2 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96a93000 - 0x96a96fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96a97000 - 0x96a9cfff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x96a9d000 - 0x96aa7fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96aa8000 - 0x96db0fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96de2000 - 0x96de4fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96de5000 - 0x96debfff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96ecc000 - 0x96ed3fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x96ed4000 - 0x96ed8fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x96ed9000 - 0x96f65fff com.apple.QTKit 7.4.1 (14) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    thank you!!!!!!!!

    The error you are getting is common when you have a router (wired and wireless) that doesn't work properly with iChat. The problem can be at either end or even both ends of the conversation, due to the equipment that's installed. All internet traffic travels through "ports". There are thousands of ports for specific types of data. Web pages use port 80, mail others, iChat yet others. A firewall is like a honeycomb with some of the holes punched through to let data through, and others blocked with wax. The ports are blocked to protect you from "bad guys" who are trying to get in and take over your machine for their own purposes.
    Home routers come with a service called NAT firewall. It is usually turned on by default and will block all but the most common ports to the Internet (these can be disabled, but it's fairly dangerous to do so). Since the hardware router blocks the ports, it doesn't matter what you set your software firewall to accept. The incoming data doesn't get that far. Some routers will automatically open the proper ports when they are requested by a program like iChat, but many do not open them automatically and have to have the ports manually opened and forwarded to a computer.
    Setting ports and port-forwarding can be a daunting task. You'll either need to find a 'techie' friend who understands how to set up your routers for special services, or get a router that is certified by Apple to work with iChat.
    http://docs.info.apple.com/article.html?artnum=93333 - The list hasn't been updated since July 2007, so there are many more that will work, but no official list. Of course, Apple's own hardware is set up for their programs, but they can be a little pricey. Apple does support their products, and you can get an Employee at an Apple Store to help you set up one of their devices.
    Note: All of my post assumes you have routers that are separate from your modem. If your broadband provider has sold or leased you a modem/router combo unit you will need to get more information (and possibly hardware) to proceed.

  • Two buttons on one form

    i have a form that currently has one (image) submit buttong and a check box. If you try to press the button to take you to a new page BEFORE the check box is ticked it brings up an alert.
    I want to add another button that will send the check box information to a phpMyAdmin SQL DB.
    Here is what i have so far
    FORM:
    <form action="eLease.php?userid=<?php echo $row_Recordset1['userid']; ?>" method="post" name="form2" target="_new" id="form2">
          <div align="right"><span id="sprycheckbox2">
            <span class="body-text">Lease Schedule</span><br />
            <input type="submit" name="button" value="confirm" />
            <input type="image" src="../images/smalldownload.png" width="35" height="35" alt="download" value="submit"/>
            </a>
            <input type="checkbox" name="leaseshedule" id="leaseshedule" />
            <br />
          </span></div>
        </form>
    ERROR MESSAGE:
    <div id="ErrorZone1"><span class="checkboxRequiredMsg"><table width="400" border="1" cellspacing="0" cellpadding="0">
            <tr>
              <td><table width="400" border="0" cellspacing="10" cellpadding="0">
                <tr>
                  <td><strong>Electronic Signature Agreement:</strong><br /></td>
                  </tr>
                <tr>
                  <td>this is an error message</td>
                  </tr>
                <tr>
                  <td><strong>Terms and Conditions</strong></td>
                  </tr>
                <tr>
                  <td>Terms go Here</td>
                  </tr>
                <tr>
                  <td>I have read and understand the statement above</td>
                  </tr>
                <tr>
                  <td>Signed:<img src="signatures/<?php echo $row_Recordset1['TenSig']; ?>" alt=""/></td>
                  </tr>
                <tr>
                  <td>Guarantor Signature:<img src="signatures/<?php echo $row_Recordset1['GuSig']; ?>" alt=""/></td>
                  </tr>
                </table>
    So i want to add another button that when submitted send the checkbox "y" to the DB then sends them back to this page, they can then click the other button and log into the eLease.php page
    thanks in advance

    Sorry, I don't understand the logic of what you're trying to do.
    As far as I can see, you want to make sure that the user has selected the check box before being able to proceed. The check box name isn't sent with the form data if the check box hasn't been selected when the form is submitted.
    Let's say your check box is called "agree". You can test to see whether it has been checked like this:
    if (!isset($_POST['agree'])) {
        // return the user to the original form with an error message
    } else {
        // process the form
    Message was edited by: David_Powers to clarify what happens if check box isn't selected.

  • Send two button in one form

    hi...
    i'm using jsp to design and coding in netbeans...
    my problem is....i have 2 button first button i'm using to searching and another button is to update but this 2 button send the parameter using form like this....
    <form action="<%=request.getContextPath()%>/tbcForeigner.do" method="post" name="search">
    and my searching function success....but i have problem to pass update button.....
    how to send this update button....

    The end result of all that "I'm using Netbeans to write a JSP" process is that you produce HTML. So forget about JSP and Netbeans for a minute and design the HTML you want to output.
    Can't do that? You don't know how to do whatever it is you were trying to ask? Okay, fine. Then it's an HTML problem and this isn't an HTML forum. Go and find one. Ask the question about your HTML.
    Or have you decided how your HTML should look and you can't write a JSP that produces that HTML? Then it's a JSP problem. Notice that this is a "Java Programming" forum. You don't have a Java Programming problem, you have a JSP problem. Scroll down the list of forums for a bit and you'll see the JSP forum.
    And if you are having a problem getting Netbeans to do something, then you should find a Netbeans forum to ask about that.

  • PUSH BUTTON IN FIELD CATALOG - NEED HELP

    Hi all,
    I have a requirement wherein i need to have a push button in the first column of ALV GRID DISPLAY output to be able to select multiple rows. Now am using SELKZ field in field catalog, though it creats a first column, the push button is not available. Is there any field in FIELD CATALOG other than this field which will satisfy my requirement or any other possible way to achieve this functionality.
      PERFORM alv_fieldcat USING :
          't_output' 'SELKZ' ' ' ' ',
    In form, i've written the following piece of code.
      l_fieldcat-tabname      = tabname.
      l_fieldcat-fieldname    = fieldname.
      l_fieldcat-reptext_ddic = coltext.
      l_fieldcat-hotspot      = hotspot.
    Any input in this regard will be valuable to me and highly appreciated.
    Thanks in advance,
    Vaishnavi Varadarajan

    hi here is an example ..
    Button in alv grid cell using REUSE_ALV_GRID_DISPLAY
    regards,
    venkat.

  • Linking flash buttons? not working need help:)

    Hey guys,
    Got a site here - www.fatalwisdom.com - as you can see i want
    the top swf file - with the links in there to work like eg. audio
    button when clicked going to; audio.htm.
    The file won't seem to work though - here is the file :
    www.mastacraft.com/fatalwisdom/top1.fla .
    Thanks to anyone who can help.
    Regards, Patrick

    to use a button you need to use:
    on (release) {
    getURL(www.mastacraft.com/fatalwisdom/audio.htm);
    so the getURL ws good but for a button you need to use the on
    (release) {
    }

  • New to Forms, need help in Installing the Summit Application

    Can someone guide me in installing Summit appl. and a runtime env. configuration. I am using 10g Dev. and 10g DB.
    I have put the complete summit folder (got it from OTN) in C:/ and was successful in importing the summit data from the command line.
    the problems i am facing are:
    *Should i directly point to the summit folder in the c:/ while entering values for forms_path in the registry?
    *next point in the readme file says
    compile the application. The file gen.bat will generate files under microsoft windows. What application should I compile and how?
    Runtime environment configuration
    # Summit Application
    Alias /summit/ "C:\summit/"
    *this has to be added to the HTTPD.CONF file in Apache.
    But i have found this file in my pc at this loc: (C:\DevSuiteHome_1\perl\site\5.6.1\lib\Apache) Is this the same file?
    [summit]
    IE=JInitiator
    archive_jini=f60all_jinit.jar,/summit/RoundedButton.class
    userid=summit/summit@<connect_string>
    form=customers
    pageTitle=Summit
    splashScreen=no
    lookAndFeel=oracle
    separateFrame=false
    width=994
    height=582
    serverapp=/summit/summit_reg
    envFile=summit.env
    the above is to be added to the FORMSWEB.CFG file, which i found. can i just change the connect_string and add it at the bottom of the file that i view in notepad. or do i have to fit it in somewhere in between the existing code in the file.
    PLEASE HELP!!

    The first thing you must realize is that this Demo is very old and was created for a very old Forms version (6.0.x). At least three new releases have come out since this demo was created.
    The documentation for the demo is specific to that old version. Every reference to "60" should be removed. For example a reference to FORMS60_PATH has now been changed to FORMS_PATH. This applies to ALL variables.
    The same applies to file names. For example f60all.jar is now frmall.jar. Same is true for f60all_jinit.jar, which is now frmall_jinit.jar.
    So, as you can see copying the README word for word is going to cause you problems.
    Here is an overview of what you likely need to do based on your last update:
    1. Verify that you successfully imported the database objects related to the demo. Login as summit and see if the tables and data actually exist. If not, this should be corrected first.
    2. Whether you use default.env or summit.env is entirely up to you. If you choose to use default.env, the only thing I can think of that would need to be changed is the FORMS_PATH. Add the path to where your FMX, MMX, and PLX files will be located.
    If you choose to use summit.env, copy the file to ..\forms\server (this is the same directory where you will find default.env). Open this file in a text editor. You will need to change all of the "60" references like I previously mentioned. You will likely also need to change the value of ORACLE_HOME as well as many others. This is why using the existing default.env would probably be easier.
    If you carefully read the contents of summit.env, you should be able to understand what needs to be changed. I'm sure many of the directories noted in the file won't even exist. You need to set them to the equivalent on your system.
    3. If you plan to use a "gen.bat" file to compile the application, you will likely need to open it in a text editor first. Verify that FORMS_PATH, ORACLE_HOME, PATH and all other variables are correctly set.
    4. If you are using Developer Suite there is no Apache, so setting the Alias is a little different. However, as previously mentioned, this is unnecessary anyway IF you copy the demos CLASS and JAR files to the ..\forms\java directory. You will then not use the Alias reference in your ARCHIVE and ARCHIVE_JINI entries. For example simply do this:
    archive_jini=frmall_jinit.jar,RoundedButton.class
    archive=frmall_jinit.jar,RoundedButton.class
    5. As mentioned, your formsweb.cfg entries will look like this and should be at the bottom of the file below the existing entries:
    [summit]
    archive_jini=frmall_jinit.jar,/summit/RoundedButton.class
    userid=summit/summit@ORCL
    form=customers
    pageTitle=Summit
    splashScreen=no
    lookAndFeel=oracle
    separateFrame=false
    width=994
    height=582
    serverApp=summit_reg
    envFile=summit.env
    The reference to serverApp is for access to the .dat file, which I will assume you have in your C:\summit directory. Again, remove the Alias reference and copy the file within the Oracle Home where the original is found. If the demo .dat file is named "Registry.dat", rename the original so you can revert back to it later.
    This file should be stored in:...\forms\java\oracle\forms\registry
    If you really want to create the Alias and follow the instructions as closely as possible, you will find that the Alias should be configured in the following:
    ...\j2ee\DevSuite\application-deployments\forms\formsweb\orion-web.xml
    Use the existing entries as an example. Your entry will look something like this:
    <virtual-directory virtual-path="/summit" real-path="C:\summit" />
    If you are new to all of this, I would recommend that you flip through some of the documentation. Starting with a demo before understanding how the product works is probably not the best approach. Here are some references to useful documentation. References to additional documentation can be found in link on these pages. Be aware that most documentation which was created for Forms 9.0.4 will still apply to 10.1.2.
    Forms 10.1.2 Tech Listing
    http://www.oracle.com/technology/products/forms/techlisting10gR2.html
    Forms 9.0.4 Tech Listing
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    Forms 10.1.2 Online Help (same as Help found in Builder)
    http://www.oracle.com/webapps/online-help/forms/10g/
    Forms 10.1.2 Deployment Guide
    http://download.oracle.com/docs/cd/B19375_07/doc/frs/forms/B14032_03/toc.htm

  • Two ipods - one computer - Need help

    I have had an ipod for a few months and my girlfriend just got one for Christmas. Neither have been registered. Now that she is trying to put songs on her ipod it is uploading all of the songs from mine onto hers. I don't know how to make it so that she has her own library without deleting all of my songs. Can two ipods be used on one computer? What should we do so that we can have two different libraries that won't interfere with the other? Is there a way to login to different itunes accounts on one computer instead of the same account opening through default when accessing itunes/library?

    I have a Nano 2nd gen and recently purchased a 1GB shuffle. Using the link above I tried "method 3" to create a separate library. My problem is that when I clicked the advance button there was no general tab. Do I a newer version of itunes or something?

Maybe you are looking for