Forum Replies Created
-
AuthorReplies
-
Just to make it clear, do you want to write text to the message after the GroupWise signature is inserted once you press the send button?
If that true then you can not edit the message as the Formativ send event will trigger before GroupWise insert the default Signature. GroupWise insert the signature at the last stage of the send process.
Another thought, you can fuzz the GroupWise client by adding the “>>> ” (reply/forward marker) before your text so GroupWise will add the default signature before the reply forward marker.
Some sample code:
groupwise.PosToEndOfText() GroupWise.Enter GroupWise.Enter GroupWise.TypeText(">>> ") GroupWise.Enter GroupWise.TypeText("Hello there") GroupWise.EnterWe haven’t tried it, may be you can colour code the reply/forward marker to the message color (i.e. white) so that it won’t be visible to the user.
Regards,
Advansys SupportThank you for the enquiry. We have sent you an email about the beta download link.
Regards,
Advansys SupportNovember 2, 2008 at 4:33 pm in reply to: Error D107 when trying to forward an embedded email attachment #6273We haven’t had any report about this issue. Our engineers recommend you to upgrade the GroupWise client to the latest point release (i.e. 7.0.3).
– Is there any applet associated with the message forward event?
– Can you re-produce this behaviour on another machine?If the problem persists, please send your Formativ Configuration to Support (support@advansyscorp.com). You can access this via the main GroupWise menus: Help | About Formativ. When the ‘About Box’ appears, select the ‘Configuration’ tab. Press the ‘copy to clipboard’ button, then paste the contents of the clipboard into your reply.
Regards,
Advansys SupportThanks for following this issue.
We have also infomed Novell about this issue and requested to update the API to return folder name displayed in client.
Regards,
Advansys SupportWe will contact Novell again about these API’s.
Regards,
Advansys SupportSee below the comments from the GroupWise Object API documentation about the Home folder
quote:
For GroupWise 7.0 and later, the Name for the root folder is the User’s Display Name, concatenated with the localized word for home. For example, in GroupWise 6.5, the root folder name for user John Doe is “John Doe.” For GroupWise 7.0, that same root folder is now “John Doe Home.” Your application might need to check the ObjType property of a folder to ensure that it is the true root folder. If it is the root folder, you can access the Owner property of the account, then retrieve the DisplayName of the user from the returned Address object (which is the same string that is used to name the root folder in previous GroupWise versions).
We are not sure about the localized word ‘Home’ in French. We have requested Novell to provide API support to access the exact root folder name with localized word of Home.
You may need to ask this question to GroupWise API forum.
Regards,
Advansys SupportWe have sent you the information by direct email.
Regards,
Advansys SupportHope your implementation goes well.
Regards,
Advansys SupportGreat news.
Could you please confirm that you are referring to the “Address Book” – View – “Name Format” settings?
Regards,
Advansys Support[This message was edited by Support 3 on October 19, 2008 at 09:55 PM.]
In general its not intuitive to users to show/hide control on mouse over to some area.
However, you can do this using the Raize control which has the OnMouseEnter and OnMouseLeave events. Note, once you hide or disable a control then the events will not fire. I will recommend to use a Raize Panel control and place the control you want to hide inside the panel then hide/show the control when the mouse enter/leave the panel.
Sample code…
Sub MainDlgRzPanel1MouseEnter(Sender) maindlg.edt.visible = true End Sub Sub MainDlgRzPanel1MouseLeave(Sender) maindlg.edt.visible = false End Sub
Regards,
Advansys SupportWe also unable to re-produce the behaviour in here which makes it difficult to locate the problem.
As you unable to re-produce it another machine, our engineers believe the issur is environmental or specific to the account. You may need to run the GWCheck on the affected account.
Regards,
Advansys SupportAnother thought, “OnSend” event set the special email to the BC field. You can use the Token API to set the BC field.
Regards,
Advansys SupportThanks for confirming the IE settings. Can you re-produce the behaviour to another machine (making sure the issue is not environmental)?
Regards,
Advansys SupportYou will need to iterate the record item and fill the ListView.
Sample code to iterate records.
set oRecord = nothing set oRecord = oDataSrc.FirstRecord while (not oRecord is nothing) set oListItem = MainDlg.listView.Items.Add oListItem.caption = oRecord.Name set oListItem = nothing set oRecord = oDataSrc.NextRecord wendWe always recommend to review control’s (i.e. ListView) properties and methods prior to coding. You can access the documentation link from the thread below:
http://www.advansyscorp.com/forums/topic/3971028821/Regards,
Advansys SupportSorry, we haven’t had any report about this issue. Please see below the engineers response.
– Are there any other machines/user where you can reproduce this behavior?
– What is the IE setting for E-mail, under the Programs tab (Internet Explorer – Tools – Internet Options – Programs – Email)? If the setting is not Novell GroupWise, it may help to change it.If the problem persists, there is likely to be a problem with your machine’s MAPI installation. We suggest that you try reinstalling your GroupWise client. We strongly recommend to install the latest point release of the GroupWise client.
Hope this helps.
Regards,
Advansys Support -
AuthorReplies