Forum Replies Created
-
AuthorReplies
-
As Preston Stephenson stated in your Novell forum post that Novell will investigate the issue.
We will wait to see the results of the investigation.
Regards,
Advansys SupportLooks like Messages.Add() method not working when you provide “GW.MESSAGE.DOCUMENTREFERENCE” as class name.
Good to see your post in Novell Object API forum. Keep us update, if you find any resolution to the post.
Novell docs says “If ClassName is omitted, a document reference (GW.MESSAGE.DOCUMENTREFERENCE) is assumed.”. Based on it, following code should work where class name not provided.
Set MailObjRef = MyAccount.DocumentsFolder.Messages.Add("", DocNew, fgwCurrent)
Hope this helps.
Regards,
Advansys SupportThanks for the explanations.
As you stated, you have used the GroupWise View Designer to create the form and Formativ for the code. Looks like overlapping controls issue relate to the View Designer.
Unfortunately, we don’t have enough exprerience with GroupWise View Designer. Please make sure that GroupWise View Designer is uptodate. Perhaps, review the form in installed version of the GroupWise client.
Regards,
Advansys SupportGreat, thanks for letting us know and glad it was of assistance.
Regards,
Advansys SupportThanks for your post. We will contact you by direct email.
Regards,
Advansys SupportCould you please provide more information. Please send your enquiry to Support (support@advansyscorp.com) so we can contact you directly.
Regards,
Advansys SupportYou can also obtain an instance of the IHTMLDocument interface associated with the given window handle then update inner html.
See IHTMLDocument2 interface for available members: http://msdn.microsoft.com/en-us/library/aa752574%28VS.85%29.aspx
The code below access message body, set bold to some of the words.
dim oList dim oDocument dim x dim text dim innerHtml dim handle ' List of word to modify set oList = utilities.stringlist oList.add("Hello") oList.add("World") oList.add("Regards") set oDocument = nothing ' Get the message handle handle = Utilities.FindWindow("OFMailView", "") ' Get an instance of the IHTMLDocument interface if Utilities.IHTMLDocumentFromViewHandle(handle, oDocument) = 0 then innerHtml = oDocument.body.innerHtml for x = 0 to oList.Count - 1 text = oList.Strings(x) innerHtml = utilities.FastReplace(innerHtml, text, "<b>" & text & "</b>", false) next oDocument.body.innerHtml = innerHtml end if set oList = nothing set oDocument = nothing
Hope this helps.
Regards,
Advansys SupportSee the following post, which shows how to change message body text to bold:
http://www.advansyscorp.com/forums/topic/9061069751/
Regards,
Advansys SupportThis is a low-level error message which can have multiple causes, such as GroupWise data store corruption issues. Please see below some suggestions:
- Upgrade the GroupWise client to latest point release. Please check the list of updates at the following address: http://download.novell.com/patch/finder/
- Are there any folders in the GroupWise archive which contain 4,960 or more items? On occasion we have found that to circumvent ‘strange’ errors like an inaccessible folder, it’s useful to divide a large folder (5,000 or more messages) into several smaller folders (Mailbox-2007, Mailbox-2006, etc.) before running Creator.
- We recommend running GWCheck on the affected account prior to archiving.
- Make sure you are running latest version of the Archive To Go: http://advansyscorp.com/atg-index.htm
- If you want to include native GroupWise archives, please make sure the folders are not ‘Read-only’.
Hope this helps.
Regards,
Advansys Supportquote:
However, if I do this repeatedly, then GroupWise crashes.
We have created a simple applet which shows two form (Main form modal & Help non-modal) and unable to reproduce the behaviour. Can you provide details steps.
Regards,
Advansys SupportThanks for your post. We will review this feature in next release.
Regards,
Advanays SupportThanks for your post.
The behaviour is not relate to Formativ version, its about how you designed the form, controls alignment, anchor, etc.
You should use panel and set its Align to client then add controls into the panel. You can use controls (button, etc) Anchors so when form resize or workstation appearance changes (i.e. font, theme, etc) then your solution form also adjust accordingly.
Regards,
Advanays SupportSorry we can not reproduce the behaviour in-house using GroupWise client 8.0.1 (build date 08/01/2010).
Looks like your text “Writing tools” not misspelled. We have tried “softwore writing tools langoage” (without quote, software & language misspelled) and speller fixed it to “software writing tools language”.
Your configuration shows that you are using 7.0.2 client, we always recommend to use latest point release of the GroupWise client.
Regards,
Advansys SupportWe have received your email and will respond by direct email.
Regards,
Advansys SupportThe current release of Archive To Go 2.0 does not provide a way to password-protect archives. We will review the encryption feature in next release.
In the interim you may be able to find an interim solution using folder-encryption software, eg TrueCrypt. A tool like this may permit you to encrypt the contents of an archive folder before copying to DVD so that a password is required for accessing that folder on the DVD.
Hope this helps.
Regards,
Advansys Support -
AuthorReplies