JIK Advanced Validate Form fix

If you use the Advanced Validate Form behavior from the JavaScript Integration Kit and you set it to not stop on first error you will experience compounding error messages.  Each time the form is resubmitted, the errors will be duplicated a second, then a third time, etc.
The solution is to add this line of code to the end of the FDK_Validate function:
window[theFormName].ValidateForm = false;

By default the validation scope is item. Forms will validate every item during the commit process. There has to be some validation trigger(with raise form_trigger_failure if it fails) for the item, if the form has to stop during validation in the commit. Otherwise it's going to validate according to it's properties and set the item status to valid. Anyone correct me if I am wrong.
Partha

Similar Messages

  • Help with Dreamweaver Validate Form Behavior

    Hello,
    I'm attempting to use Dreamweaver to validate form fields. This would work quite well except for in this case I'm using custom form code which is coming from Salesforce.com. The issue has been that the Salesforce.com web-to-lead form comes with "name" attributes on every form field item. If I change these names to make the validation look nicer, for example from first_name to First Name, then the web to lead form breaks. Is there another way to utilize Dreamweavers form validation by creating by own names for each form element instead of using "name"? The objective is to give the user something that looks good... like:
    First Name is required
    Last Name is required
    And with the Salesforce custom name fields it ends up looking like:
    900000xxxxx213s is required
    or
    last_name is required
    Thanks for any help!

    The name attribute of a form cannot contain spaces. That's why the validation behavior breaks.
    The Dreamweaver Validate Form behavior is rather crude and well past its sell-by date. Use the Spry Validation widgets instead: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WS267C8659-3AEF-4956-8268-E38CA4CAFAD3a .html.

  • Extension fields in Advanced Find Form

    Hi, experts,
         I have four solutions in which I added one extension field to a standard BO.
         Let's say they are S1,S2,S3 and S4 respectively and all are of the same data type.
         I added each of them to the Advanced Find Form of the standard BO's OWL.(From Extensibility Explorer)
        The strange thing is when I enter some data in one extension field (just say S1), other extension fields (S2,S3,S4) are also filled with the   same data from S1.The deleting also have the same behavior.And when I delete one extension field(just say S2), the data in other extension fields (S1,S3,S4) are deleted too.
    Why is this happening?
    How can I control that?
    Thanks in Advance.
    Regards,
    Fred.

    Hi, Fernando.
        Thanks.
         I am sorry I was not quite clear on my question.
         Here is my Use Case.
         Let's say I have 4 solution, sol1, sol2, sol3, sol4.
         I have created an xbo of the same standard BO in each solution.
         My plan is to add one extension field namely ext1 (same name, same data type but different labels though)  to that standard XBO all in sol1,sol2,sol3 and sol4.
         And I have added each extension field to Advanced Find Form of the standard xbo's OWL in all of the four solutions.
        Each extension field is bound to a respective element.  (checked)
        I think my problem is I have unfortunately  given the same name to all the extension fields.
        Please confirm.
    Regards,
    Fred.

  • Validate form server behavior

    I have a problem with my Dreamweaver 8.0.2....I can't get
    validate form from the pop up menu in the server behavior window.
    Where do I get it??
    Help.

    mcmyke wrote:
    > I have a problem with my Dreamweaver 8.0.2....I can't
    get validate form from the pop up menu in the server behavior
    window.
    > Where do I get it??
    > Help.
    There is no validate form server behavior built into
    Dreamweaver. Perhaps you'rr looking for the Validate Form in the
    *Behaviors* (not Server behaviors) panel?
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | Adobe Community Expert

  • Validate form entries: does java support regular expressions?

    i want to validate form entries, does java support regular express like javascript?

    Just recently in 1.4 regex was finally introduced :)
    Take a look at http://developer.java.sun.com/developer/technicalArticles/releases/1.4regex/

  • How to validate form before redirecting?

    Dreamweaver CS3, MacPro, Using default Validate in DWCS3 Behaviors
    Page is here: http://www.generationscrossing.com/runnerValidateTest.php
    I am having trouble getting this page to validate before going to another page.
    I have a Server Behavior of Insert Record where I have the redirect address.
    To start, I don't fill in any of the fields and click the submit button and it takes me to the page specified in the Insert Record setup dialogue.
    Or I can fill in some of the fields and not others and click the submit button and it still takes me to the page specified in the Insert Record setup dialogue.
    Code is attached

    Hi,
    The validate() method can be called for the form by calling:
    Spry.Widget.Form.validate(form).
    Add this line into your method and if validate method returns
    true, the validation pass and you submit the form, otherwise you
    block the submition.
    if (Spry.Widget.Form.validate(form) == true){
    Diana

  • Validate form function not working

    I want to implement a validate form function within my bean.I can add to table no problem but when i am testing and leaving a field out (first name for example),it should redirect to a retry page. but it is throwing a null pointer exception within the validate method.
    here is an example..just the firstName validation
    public boolean validate() {
    boolean allOk=true;
    if (firstName.equals("")) {
    errors.put("firstName","Please enter your first name");
    firstName="";
    allOk=false;
    .....return allOk; if all fields have been entered
    the field is empty so it should return allOk as false,therefore redirecting to retry.jsp
    the controller jsp is as follows
    <jsp:useBean id="registerUser" class="com.football.RegisterBean" scope="request">
    <jsp:setProperty name="registerUser" property="*"/>
    </jsp:useBean>
    <%
    if (registerUser.validate()) {
    %>
    <jsp:forward page="RegisterServlet"/>
    <%
    } else {
    %>
    <jsp:forward page="/register_retry.jsp"/>
    <%
    %>
    i have also tried
    if ("".equals(firstName)) {
    but this will allow the user to be added without first name..any ideas?
    ???

    Try the below code snippet
    public boolean validate() {
    boolean allOk=true;
    if (firstName.equals(" ")) {   //modified here.
    errors.put("firstName","Please enter your first name");
    firstName="";
    allOk=false;
    }

  • Enhancement reqest: Advanced Search form

    I would like to request another form wizard like all the great ones already there. A Advanced Search form wizard.
    Basically a form that asks for a bunch of query items like those found on any Advanced Search form and depending on which ones are non-blank, constructs a dynamic query and populates a SQL query region when the Search button is pressed.
    Thanks

    From what I can tell from each of the examplesthere
    is no option to specify any kind of compoundcriteria
    syntax for a single field, as I pointed out in my
    earlier post, e.g. where id=1 or id=2 and type=6and
    type=7. That kind of thing.Right, but (IMHO) your UI is approaching the problem
    too "literally" i.e. too much in terms of the
    underlying SQL. You are making the user literally
    think in terms of a SQL SELECT statement.I agree to some extent - it clearly looks like a query builder - but the UI provides an abstraction layer so the user doesn't have to worry about typing the underlying syntax correctly.
    And remember, this is a business application - not Google. In my experience users of business applications are pretty demanding when it comes to getting at their data. Not that I want to perpetuate bad designs on anyone. I just want to make sure the user has the tools they need. And they want field level searching.
    >
    P.S. I've already implemented a basic searchfunction
    at the top of each report page that let's the user
    enter a single value that will do an 'OR' againstall
    the fields in the view. It's just that the userRight, thats the way most search functions work. You
    type a keyword and the system does a full-text
    case-insensitive search for that keyword across a
    pre-determined set of columns.
    doesn't really have any control over which fieldsare
    tested against the value.Another way to approach this would be to put up a
    single search text field and list all the columns you
    want to search across as checkboxes. User can select
    the column(s) he wants the keyword to be searched
    in.
    Your example of multiple predicates on the same
    column is a little unusual, but
    where id=6 or id=7Unusual, perhaps..., until you get a request from someone that wants to find all the equipment with serial numbers between XYZ123456 and XYZ2345678. ;>)
    This can be implemented as a multi select list (or N
    separate text fields) where user can select/enter
    each value and you go and build the resulting SQL.I've thought of making the values select lists based on valid entries that exist in the table for a couple of cases where it might be appropriate - but I need to get basic function working first.
    >
    Just some ideas...
    ThanksThanks again for your thoughts. I have an example page on OTN that give the beginnings of my idea here: http://htmldb.oracle.com/pls/otn/f?p=36337:14 It's not fully functional yet but if you click the Search button it will throw the where clause in the text box at the bottom of the page. Let me know what you think if you get a chance.
    Earl

  • Customizing the advanced search form (showing less parameters)

    Hi,
    can I customize the advanced search form in Portal, for
    instance, to hide some parameters like "item attributes"
    or "item types"?
    I've read the thread at http://forums.oracle.com/forums/message.jsp?
    id=562712 where it shows how to write a custom advanced search,
    but that requires some programming efort. are there any easier
    alternative?
    many thanks.

    You could try to cpoy the HTML source of the advanced search
    page, copy it in a HTML-portlet or dynamic page, and remove the
    fields you don't want to show.
    I had succes this way with the search portlet and add_groups
    portlet, didn't try the advanced search page though.
    Ton

  • Struts how can validate form without using validate method.

    Hi
    Is this possible validate a form without using validate form
    if it is possible then
    please tell me how can we validate it
    Thanks
    Surendra

    Make use of validator framework.. this would enable you to do validation both @ client side by javascript under defined validation rules and also enables you to do it @ serverside....
    And if want to create a Dyanamic Form beans which takes care of validations to make use ValidatorForm or DynaValidatorForm class under the pacakage org.apache.struts.validator and create an instance of it with preconfigured validations under structs...
    Make use of the links below which i think are the best tutors for newbies....
    http://www.roseindia.net/struts/struts_validator_framework.shtml
    http://www.oracle.com/technology/oramag/oracle/04-jan/o14dev_struts.html
    http://www.onjava.com/pub/a/onjava/2002/12/11/jakartastruts.html
    Hope might be of some help.. :)
    REGARDS,
    RaHuL

  • Validate form greyed out

    i've just created a working form in DW3 and im trying to validate the form. after i select the form and go to behaviors the validate form is not active.
    please help. thanks

    Thanks a bunch. I had connected to Essbase and not Planning. After reading your response, I created a connection to point to
    http://<server>:8300/HyperionPlanning/SmartView
    and from there on, yes, the Form option was enabled and I could choose the forms.

  • Validate Form fails

    I am using DW MX 2004.
    I have three fields in a "form" that I applied "Validate
    Form." They are
    all text fields. When I applied the "Validate Form", I gave
    each a value of
    "Required" and "Accept anything". If I look at the code, I
    have
    onclick="MM_validateForm('title','','R','pub_date','','R','article','','R');return
    document.MM_returnValue"
    So, all three fields appear as arguments to validate form
    function, as they
    should.
    Now, when I test the code by leaving all three fields blank,
    I only get
    error messages on the last two, pub_date and article. If I
    put data in
    pub_date and article, and submit (leaving title blank), I get
    an error
    message that "Column title cannot be null.", which is
    correct, being
    returned by the failed Insert SQL..
    My question is, why isn't "Validate Form" finding the error
    of there not
    being any data in the title field?
    Thank you...

    Start simple. Follow my directions re:selecting the form tag
    on the QTS.
    Then apply the behavior.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Bruce A. Julseth" <[email protected]>
    wrote in message
    news:[email protected]...
    > It's not on line. It's local. I'm self teaching from the
    Kent, Powers
    > book.
    >
    > Let me try something. I'm building another page with the
    same required
    > parameters. Let me see if I get the correct result with
    this page. If I
    > do, I'll rebuild the page I'm having problems with. I
    just might have
    > "Screwed" up the DW code with some of my modifications.
    >
    > I'll be back when I'm completed the above.
    >
    > Thanks..
    >
    > Bruce
    >
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Post a link to your page, please.
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "Bruce A. Julseth"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>>
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Nope - look at your code. You are applying
    it to the <input> tag -
    >>>>
    >>>> <input name="Submit" type="submit"
    onclick="MM_validateForm
    >>>>
    >>>> To do this right, click in the form, then
    select the <form> tag on the
    >>>> QuickTagSelector, NOW apply the validate
    behavior.
    >>>>
    >>>> --
    >>>> Murray --- ICQ 71997575
    >>>> Adobe Community Expert
    >>>> (If you *MUST* email me, don't LAUGH when
    you do so!)
    >>>> ==================
    >>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>> ==================
    >>>>
    >>>>
    >>>> "Bruce A. Julseth"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>>
    >>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> The validate behavior must be
    applied to the FORM tag (<form>) with
    >>>>>> onSubmit as an event, not to the
    individual fields.
    >>>>>>
    >>>>>> --
    >>>>>> Murray --- ICQ 71997575
    >>>>>> Adobe Community Expert
    >>>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>>> ==================
    >>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>>> ==================
    >>>>>>
    >>>>>>
    >>>>>> "Bruce A. Julseth"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>>I am using DW MX 2004.
    >>>>>>>
    >>>>>>> I have three fields in a "form"
    that I applied "Validate Form."
    >>>>>>> They are all text fields. When I
    applied the "Validate Form", I gave
    >>>>>>> each a value of "Required" and
    "Accept anything". If I look at the
    >>>>>>> code, I have
    >>>>>>>
    >>>>>>>
    >>>>>>>
    onclick="MM_validateForm('title','','R','pub_date','','R','article','','R');return
    >>>>>>> document.MM_returnValue"
    >>>>>>>
    >>>>>>> So, all three fields appear as
    arguments to validate form function,
    >>>>>>> as they should.
    >>>>>>>
    >>>>>>> Now, when I test the code by
    leaving all three fields blank, I only
    >>>>>>> get error messages on the last
    two, pub_date and article. If I put
    >>>>>>> data in pub_date and article,
    and submit (leaving title blank), I
    >>>>>>> get an error message that
    "Column title cannot be null.", which is
    >>>>>>> correct, being returned by the
    failed Insert SQL..
    >>>>>>>
    >>>>>>> My question is, why isn't
    "Validate Form" finding the error of there
    >>>>>>> not being any data in the title
    field?
    >>>>>>>
    >>>>>>> Thank you...
    >>>>>>>
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>> I think I was applying it to the Form
    Object. What I did was:
    >>>>>
    >>>>> In the "Design" view:
    >>>>> Give my "Submit" button the focus..
    >>>>> Click on "Windows" then Behaviors
    (Shift+f4)
    >>>>> under "Tag", Behaviors, click on the +
    sign
    >>>>> From the drop-down list, click on
    "Validate Form."
    >>>>> The "Update Form" dialog appears with
    the 4 text fields I have on
    >>>>> form: title, pub_date, caption, and
    article.
    >>>>> The three I want validated are title,
    pub_date, and article.
    >>>>> I highlight 'text"title"in form
    "addArticle"
    >>>>> I checkmark (Value) "Required" and
    (Accept) Anything.
    >>>>> I repeat this for the other two fields I
    want validated, then click
    >>>>> "OK"
    >>>>> DW places the following line of code in
    my procedure:
    >>>>> <td><input name="Submit"
    type="submit"
    >>>>>
    onclick="MM_validateForm('title','','R','pub_date','','R','article','','R');return
    >>>>> document.MM_returnValue" value="Add
    Article" /></td>
    >>>>>
    >>>>> As you can see, title is on the list of
    parameters. I test my set up
    >>>>> by sending the page ot my browser
    (Firefox) and submitting with no
    >>>>> data entered in any of the text fields.
    An error dialog comes back,
    >>>>> stating that data is required for both
    pub_date and article. title is
    >>>>> not in the list of missing items. I then
    enter data in pub_date and
    >>>>> article, and submit again. This time, as
    it should, my SQL Insert
    >>>>> fails with the "title is missing."
    >>>>>
    >>>>> I'm at a loss why title is not be found
    as missing by the DW validate
    >>>>> routine.
    >>>>>
    >>>>> BTW: I am learning from "PHP Web
    Development with Macromedia
    >>>>> Dreamweaver MX 2004, Chapter 9."
    >>>>>
    >>>>> Thank you..
    >>>>>
    >>>>> Bruce
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>> Thanks. I applied to the form object and now
    have the code:
    >>> <form action="/GardenClub/addarticle.php?"
    method="POST"
    >>> name="addArticle" id="addArticle"
    >>>
    onsubmit="MM_validateForm('title','','R','pub_date','','R','article','','R');return
    >>> document.MM_returnValue">
    >>> Submitting my form with no data still does not
    inform me that "title is
    >>> required" yet "title" is in the parameter
    list.What else might be doing
    >>> wrong?Thanks for the help..Bruce
    >>>
    >>
    >>
    >
    >

  • Validate form function?

    Is there a validate form function built into DW CS3?
    The submit button still submits my form when using
    Spry

    Can you post a link to the page?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "The_FedEx_Guy" <[email protected]> wrote in
    message
    news:[email protected]...
    > This is the form I have the problem with:
    >
    > <form id="form3" name="form3" method="post"
    action="contact_thanks.php">
    > <table width="100%" height="104" border="0"
    > class="style1">
    > <tr>
    > <td width="82" valign="top">Name:<span
    > class="GuidePrice style11
    style4">*</span></td>
    > <td width="409"><label><span
    > id="sprytextfield1">
    > <input type="text" name="name"
    > id="name"
    > />
    > <span class="textfieldRequiredMsg">A
    > value
    > is
    required.</span></span></label></td>
    > </tr>
    > <tr>
    > <td valign="top">Email:<span
    > class="GuidePrice
    > style11 style4">*</span></td>
    > <td><label><span id="sprytextfield2">
    > <input name="email" type="text" id="email"
    > size="50" />
    > <span class="textfieldRequiredMsg">A value
    > is
    > required.</span><span
    class="textfieldInvalidFormatMsg">Invalid
    >
    format.</span></span></label></td>
    > </tr>
    > <tr>
    > <td valign="top">Telephone:<span
    > class="GuidePrice style11
    style4">*</span></td>
    > <td><label><span id="sprytextfield3">
    > <input type="text" name="telno" id="telno"
    > />
    > <span class="textfieldRequiredMsg">A value
    > is
    >
    required.</span></span></label></td>
    > </tr>
    > <tr>
    > <td valign="top">Subject:<span
    > class="GuidePrice style11
    style4">*</span></td>
    > <td><label><span id="sprytextfield4">
    > <input name="subject" type="text"
    > id="subject" size="30" />
    > <span class="textfieldRequiredMsg">A
    > value
    > is
    required.</span></span></label></td>
    > </tr>
    > <tr>
    > <td valign="top">Comments:<span
    > class="GuidePrice style11
    style4">*</span></td>
    > <td><label><span id="sprytextarea1">
    > <textarea name="comments" id="comments"
    > cols="50" rows="8"></textarea>
    > <br /><span
    > class="textareaRequiredMsg">A
    > value is
    required.</span></span></label></td>
    > </tr>
    > <tr>
    > <td valign="top"> </td>
    > <td><label>
    > <input type="submit" name="Submit2"
    > id="Submit2" value="Submit" onClick="return
    checkForm();"/>
    > <input type="reset" name="Reset"
    > id="button"
    > value="Reset" />
    > </label></td>
    > </tr>
    > </table>
    > </form>
    >

  • Validate form field for CE 7.1 SP3

    Hi Experts
    I want to validate the form field and I follow the example of the SimpleError Form sample:
    public void checkMandatory(java.lang.String fieldName) {
    //@@begin checkMandatory()
    IWDMessageManager messageMgr =
    wdComponentAPI.getMessageManager();
    Object attributeValue =
    wdContext.currentContextElement().getAttributeValue(fieldName);
    IWDAttributeInfo attributeInfo =
    wdContext.getNodeInfo().getAttribute(fieldName);
    if (attributeValue instanceof String) {
    if (((String) attributeValue).length() == 0) {
    String fieldLabel =
    wdContext.getNodeInfo().getAttribute(fieldName)
    .getSimpleType().getFieldLabel();
    messageMgr.reportContextAttributeMessage(
    wdContext.currentContextElement(),
    attributeInfo,
    IMessageSimpleErrors.MISSING_INPUT,
    new Object[] { fieldLabel },
    true);
    //@@end
    public void onActionSave(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionSave(ServerEvent)
    this.checkMandatory(IPrivateForm.IContextElement.NAME);
    this.checkDateInPast(IPrivateForm.IContextElement.BIRTHDAY);
    this.checkDesired(IPrivateForm.IContextElement.E_MAIL_ADDRESS);
    wdComponentAPI.getMessageManager().raisePendingException();
    wdComponentAPI.getMessageManager().reportSuccess(
    "The sample form data was successfully saved!");
    However, I realise that some of the methods used in the sample  are already depreciated. Methods such as reportContextAttributeMessage and raisePendingException();
    I am currently using CE7.1 SP3
    Can advise ?
    Thank you.

    Hi,
    Following methods are not depricated.
    reportContextAttributeMessage(IWDAttributePointer[] attributes,  IWDMessage message, Object[] args)
    reportContextAttributeMessage(IWDAttributePointer attribute,
              IWDMessage message, Object[] args)
    Regards
    Ayyapparaj

  • Validate form and then send an email

    Hi there,
    I have pretty much built a form which I can validate how I
    want to. How can I can now send the email. Generally I use php to
    send my emails. Can somebody give me a pointer on how to tie the
    two together?
    regards, Chris

    Hi there,
    I have pretty much built a form which I can validate how I
    want to. How can I can now send the email. Generally I use php to
    send my emails. Can somebody give me a pointer on how to tie the
    two together?
    regards, Chris

Maybe you are looking for

  • HP Deskjet 3050A All-in-One J611 Series - getting exact driver to download

    I need to download a driver for my (per printer label) "HP Deskjet 3050A All-in-One J611 Series" -- but at hp.com, see listed only J611-Series models with postfixed abc letters "a" to "k" ... and one w/o a postfixed abc letter, but that lacks "J611"

  • Gamesprockets for OS X 10.3.9

    I have just bought a Logitech Extreme 3D Pro joystick and have been trying to get it to work with OS X 10.3.9 on my iBook G4. I found GameSprockets 1.7.5 on apple.com but it can only be installed in Classic mode, which my computer can't run. The sugg

  • Smart playlists won't update, remains empty even after weeks

    Before I updated to the new iTunes, my smart playlists worked fine. My current version (11.0.3.) does not seem to add songs to or update any of the playlists I have created since downloading the new version. I have turned my itunes on and off several

  • Adobe Reader XI crashes on PPKLite.api with failure CryptFindLocalizedName.

    When Other language version Adobe reader XI is installed to English version Windows, it crashes on PPKLite.api with failure CryptFindLocalizedName. It doesn't have the check routine which it is null, and it crashes because it calls 'wcslen(NULL)' D:\

  • Could be a fix for Tomcat 6 issue

    Getting Eclipse 3.2, Tomcat 6.0 and JSF 1.2 playing together nicely is a task that is certainly not for the faint of heart. Tomcat 6 seems to have issues at the moment but I'm loathed to push too much of the blame on to it as generally Tomcat has bee