Groupwise 2012 Spell Checker

I have a user who is using Groupwise 2012 and when she composes a new message the Spell Check button stays greyed out. She has her settings set to: Tools/Options/Environment/General. "Check spelling as your type" and "Check spelling before send" are checked. I couldn't find any article related to this issue for this version. Any thoughts?

In article <[email protected]>, Fishindude64
wrote:
> The user had uninstalled, run Cleanit, and then reinstalled the GW
> client. Initially for the first few days the spellchecker worked but
> now it is greyed out again. Any more thoughts?
>
That sort of behaviour would have me running a full cleaning of temp
files and a defrag. Sometimes a funky temp file gets stuck that
interferes with a program, and the defrag affects the timings of things
enough to clear a number of timeout.s
Andy of
KonecnyConsulting.ca in Toronto
Knowledge Partner
http://forums.novell.com/member.php?userid=75037
If you find a post helpful and are logged in the Web interface, please
show your appreciation by clicking on the star below. Thanks!

Similar Messages

  • Internet Explorer 11 on 2012 R2 as RemoteApp - buggy spell checker

    Hi all.
    Please read carefully if you are willing to reproduce this problem.
    On Server 2012 R2, I can start a full RDP session, start IE and spell checking works without Problems. I can Switch between languages (english and german), all is good.
    However, If I start Internet Explorer as a remoteApp, which is the way we want to use it, I cannot Switch between languages. Instead, when I rightclick a reddish underlined (incorrectly spelled) english word, and try to set the spell checker to english,
    the remote language chooser starts, but using it has no effect at all because I cannot save the changes. The remoteApp still only offers german as correction language.
    This was reproducible on a perfectly clean test System as well. This used to work on remoteApp-IE11 on Server 2008 R2, by the way.
    ...The results? See for yourself: in this text, auto-correction has capitalized several words against my will... :(

    Hi,
    Thank you for posting in Windows Server Forum.
    Please try to download and install Spelling dictionaries for Internet Explorer 11 and check the result.
    Spelling dictionaries for Internet Explorer 11 Release Preview
    http://www.microsoft.com/en-us/download/details.aspx?id=40289
    Hope it helps!
    Thanks,
    Dharmesh

  • 64-bit Spell checker in OPPM v9-Sp1 works, but need Custom Dictionary

    My client adopted Oracle Primavera Portfolio Management (formerly ProSight) -- which is NOT P6, a couple of years ago. It entered production with v.8.0 which had a spell-checker included but which does not work with the approved 64-bit O/S (ie: Windows Server 64-bit). After being disappointed with the v.9.0 release also not supporting 64-bit O/S, the recently released v.9.0-Sp1 finally does. Good news!
    I have the instructions (“Primavera Portfolio Management 8.0 Customizing the Spelling Checker.pdf”) for adding a custom dictionary to the system, but cannot find any information on doing this for OPPM v.9.0-Sp1.
    Does anyone know if the same instructions still work, or where I can get new instructions for adding a custom dictionary (to avoid having the users need to add many new terms, including their own misspelled ones)?
    Thanx in advance.
    Rob
    Edited by: user11049393 on Jul 12, 2012 11:07 AM

    Hi Sachin:
    Actually, after my message yesterday, I managed to find the document, buried in with the OPPM technical docs. Looks identical to the OPPM v.8 version. Thanx for your help.
    Now that I have poked around a little more, I realized that I haven't seen anything about how to EDIT the dictionary files once created. How does one clean them up of accidentally (or unintentionally) added mis-spelled words? Every other application I've ever used with a spell checker has that function somewhere, but I can't see it in OPPM.
    Any info on this issue? Thanx in advance.
    Rob

  • Groupwise 2012 SP2 and Office 2010 integration

    I have recently virtualized Groupwise 2012 and all seems to work well, Messenger launches on startup and it integrates with other applications etc but the only problem I have is when I open an Office 2010 document I get the following message popping up:
    Please wait while Windows configures Microsoft Office Standard 2010
    Gathering Required Information
    This is in a MSI/Windows Installer box, I can only imagine that its installing some kind of user settings but I have scoured the internet and imported all the reg keys etc that I can find. This also happens everytime a document is launched, if it happened once a session I could maybe understand.
    Has anyone else experienced this issue with Groupwise and Office?
    Environment is ZAV 10 & Windows 7 x64
    Thanks
    Rob

    robertleishman,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Spell checker Functionality to be Implemented in a Oracle Ebiz Custom form

    Hi,
    I have tried implementing the Spell checker functionality in one of our Custom form,I used the OLE2 Built in Package in forms 6i to invoke the Spell checker functionality in Microsoft word but i am getting an error,Could anyone please help me in implementing the functionality?
    I used the following procedure to Implement the spell checker functionality in Forms 6i and registered the same in Oracle Applications 11i,
    PROCEDURE spell_check (item_name IN VARCHAR2)
    IS
    my_application   ole2.obj_type;
    my_documents     ole2.obj_type;
    my_document      ole2.obj_type;
    my_selection     ole2.obj_type;
    get_spell        ole2.obj_type;
    my_spell         ole2.obj_type;
    args             ole2.list_type;
    spell_checked    VARCHAR2 (4000);
    orig_text        VARCHAR2 (4000);
    BEGIN
    orig_text := NAME_IN (item_name);
    my_application := ole2.create_obj ('WORD.APPLICATION');
    ole2.set_property (my_application, 'VISIBLE', FALSE);
    my_documents := ole2.get_obj_property (my_application, 'DOCUMENTS');
    my_document := ole2.invoke_obj (my_documents, 'ADD');
    my_selection := ole2.get_obj_property (my_application, 'SELECTION');
    ole2.set_property (my_selection, 'TEXT', orig_text);
    get_spell :=ole2.get_obj_property (my_application, 'ACTIVEDOCUMENT');
    ole2.invoke (get_spell, 'CHECKSPELLING');
    ole2.invoke (my_selection, 'WholeStory');
    ole2.invoke (my_selection, 'Copy');
    spell_checked := ole2.get_char_property (my_selection, 'TEXT');
    spell_checked :=SUBSTR (REPLACE (spell_checked, CHR (13), CHR (10)),1,LENGTH (spell_checked));
    COPY (spell_checked, item_name);
    args := ole2.create_arglist;
    ole2.add_arg (args, 0);
    ole2.invoke (my_document, 'CLOSE', args);
    ole2.destroy_arglist (args);
    ole2.RELEASE_OBJ (my_selection);
    ole2.RELEASE_OBJ (get_spell);
    ole2.RELEASE_OBJ (my_document);
    ole2.RELEASE_OBJ (my_documents);
    ole2.invoke (my_application, 'QUIT');
    ole2.RELEASE_OBJ (my_application);
    END;
    I am getting the following error,
    *305501:non-ORACLE exception*
    I get this error exactly after the following line of the procedure,
    my_application := ole2.create_obj ('WORD.APPLICATION');
    This Spell check functionality works fine when implemented in a standalone form(When a form is ran from the Form Builder),Facing issue only when it is registered in the Oracle applications 11i.
    I searched various Forums,But i unable to find any solution,Expecting your help on the same asap.
    Thanks,
    Venkat
    Edited by: 946005 on Jul 12, 2012 3:47 AM

    Hi Raja,
    Thanks for the Reply..
    Thanks a lot for your quick and efficient responses.
    But Iam unable to figure out how to implement this auto save functionality in this BSP Applicaition. If anyone has worked on this BSP Application <b>HAP_DOCUMENT</b>, can you please tell me how to do this auto save functionality. Is it possible that when I give this popup to save using java script and when the User clicks on OK, can I get the return code for this and use it to trigger the auto save functionality? And where exactly do I have to code this. Because the code here is bit confusing and the pages are called dynamically, even Iam unable to figure out the Button Id. Can anyone please help me out on this. This is a very urgent requirement.
    As specified by you, I have used this code to give the popup.
    <script type="text/javascript">
    function alertUser()
    alert('Please Save the changes by clicking Save button');
    window.setInterval("alertUser()",300000);
    </script>
    Can I use the same code for save also, like this:
    <script type="text/javascript">
    function autosave()
    htmlbSL(this,2,'SAVE:SAVE');
    window.setInterval("autosave()",300000);
    </script>
    I was trying with this but it is not working.
    Regards,
    Raju
    Message was edited by:
            Narayana Raju Sampathirao

  • Can pages spell check in Spanish?

    My daughter is doing a paper for her Spanish class, and would like to spell check the document, Does Pages have the capability to spell check in languages other than English?
    Thanks for any and all helpful info.

    Aha, so that's the reason you're going after me.  You've decided that what I posted today has zero to do with a poster who posted years ago, so I need to have my hand slapped.
    Can I point out that the title of this thread is "can pages spell check in Spanish?"  The title didn't limit the question to one particular version.
    Do you not realize that for everyone who writes a post about their problem there are many other people who simply search the archives to get their problem addressed? Instead of posting a brand new question they search the archives and solve their own problems without ever being detected.  The lurkers as they are often called.
    Take me for example, I was searching this very issue today, came across this very post, and the solution you offered back in January of 2012 didn't work for me. So, I poked around in Pages until I found the current solution to my current version of Pages. And, I added it to the discussion for the sake of others like me who might find the January 2012 solution not workable for them either. So, they wouldn't have to poke around and work it out for themselves.
    I hope this is not how you treat everyone who contributes to the knowledge base.  Try to be a little patient if you will with the ones of us who don't hang around here day in and day out. While we may not know your rules for the sandbox, we're just trying to be helpful. No need to come after us with your guns blazing.

  • Spell Check not working with the preset dictionary

    My CS 6 InDesign on Mac does not make the spell check with the german dictionary and shows every word as unknown or wrong.
    In Indesign Version 5.5 and 4 i don't have the problem. What can i do to solve this problem. There seems to be no dictionary in german for cs6 or it has no content.
    Thanks for your help.
    Chris-Henning

    Don't know if this helps
    http://blogs.adobe.com/vikrant/2012/05/indesign-cs6-hunspell-dictionaries/
    http://books.google.ie/books?id=wdOUIDlqqkUC&pg=PA83&lpg=PA83&dq=indesign+german+dictionar y&source=bl&ots=1fRCN3f1Mg&sig=_fzDc4wGvtub-syeHC2Z85rNHQE&hl=en&sa=X&ei=7rF3Us2YLpO0hAeUo YCIDQ&ved=0CGQQ6AEwBQ#v=onepage&q=indesign%20german%20dictionary&f=false

  • Groupwise 2012 stops sending transferring to Gwava 3rd Send

    I had issues with Groupwise 2012 orginally that the gwia would come up "dead", so what I did was setup a cron job to down groupwise and start it up at 6:30 am and at 6:45 to do the same with Gwava 6. The email works fine for a couple days, then it stops transferring the emails from the gwia/send directory to the gwia/3rd/send. I have to restart the gwia so it will start sending again. This really has been annoying and I have had to be checking up on the gwia every day... The groupwise 2012 is on a SLES 11 SP1 GM and installed on a new server..

    Setup the cron job for both gwia and gwava to reload at 6:30 a couple months ago, but till have the issue. Since we made some changes in gwava we are waiting to see, looks like it might of been the gwava..
    Originally Posted by dzanre
    crobison wrote:
    > I have to restart the
    > gwia so it will start sending again. This really has been annoying and I have
    > had to be checking up on the gwia every day...
    In the meantime, while a solution is being searched for, you could simply enable
    a cron job to restart the GWIA daily, every 12 hours, whatever you think it
    needs to keep things going.
    Danita
    Novell Knowledge Partner
    Time to upgrade to GW 2012!
    http://www.caledonia.net/upgrade
    http://www.facebook.com/caledonia.net

  • "Spell check failed: undefined". in GW8 Webaccess failed

    Hi
    When reply to some " Not All" incomming mails in GW8 wbacsess i got this error message: "Spell check failed: undefined".
    And i am not able to send the answer, i have to go to option and remove the cross for Check spelling before send .

    This one works.
    Originally Posted by mbraden
    Yeah, I get the same thing,
    10:53:55, <PROVIDER>, -, ERROR, -, Missing configuration for Provider Speller. Add an entry for Provider.Speller.class
    I am going to turn on diagnostic logging and see if it gives more info.
    I was looking for an option to turn this off automatically. But couldn't find it.
    Basically, if you have the spell check turned on and you attempt to reply, you get the Highlight Color, Resume Editing, and Finish and Send options below the subject, but Finish and Edit just circles back to spell check, and you can't send the mail.
    I have noticed that there is no way to pick the default language in the spell check options, so I assume it can't find the dictionaries, or they are not there.
    I did check the novell\groupwise\webacc directory and there is a dictionary directory there.
    I will do another install, of just copying the files over, and see if that helps. Maybe something didn't copy the first time.
    But, does anyone know what the default directory structure should be and does someone have a webacc.cfg file with the correct setting?
    Thanks
    Mike

  • Groupwise 2012 webaccess Calendar

    Hi
    I am running Groupwise 2012
    One of my users gets this error when opening their calendar in Webaccess
    (D101) User not found on post office
    In the webaccess log this is the error message
    8:50:19, <SOAP>, -, INFO, "user" , Check Calendar
    8:50:19, <SOAP>, -, INFO, "user" , Item count - 38
    8:50:19, <SOAP>, -, INFO, "user" , [53505] User not on post office
    Is there anyone who knows how to resolve this issue
    Cliff

    In article <[email protected]>,
    Cmitchell7906 wrote:
    > Thank you for the advice , I have run the Analyze and fix on the user
    > and that sorted it out.
    > I have changed our checks to run like you suggested .
    >
    Regular maintenance helps in so many ways, not just the oil changes in
    cars Glad to be of help, wins like this are why some of us haunt
    these forums.
    Here is the full process I've been running at my clients for years and
    has helped keep those systems running smoothly
    http://www.konecnyad.ca/andyk/gwmnt5x.htm
    Just remember to check the results occasionally as there are some
    things that the logs reveal that the processing didn't really fix.
    Andy of
    KonecnyConsulting.ca in Toronto
    Knowledge Partner
    http://forums.novell.com/member.php/75037-konecnya
    If you find a post helpful and are logged in the Web interface, please
    show your appreciation by clicking on the star below. Thanks!

  • GroupWise 2012 SP2 - silent install - Reboot force?!

    Hi, I was asked to create a silent deployment for GroupWise 2012 SP2 for our ZENworks. So I followed the steps that I found here: Novell GroupWise 2012 Deployed Using ZCM 11 SP1 Part 1 - YouTube. My bundle do install silently GroupWise 2012 SP2 but one of the requirements force a reboot of the computer the first time that the bundle is launch. And I did make sure to configure everything to not reboot during the installation. After checking a few log files I found that it's the vcruntimes.msi that forces the reboot. So I tried to install it manually before launching my bundle but I still get a reboot. So is there any way to bypass this?
    Thanks in advance for the help!

    GuillaumeBDEB,
    There are several ways to get rid of the reboot.
    One way is to open the vcruntimes.msi with orca (or with another msi editor). When you look at the property table you see a property RebootYesNo with a value Yes. Set this to No.
    Another way is to edit the install.bat. If you followed the youtube demo which you stated in your post, you used an install.bat. In there is an entry (set GW_OPTS_VCRUNTIMES=/qn) that basically says to msiexec (which is the proces that installes msi's) to do a quiet install with no gui. Add option /noreboot to get rid of it...
    Hope this helps!

  • Spell checker  is changing "n't" to "'t"

    Any thoughts on why my spell checker in Pages is changing all my n't to 't?  It just started to do this recently.  I can't figure out why it would be doing that.

    I took care to write "is supposed".
    What is sure is that about three months ago, Apple hired an engineer appointed to work on the next iWork.
    But, maybe I'm too optimistic.
    I assumed that we would get iWork '10 then I assumed that we would get iWork '11.
    As nothing appeared in january 2011, I assumed that we would get iWork '12 when Lion would be introduced.
    In fact, as you know, we just got iWork 9.1.
    This late one isn't iCloud aware and, as I wrote several time, from my point of view, build an iCloud aware iWork require a deeply if not a completely redesigned set of applications.
    If the new version isn’t ready for january 2012, we will have to wait until july 2012 without an iCloud aware package. In such case, I guess that many teeth would grind.
    Yvan KOENIG (VALLAURIS, France) lundi 26 décembre 2011 12:03:51
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • No spell check on Messages App?

    How do I get Messages on OS X to auto complete and spell check like iMessage on iOS?

    Hi,
    Thanks for the Points.
    7:13 PM      Friday; September 14, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • [solved] Hebrew spell checker as dependency for enchant?

    Hi, on a fresh installation I noticed that the only dictionary Evolution shows is for Hebrew.
    $ pacman -Qs hebrew
    local/hspell 1.1-2
    Hebrew spell-checker
    I then tried to remove this but pacman says enchant needs it which is needed by a lot of packages:
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gedit: requires enchant
    :: gtkhtml4: requires enchant
    :: kdelibs: requires enchant
    :: libwebkit3: requires enchant
    I just ask myself why is a dictionary a depemdency for such a package?
    Last edited by thms (2012-03-28 07:16:28)

    To fix the problem of the Hebrew dictionary being the only one Evolution sees, you need to install any other dictionary. Typically you would want packages like aspell-[LANGUAGE]
    Also regarding why enchant actually depends on hspell: http://projects.archlinux.org/svntogit/ … dcdb8dc519

  • Better Spell Checker?

    Not sure if this will be addressed in the "new SDN" (whenever it's coming), but is it possible to get a better Spell Checker on SDN? For example, I typed 'adressed' and the suggestions did not even include the correct spelling ('harnessed' - seriously?), which is not so far off. MS Word for the same typo gives just one suggestion - the correct one ('addressed').
    And would it be possible to add at least some commonly used SAP terms / abbreviations? 'ABAP' is not a typo and by SDN I don't mean SUDAN.
    Edited by: Jelena Perfiljeva on Feb 15, 2012 3:54 PM

    I typed in ABAP  and pressed the spell checker. It caught ABAP  as an error and suggested ABAP  (ABAP with a space after it)! I replaced with the spell checker version of ABAP  and pressed spell checker again. It still caught ABAP .
    And if I type abap, I really don't see how I could possibly mean labia
    Rob
    Edited by: Rob Burbank on Feb 15, 2012 4:25 PM

Maybe you are looking for