Forum Replies Created
-
AuthorReplies
-
Thanks for sharing the information.
Just to confirm, are you referring WMS as “Windows Messaging System”? In case it help others, could you please let us know your Operating System (i.e. XP, etc) and Outlook version (i.e. 2003, 2007).
Thanks,
Advansys Support[This message was edited by Support 3 on November 24, 2009 at 08:12 PM.]
Our engineers confirmed the behaviour, we also noticed few other events also not fire. We are not sure what cause this events not to fire, potentially a low level component integration.
Given OnProgressChange events work, you can use the following workaround to determine page loaded successfully.
Note:
– Utilities.IHTMLDocumentFromViewHandle: See Formativ Language Guide for more information. This method return an instance of the IHTMLDocument2 interface obtained from the window.
– IHTMLDocument2 : http://msdn.microsoft.com/en-us/library/aa752574(VS.85).aspx
– Debugging Applet: http://www.advansyscorp.com/forums/topic/9151084651/dim gURLPrecossed Sub Main(Client, GWEvent) gURLPrecossed = false Maindlg.embeddedWB.navigate("www.advansyscorp.com") Maindlg.ShowModal End Sub Sub embeddedWBProgressChange(Sender, Progress, ProgressMax) utilities.trace("-> embeddedWBProgressChange gURLPrecossed: " & gURLPrecossed) utilities.doevents ' Event can fired more then once, we will skip if gURLPrecossed global variable ' is TRUE. Set gURLPrecossed to FALSE on loading page (i.e. Navigate() method). if (not gURLPrecossed) then ' Skip if engaged in a navigation or downloading operation. if (Maindlg.embeddedWB.Busy) then utilities.trace("-> embeddedWBProgressChange embeddedWB.Busy") exit sub end if dim oDocument if Utilities.IHTMLDocumentFromViewHandle(Maindlg.Handle, oDocument) = 0 then utilities.trace("-> embeddedWBProgressChange oDodument.title: " & oDocument.title) if ((Instr(1, oDocument.title, "http 404 not found", vbTextCompare) > 0) or (Instr(1, oDocument.title, "cannot find server", vbTextCompare) > 0)) then utilities.trace("-> embeddedWBProgressChange 'Page not found'") else utilities.trace("-> embeddedWBProgressChange Page loaded") end if gURLPrecossed = true else utilities.trace("-> embeddedWBProgressChange 'No handle'") end if set oDocument = nothing end if utilities.trace("<- embeddedWBProgressChange") End Sub
Hope this helps.
Regards,
Advansys SupportWebBrowser.Visible property will not hide/show the control, see MSDN documentation below:
quote:
Visible Property:
Sets or gets a value that indicates whether the object is visible or hidden.Remarks:
When the Windows Internet Explorer application is first created, it is hidden. It becomes visible after the Navigate method or the GoSearch method is used.This method only applies when you are automating Internet Explorer. You co-create an instance of Internet Explorer, and then set this method to TRUE to show the instance.
The WebBrowser object saves the value of this property, but otherwise ignores it.
You can add a Panel control from “Form Designer” – Standard/Enhanced tab then add EmbeddedWB control on top of the panel. Finally, hide/show panel control.
Maindlg.panel.visible = false
Regards,
Advansys SupportIt may be possible to make THTMLEditorEx not editable, however a quick scan unable to locate any properties: http://msdn.microsoft.com/en-us/library/aa752085(VS.85).aspx
Another option is to use EmbeddedWB control from “Form Designer” – Additional tab.
MainForm.wbPreview.Navigate("c:temptext.htm")
Scrollbar appear to works in both of these controls.
Regards,
Advansys SupportWe have reported this issue and Novell created Bug 554676 “Garbarge chars in reply delimeter when using reply method”. Considering it works in GroupWise 8, Novell not confident that it will get cycles before GroupWise 7 ends development support.
Regards,
Advansys Supportquote:
the soft PersonalOutlookMigration (V 2.0.3) works with new Office 2007?
Personal Outlook Migration works with Outlook 2007. Our internal record indicate we have version 2.0.6 available, you can download latest version from here: http://advansyscorp.com/formativ_personal_outlook_migration.htm
quote:
The fist contact is aaa but abc (is name of the societe in Outlook 2007). And GroupWise translat as “Organization” Then 2 elements instead one.
Unfortunately, we are not clear about the issue. Could you please provide more information (i.e. screenshots, steps to reproduce) to support (support@advansyscorp.com).
quote:
Liste of distribution “essai” doesn’t import created under Outlook 2007.
Personal Outlook Migration does not support Outlook groups.
Regards,
Advansys SupportIt appears to be a bug in GroupWise client. We can reproduce the behaviour in GroupWise 7.0.3 (build 08/05/2009) but are unable to reproduce it in GroupWise 8.0.1 (build date 26/08/2009).
Could you please let us know which version of GroupWise client you are running (see Help – About GroupWise)?
We will report this issue to Novell and post any update in this thread.
Regards,
Advansys Support[This message was edited by Support 3 on November 08, 2009 at 04:24 PM.]
Not sure any Token available to select a message. Another alternative to reply the message using Object API then open view.
set oMsg = GroupWise.Account.GetMessage("xxxx-Message-ID-xxxx") set oReplyMsg = oMsg.Reply("", true, true, false) call GroupWise.ItemOpen(oReplyMsg.MessageID, "") set oReplyMsg = nothing set oMsg = nothing
Regards,
Advansys SupportJust want to make it clear, this post is referring to free Cool Solution applet (http://www.novell.com/coolsolutions/tools/14061.html) not the Advansys Filing Assistant solution (http://advansyscorp.com/formativ_sol_filing_assistant.htm).
Regards,
Advansys SupportThanks for your post.
We can reproduce this behaviour and added to our database. Our engineers will review this issue in next Formativ update.
NewFilePickerDialog was introduced in Formativ 1.5, most of our customer and commercial products now use Formativ 2.0 visual forms controls. We suggest you to use Formativ 2.0 controls, our engineers have written a sample applet which list available files in a TRzCheckList control. You can download the sample applet from here: http://beta.advansyscorp.com/sample-applet-list-available-files-checklist.zip
Hope this helps. If you have any further questions, please do not hesitate to contact us.
Regards,
Advansys SupportGlad to help.
Regards,
Advansys SupportUse TImage.Picture.LoadFromFile() method, see the modified code below.
Sub Main(Client, GWEvent) form.ShowModal() End Sub Sub btnClick(Sender) form.img.Picture.LoadFromFile("D: 0.bmp") End Sub
Regards,
Advansys SupportThanks for your post.
Unfortunately, we haven’t had any report about this issue. The issue could be relate to specific version of the GroupWise client or could be specific format of the hotmail message which cause the problem in outgoing GroupWise message or even problem in hotmail rendering. Does the problematic email appear correctly in another web mail (i.e. Gmail, Yahoo)?
Do you have any Formativ applet integrate to message reply event? Are you referring to any specific applet?
quote:
I tried it on a Groupwise client that hasnt got the formativ add on installed and emails are visible in hotmail
Could you please provide more information about how you perform the test where the email visible in hotmail. For example, did you uninstall Formativ or disable Formativ from the control panel applet in your test?
Which version of the GroupWise client you are running (see Help – About GroupWise)? If the problem appear in earlier version of the GroupWise client (i.e. 7.0.2, etc), can you upgrade the client to latest point release (i.e. 7.0.5, 8.0.1, etc).
Let us know how you go.
Regards,
Advansys SupportIt may be possible to write a custom Formativ solution to suppress these information before printing. If the message is HTML format, it may make sense to provide a stylesheet (CSS) that renders the content differently. We may also need to print modified message through MS Word, etc as Novell don’t have any API’s available to print directly from GroupWise.
Unfortunately our custom development resources are assigned to other projects. We would suggest you contact a Formativ development partner, one of which should be able to assist. You can access the full list at:
http://www.advansyscorp.com/formativ_partners_developers.htm
Regards,
Advansys Support
Thanks for the additional information.
‘Reply with Attachments’ is a Cool Solutions applet. All applets supplied to the Novell Cool Solutions Applet Central area are not supported by Novell or Advansys. No warranties are provided for the operation of the applets.
However, our engineers tested ‘Reply with Attachments’ applet against GroupWise 8.0.1 (build date 26/08/2009) and it appear to work as expected. Please make sure to hold down the SHIFT key, prior to reply the message. The behaviour could be relate to GroupWise client, you may need to upgrade the client to latest point release.
Regards,
Advansys Support -
AuthorReplies