Capture event in Modal form

Hi Guys,
How do we capture the event in "Do you want to save the changes" modal dialog?
I can't see the FormType using debug information.
I am using VB6 and 2004B. Help urgently needed. Thanks.

Hi CK,
That window is a standard message box and if I'm not mistaken the form type is 0 (zero), but this means that all messsage boxes are form type 0 and you have to build something very intelligent in there if you cannot solve the problem in another way.
Hope it helps,
Adele

Similar Messages

  • Modal Form between the Form Events

    I create a modal form which is like the message box but with a textbox in it. What i mean here is, the modal needs to hold the form event while it's adding an Sales Order record.
    I have tried the Modal Form method as shown in SDK Sample 12.ModalForm. However, i found the Sales Order is added before i click any button in the Modal Form.
    So, can anyone give me any advise how to work with it.......
    Thanks a lot~~

    Hi,
    Solution I would try is to catch FormItemEvent, EventType = et_ITEM_PRESSED, ItemUID = "1".
    With this you can catch the OK/Save button. If you use the BeforeAction you can even Cancel (bubbleEvent) adding the record if the user cancels your modal form.

  • Making a Form as Modal Form

    Dear All,
    Please let me know how can I make a form as Modal Form ?
    Regards,
    Noor hussain

    Hi Noor,
    I think there are two possible design.
    The modal form can be mobal for the application or for a parent form.
    If you want an application modal form, you simply need to test all the events coming from a form different from the modal one and interrupts the event coming from the other forms.
    In the ItemEvent Handler you can write:
    If Not (FormUID = "YourModalFormUID") Then
        oModalForm.Select() ' oModalForm contains the reference to your Modal Form
        BubbleEvent = False ' Interrupts the events chain
    End If
    In the code above, if an event comes from a different forms, simply select the modal form and interrups the events chain
    If you would make a form modal for a parent form, you simply need to test if the event comes from the parent form:
    If FormUID = "MyParentFormUID" Then
        oModalForm.Select()
        BubbleEvent = False
    End If
    Hope this helps
    Carmine
    Edited by: Carmine Cairo on Feb 19, 2010 5:20 PM

  • How to create modal Form in SBO 2007

    Is it still no way to create a modal SBO form
    I want to create SBO Form that pause the lines of code from runing until the form is closed
    Modal property of the SBO Form still ready only.
    Sincerely yours
    Riade Asleh

    > Or you can use threading to work.
    Indeed, unless I'm mistaken, one will have to. In a common GUI API, if you open a modal form on the event thread, thereby putting it in WAIT state, another event pump is set up. But that functionality isn't available in the SBO UI API AFAIK.
    To put it differently: if you open a form in an SBO event handler and enter the WAIT state, the whole SBO application won't react anymore.
    So the way to do it is this:
    <ul>
    <li>Create a new Thread and start it. Within that Thread ...</li>
    <li>Create your window. </li>
    <li>Register a FORM_UNLOAD (or FORM_CLOSE -- I don't remember which one is deprecated) listener for that form</li>
    <li>Create a locking Object. A simple <tt>new Object()</tt> will do</li>
    <li>Show the form, and then enter a WAIT state on the lock previously created. In VB, for instance, that would be written:
        SyncLock waitObj
            Monitor.Wait(waitObj)
        End SyncLock
    </li>
    <li>When the FORM_UNLOAD handler is called (hopefully because the form was closed), notify the lock. For instance, VB again:
        SyncLock waitObj
            Monitor.Pulse(waitObj)
        End SyncLock
    </li>
    </ul>
    Mind you you might run into some trouble, as SBO suffers multi-threading somewhat less than gladly in my experience.
    But it might be worth giving it a try -- it's a fairly simple operation, so it might work without too much or indeed any hassle.
    PS: that nobr ain't none of mine

  • Modal Form

    Hi,
    I have created a modal form using the code
    " <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
    $('#ModalForm1').dialog(
    modal : true ,
    autoOpen : false ,
    buttons : {
    Cancel : function() {
    closeForm();
    Add : function() {
    addPerson();
    function openForm()
    $('#ModalForm1').dialog('open');
    function closeForm()
    $('#ModalForm1 input[type="text"]').val('');
    $('#ModalForm1').dialog('close');
    function addPerson()
    var ajaxRequest = new htmldb_Get( null , &APP_ID. ,
    'APPLICATION_PROCESS=addDepartment', 0);
    ajaxRequest.add( 'P7_DEPT_ID', $v('P7_DEPT_ID'));
    ajaxRequest.add( 'P7_DEPT_NAME', $v('P7_DEPT_NAME'));
    ajaxRequest.add( 'P7_DEPT_ISSUE', $v('P7_DEPT_ISSUE'));
    var gReturn = ajaxRequest.get();
    if(gReturn)
    { alert(gReturn) }
    else
    { ajaxRequest = null;
    closeForm();
    doSubmit('SEARCH'); }
    </script>
    Button: Template based button
    action-Redirect to url
    javascript:openForm();
    Here i want to create an another modal form with another button on same page. I tried with the button attributes but it won't work.
    so, how can i create an other modal form????

    Tulasi 1243 wrote:
    but i couldn't find how to use those plugins to create another modal form..As stated in the documentation (http://www.skillbuilders.com/download/download-resource.cfm/instructions.pdf?file=Oracle-Apex/plugins/modal_page//instructions.pdf), you can identify each Modal page with an identifier:
    Modal Page ID
    The Modal Page ID setting is used to associate an identifier, such as "create-customer-page", with the modal page that has been opened. When the modal page closes, this identifier will be passed back with the event object so that the closing of one modal page can be differentiated from another. The value can be accessed from the data object of "this" in a Dynamic Action with: this.data.modalPageId. If not all modal dialogs on a page have a Modal Page ID specified, you will first need to test if the modalPageId exists.
    You should be able to open multiple modal pages.
    Robert
    http://apexjscss.blogspot.com

  • Editing Data in modal form

    I have an mxml for my project, in which I have a DataGrid with a few fields, just enough to locate a desired record.  When I double click on the item in the DataGrid, a modal form pops up, populated with the data in all the fields of the same record.  So far, so good.  However, now when I try to edit any data in any field, I get an error message:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.containers::TabNavigator/keyDownHandler()[E:\dev\gumbo_beta2\frameworks\projects\frame work\src\mx\containers\TabNavigator.as:904]
    I don't have a keyDownHandler on my TabNavigator.
    My project is fairly small and a knowledgable person would probably be able to see my mistake in 10 seconds or less if they reviewed my code.  A zip file with my code is attached.
    If some one could take a look, and post the errorneous line in the reply... then everyone in the forum could benefit.
    I am making progress thanks to the excellent examples and instructions provided at:
    http://sujitreddyg.wordpress.com/flash-builder-4/
    I got a little demo of my own working just like in the instructions.  I had to rebuild my test project from scratch several times.. I think the FB 4 b 1 stuff was interfering with the FB 4 b2 way of doing things. However now, I am trying to build my test project in the way that my real project will work.. and that is... all detail forms will be opened in a modal window, edited, commited and then closed.

    PROBLEM:  MODAL "frmSBJ" FORM crashes when I try to edit the text in a TextInput.  (See exact error text in previous post)
    In the baa_ria.mxml: ------------------------------------------------------
        <fx:Script>
            <![CDATA[
                import components.*;
                import mx.managers.PopUpManager;
                protected function grdSBJs_itemDoubleClickHandler(event:ListEvent):void
                    show_frmSBJ();               
                public function show_frmSBJ():void
                    var pop:frmSBJ = frmSBJ(PopUpManager.createPopUp(this, frmSBJ, true));
                    pop.bAA_SBJ = grdSBJs.selectedItem as BAA_SBJ;
                    PopUpManager.centerPopUp(pop);                                          
    In the "components" folder, frmSBJ.mxml: ---------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
                     xmlns:s="library://ns.adobe.com/flex/spark"
                     xmlns:mx="library://ns.adobe.com/flex/halo"
                     width="600" height="506"
                     xmlns:valueObjects="valueObjects.*"
                     xmlns:baa_data_svc="services.baa_data_svc.*">
        <s:layout>
            <s:BasicLayout/>
        </s:layout>
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.managers.PopUpManager;
                protected function btnDone_clickHandler(event:MouseEvent):void
                    // TODO: Refresh the grdSBJs somehow
                    PopUpManager.removePopUp(this);
                protected function btnCommit_clickHandler(event:MouseEvent):void
                    updt_SBJResult.token = baa_data_svc.updt_SBJ(bAA_SBJ);
            ]]>
        </fx:Script>
        <fx:Declarations>
            <valueObjects:BAA_SBJ id="bAA_SBJ"/>
            <mx:DateFormatter id="dfISO" formatString="YYYY-MM-DD"/>
            <mx:DateFormatter id="tfHMS" formatString="HH:MM:SS"/>
            <s:CallResponder id="updt_SBJResult"/>
            <baa_data_svc:Baa_data_svc id="baa_data_svc" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
        </fx:Declarations>
        <s:Panel x="15" y="9" width="564" height="465" id="pnlMain" title="Subject Name">
            <s:Group x="10" y="377" width="544" height="41" id="grpButtonBar">
                <s:Button x="309" y="10" label="Commit" id="btnCommit" click="btnCommit_clickHandler(event)" />
                <s:Button x="386" y="10" label="Undo" id="btnUndo"/>
                <s:Button x="464" y="10" label="Done" click="btnDone_clickHandler(event)" id="btnDone"/>
            </s:Group>
            <mx:TabNavigator x="6" y="8" width="548" height="361" id="tnvSBJ" creationPolicy="all">
                <s:NavigatorContent label="Properties" width="100%" height="100%" id="nvcProperties">
                    <mx:Form x="126" y="5">
                        <mx:FormItem label="SBJ_NM">
                            <s:TextInput id="sBJ_NMTextInput" text="@{bAA_SBJ.SBJ_NM}"/>
                        </mx:FormItem>
                        <mx:FormItem label="SBJ_DOB">
                            <mx:DateField id="sBJ_DOBDateField" selectedDate="@{bAA_SBJ.SBJ_DOB}"/>
                        </mx:FormItem>
                        <mx:FormItem label="SBJ_ID">
                            <s:TextInput id="sBJ_IDTextInput" text="@{bAA_SBJ.SBJ_ID}"/>
                        </mx:FormItem>
                        <mx:FormItem label="NOTE">
                            <s:TextArea id="nOTETextInput" text="@{bAA_SBJ.NOTE}"/>
                        </mx:FormItem>
                    </mx:Form>
                </s:NavigatorContent>
                <s:NavigatorContent label="Meta-data" width="100%" height="100%" id="nvcMetaData">
                    <mx:Form x="117" y="25">
                        <mx:FormItem label="SRC_SYS_NM">
                            <mx:Text id="sRC_SYS_NMText" text="{bAA_SBJ.SRC_SYS_NM}"/>                       
                        </mx:FormItem>
                        <mx:FormItem label="SRC_SYS_GUID">
                            <mx:Text id="sRC_SYS_GUIDText" text="{bAA_SBJ.SRC_SYS_GUID}"/>
                        </mx:FormItem>
                        <mx:FormItem label="OBJ_GUID">
                            <mx:Text id="oBJ_GUIDText" text="{bAA_SBJ.OBJ_GUID}"/>
                        </mx:FormItem>
                        <mx:FormItem label="CDT">
                            <mx:Text id="cDTText" text="{dfISO.format(bAA_SBJ.CDT)}"/>
                        </mx:FormItem>
                        <mx:FormItem label="CTM">
                            <mx:Text id="cTMText" text="{tfHMS.format(bAA_SBJ.CTM)}"/>
                        </mx:FormItem>
                        <mx:FormItem label="CBY">
                            <mx:Text id="cBYText" text="{bAA_SBJ.CBY}"/>
                        </mx:FormItem>
                        <mx:FormItem label="MDT">
                            <mx:Text id="mDTText" text="{dfISO.format(bAA_SBJ.MDT)}"/>
                        </mx:FormItem>
                        <mx:FormItem label="MTM">
                            <mx:Text id="mTMText" text="{tfHMS.format(bAA_SBJ.MTM)}"/>
                        </mx:FormItem>
                        <mx:FormItem label="MBY">
                            <mx:Text id="mBYText" text="{bAA_SBJ.MBY}"/>
                        </mx:FormItem>
                    </mx:Form>
                </s:NavigatorContent>
            </mx:TabNavigator>
        </s:Panel>       
    </s:Group>
    Thanks for your help pointing out where in this code I am going wrong.

  • Can you send custom events from one form to another?

    I have a compli
    cated application, where I about hundred inp
    uts organized in several input forms. Some of the forms
    require data which has been input in other forms. I have tried to
    dispatch custom events from one form to another, but it dispatches the
    whole form and I only need one or two items.
    Ha anybody else come across such a problem?
    Svend

    One way is to share data in a static singleton

  • Blob column inside a modal form

    How can i display a blob from the database inside a modal form.

    Hi,
    What is your APEX version?
    Have you already created form in modal window? How?
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Manually dispatching a keyboard tab event on a form does not work

    Hi,
    I am trying to solve the following issue:
    I have a form that is sitting on a TitleWindow. This is a popup window. I have a TextInput field. After clicking on the TextInput field when I try to paste something on it, nothing happens the first time and it works i.e. I am able to paste when I do a cntrl V the second time (I am trying to solve this weired behavior). When I use the keyboard to tab to the TextInput field I am able to paste using cntrl V  the first time itself.
    Therefore, I am trying to manually dispatch a tab keyboard event on a form using the following code and this does not work. I have 2 TextInput component on the form and I want the cursor to be on the second TextInput component.
    I have a have a key down handler and I can see that the event that comes in is a tab event, but on the UI the cursor does not position itself correctly.
    myForm.setFocus();
    myForm.dispatchEvent(
    new KeyboardEvent(KeyboardEvent.KEY_UP, true, false, Keyboard.TAB,Keyboard.TAB ))
    Am I missing something?
    Appreciate your help.
    Thanks
    Lilly

    No I am not trying to change the text programmatically. I have added a click event handler and a paste event handler on the textinput. I checked the differences in the properties of event and did not see anything that is different.
    I have a hunch that it has something to do with the fact that this form is sitting on a popup window.

  • WD(ABAP) - Oncheck Event by Interactive Form

    Accessing Adobe Lifecycle Designer through Web Dynpro workplace will provide you with a set of fields in a special library called "Web Dynpro", in which I find some interesting element. Most of them are mentioned in the following place:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/1e/05853ff8ec2c17e10000000a114084/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/1e/05853ff8ec2c17e10000000a114084/frameset.htm</a>
    As I understood, the script within field triggers a Web Dynpro event allowing developer to realize the value check, search help functions in PDF. For example: the "Check Field" button delivers the code:
    app.eval("event.target.SAPCheckFields();");
    In Netweaver developer Studio, an Oncheck event is linked with Interactive Form, you find it under the event property. However I cannot find the same event in Web Dynpro ABAP. Does it mean Web Dynpro ABAP doesn't support the oncheck event of interactive form?
    I have tried to drag and drop a Check Field button on the form. When I click it at runtime, IE returns error message. Looking into ST22, The exception is CX_WDR_ADAPTER_UNKNOWN_EVENT' was raised.
    Does somebody have clue? I appreciated your help on this.

    It's ugly, but it's true:
    At this point in time, Web Dynpro for ABAP has only one Interactive-Forms-specific standard event (compared to the 2 in Java), which is the Submit event. I am hoping that both Web Dynpro worlds will be on the same level in terms of features in the next release.
    Best regards,
    Markus Meisl
    SAP NetWeaver Product Management

  • Urgent !!! - Java script help for events in adobe form

    Hi ,
    We have requirement  where we have 5 buttons on interactive form which will retrive data from R/3 system .
    1) How can i distingish the event of each button  ?
    For Ex : We have 5 buttons namely , GetPlantcode , GetStatus, SubmittpSAP etc..
    We hav only 2 events on adobe form - Submit to SAP and SAPCheckFields.
    Please let me know some alternative by which i can sent some variable to webDynpro which distinguishes them.
    2) How to set a value for the context variable on button click event ?
    Ex : I have a context node ( data node ) bind to adobe interactive adobe component on a webDynpro application. If i want to set Selectindicator ( value attribute in data Node ) a value on a button click , Please let me know the java script how i can do this.
    Happy New Year for all
    Nanda

    Hi ,
    We found one work around for this. It seems to solve our issue for now.
    Set a text field on adobe and try to set it with some value in each button click. We can get retrived that value in webdypro application through context bind value node to text field.
    Using the value in the value node we have applied different logic in same event submit to SAP.
    Nanda

  • IDS Sensor 4.1 doesn't capture events.

    My IDS Sensor 4.1 stops capturing events after some time. I don't know if maybe it is because there are a lot of VLANs in SPAN and the IDS doesn't support all this traffic. Am i wrong?
    Here is the show ver output:>
    # sh ver
    Application Partition:
    Cisco Systems Intrusion Detection Sensor, Version 4.1(4)S174
    OS Version 2.4.18-5-phoenix
    Platform: WS-SVC-IDSM2-BUN
    Sensor up-time is 20:49.
    Using 337403904 out of 1979682816 bytes of available memory (17% usage)
    Using 2.0G out of 17G bytes of available disk space (13% usage)
    MainApp 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    AnalysisEngine 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    Authentication 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    Logger 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    NetworkAccess 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    TransactionSource 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    WebServer 2005_Feb_15_10.32 (Eng4g) 2005-02-15T10:35:34-0600 Running
    CLI 2004_Apr_15_15.03 (Release) 2004-04-15T15:11:59-0500
    Upgrade History:
    * IDS-sig-4.1-4-S172 08:51:06 UTC Wed Jun 01 2005
    IDS-sig-4.1-4-S174.rpm.pkg 15:13:12 UTC Wed Jun 08 2005
    Maintenance Partition Version 2.1(1)
    And here is the "sh event" output:
    # sh event
    evError: eventId=1099377235773324837 severity=warning
    originator:
    hostId: CISCO-IDS
    appName: sensorApp
    appInstanceId: 1206
    time: 2005/06/10 08:43:21 2005/06/10 10:43:21 GMT
    errorMessage: name=errWarning Producer appears to be out of superblocks...consider configuring TCPReassemblyMode to loose FreeBlocks: 2155
    evError: eventId=1099377235773324838 severity=warning
    originator:
    hostId: CISCO-IDS
    appName: sensorApp
    appInstanceId: 1206
    time: 2005/06/10 08:43:23 2005/06/10 10:43:23 GMT
    errorMessage: name=errWarning Producer appears to be out of superblocks...consider configuring TCPReassemblyMode to loose FreeBlocks: 2155
    But i have already configured TCP Reassembly Mode to 'loose' and it does the same: after some time, it logs a few events and starts logging this event, but the Security Monitor stops showing me any Alarm. What can I do to solve this?
    Thank you very much.

    When the IDSM2 starts crashing (i mean, logging only this event), i clear the IDSM2 interface counters and i realize that no packet are processed and the "missed packet percentage" grows and grows.
    That means after this crashing it stops processing packets and loses every traffic it receives. The question is why? And how can i solve this?
    Thanks everybody.

  • Jquery modal form

    Hello,
    Based on this thread Re: Implement jQuery modal form I have created my jquery modal sample.
    It opens correctly when I select 'Create' or 'Edit' but does not update the value into the database table.
    Can one help me please?
    Thanks,
    Bhavin

    Hi,
    Have you created onDemand process to update the record in the database.
    Eg. make the Create code of the button similar to below
      'Create : function(){
          addRecord();
      } The create function addRecord()
    function addRecord()
       var ajaxRequest = new htmldb_Get( null , &APP_ID. , 'APPLICATION_PROCESS=myApplicationProcess' , 0);
       ajaxRequest.addParam( 'x01' , $('P1_ITEM1');
       ajaxRequest.addParam( 'x01' , $('P1_ITEM2');
       ajaxRequest.addParam( 'x01' , $('P1_ITEM3');
       ajaxResult = ajaxRequest.get();
    }Now create an ondemand process.. go to shared component .. click on application process and in process point select on demand the last option. now in the source enter the code to insert the record..
    declare
      item1 varchar2(100);
      item2 varchar2(100);
      item3 varchar2(100);
    begin
        item1 := wwv_flow.g_x01;
        item2 := wwv_flow.g_x02;
        item3 := wwv_flow.g_x03;
        insert into myTable values( item1 , item2 , item3);
        htp.prn('record successfully added');
    EXCEPTION
       when other
       htp.prn('Error adding record');
    end;Here is an example : http://apex.oracle.com/pls/apex/f?p=12060:3
    Regards,
    Shijesh

  • JQuery modal form - Open another page

    Hi ,
    I have implemented a Jquery modal form in my application.
    I have a region and in the header I have the following code :
    <div id="transaction" title="Update transaction details" > . This is basically a form region and has around 35 items.
    I call this through the Jquery function
    $("transaction").dialog('open'); This works well for me.
    Now I want to move these items to a different page.
    How can I call this page as a modal dialog form ?
    I would like to do :
    $(NEW_PAGE).dialog('open') // NEW PAGE can be an URL to the new page ?
    How I can achieve this functionality ?
    Thanks,
    Dippy

    create an html no template region:
    add a html frame into source
    <frame id ="eventreg" src="f?p=&APP_ID.:your application id:&APP_SESSION.::NO:your page id:your parametere:&your parameter value." height="100%" width="100%" frameborder="0"></iframe>
    region header section
    <div id="yourdivid">
    region footer section
    </div>
    page header add the javascript
    $(document).ready(function(){
    $("#eventRegUpd").dialog({bgiframe: true,
                               width: 775,
                                     height: 525, 
                                     autoOpen: false, 
                                     modal: true                                 });
    hope this will help you
    regards

  • Key events in a form

    Hello!
    Maybe I'm missing it, but how can one catch key events on a form?

    One way is to create a CustomItem and add this method:
    protected void keyPressed(int key) {
        System.out.println("Key pressed: "+key);
    }This will print the value of the key pressed when the CustomItem is focused.

Maybe you are looking for

  • Trying to bypass pop-up blockers on a flash site

    Trying to bypass pop-up blockers on a flash site. Nothing malicious, just going from a Flash interface to html so I can write to a cookie. If I try to load the page in the same window, then when you go back to the flash you are starting from the begi

  • Itunes freezes on the last step when i try to sync my iphone. There is no error message.

    Every time I try to sync my phone itunes freezes on step 6 when its copying the new info to my phone.I have tried deleting and redownloading itunes and I tried to restore my phone but it keeps telling me the session has timed out. I am in the process

  • XDB annotations on complex XML Schema

    I am currently testing this in 11gr2 Express, while I wait for our DBA to upgrade our main AIX dev instance to 11gr2 enterprise edition. I have a fairly complex xmlschema, provided by the IPTC and trying to annotate it to override some of the default

  • Internal sound system issue

    So, my iBook is about 2 years old, and has been well used (it comes with me almost everywhere). However, recently, the sound system has been acting funny. Only one of the speakers works, and the volume level varies randomly. Also, it's only sending s

  • Connecting to USB printer on Extreme from Windows XP - what worked for me.

    See this post which I found here in the discussions but somewhat buried: : http://www.ifelix.co.uk/tech/1004.html The key difference in the above to what is in the Apple Support listing is that one must insure that the protocol for the port setting i