Forum Replies Created
-
AuthorReplies
-
Could you please send some of the problemetic messages to support (support@advansyscorp.com) for debug. Please note, Advansys treats all data provided by clients as strictly confidential.
Regards,
Advansys SupportSorry for the delay.
Updated version (2.0.30) is available from the download (http://advansyscorp.com/formativ_download.htm) page. We recommend to uninstall the previous version (Control Panel – Add or Remove Program) before installing this update.
Hope this helps. Please let us know how you go.
Regards,
Advansys Supportyou can use the ThrowToken method which uses the native GroupWise Token Commander to execute a given token. The return value from the token is given in the ResultValue parameter. See the Formativ Language Guide for more information.
Your code above string format not correct, “Edit1.Text” added as string where its value should be added. See the updated sample code below:
iSyntax = "FolderCreate(""Firstname Lastname BasisordnerAktenschrank" & Form1.Edit1.Text & """;""Folder description"";0)" msgbox groupwise.throwtoken(iSyntax, ireturnVal)Regards,
Advansys SupportDoes these address book entries are added as group members? If these entries are not added as group members then you may also need to add to the group.
In GroupWise Object-API AddressBookEntry.ObjType property shows read/write, I assume you can change the property.
quote:
ObjType R/W Enum (AddressTypeConstants). Type of entity this entry represents.
Regards,
Advansys SupportCould you please elaborate your question.
Do you want to send an appointment to another recipient? Your sample code above only create the appointment message but do not sent it. See the sample code below which send the appointment.
set nMsg = GroupWise.Account.workfolder.messages.add("GW.MESSAGE.APPOINTMENT", fgwDraft) nRecipient = nMsg.Recipients.Add("recipient@email.com",,0) nMsg.OnCalendar = TRUE nMsg.StartDate = DateAdd("d", 1, date) nMsg.subject = "Test Appointment" nMsg.Place = "IT" nMsg.Priority = fgwNormal nMsg.sendRegards,
Advansys SupportGreat, thanks for letting us know.
Regards,
Advansys SupportWe have sent the work-around via email.
Regards,
Advansys SupportWe have emailed you the link to download beta Formativ 2.0.2.
Regards,
Advansys Support“Client.ClientState.CommandMessage” expect, you have selected some messages and will throw error if no messages selected.
The code enabled error handling by calling “On Error Resume Next” which causes execution to continue with the statement immediately following the statement that caused the run-time error. See the Microsoft® Visual Basic® Scripting Guide for more information.
You can ignore the error or clear it by calling “err.clear”. If your code only require the first selected message then you can use the optimise code below.
dim oMsg Sub Main(Client, GWEvent) if IsMessageSelected(Client) then msgbox oMsg.subject end if set oMsg = nothing End Sub ' Is any message selected in the GroupWise client? ' Return type: True/False Public Function IsMessageSelected(Client) On Error Resume Next set oMsg = nothing Set oMsg = Client.ClientState.CommandMessage IsMessageSelected = not (oMsg is nothing) err.clear End FunctionHope this helps.
Regards,
Advansys SupportOur commercial solutions support GroupWise 8. However, we have a Beta release of the Formativ 2.0.2 Frameworks available which fixes a Formativ Studio issue for GroupWise 8.0 and it support Vista.
Could you please send your Formativ Configuration information to Support (support@advansyscorp.com). You can obtain the configuration by selecting Help | About Formativ… from the GroupWise main menu. When the About Formativ dialog appears, go to the Configuration tab and click the button Copy to clipboard. Then paste the text into your reply email (or save it to a plain-text file and include it as an attachment).
Regards,
Advansys SupportThanks for your post. Please see below the engineers response to your question.
quote:
I do not get a list of any folders to convert when I add the Archive to Go folder.
– To clarify, could you confirm that you are not seeing any folders in “Filtering Options” – “Selected folders”? Could you please send screen shots of the issue to support (support@advansyscorp.com).
– Do you see any error messages at the end of the conversion process? Please send the log to support, log files usually stored in “C:Documents and SettingsUSER-NAMEApplication DataAdvansysPST Creator” folder.
– Please send the PST Creator version information to support. You can obtain the version information from the Help menu, choose “About…” option, press “Copy to clipboard” button, then paste the text into your reply email (or save it to a plain-text file and include it as an attachment).
– In addition to the above, could you email the contents of the _metadata folder (zipped). _metadata folder located in “…Archive Namemedia-01_metadata”.
The exported metadata contains only Sender, Recipients, Subject and Date for each message; it contains only Display Name and Email Address for each contact. Please note, Advansys treats all data provided by clients as strictly confidential.
We are looking forward to hear from you.
Regards,
Advansys SupportYou have made duplicate post about this issue. Please see your other post for the answer to your question.
Regards,
Advansys SupportGreat, thanks for letting us know.
Regards,
Advansys SupportCould be a bug in GroupWise API, code below appear to work as expected.
if not (Client.clientstate.currentaccount.proxied) then msgbox client.clientstate.CurrentAccount.archived end ifRegards,
Advansys SupportWhich version of the Template solution you are running? You can check the version by running the solution and select the About option.
Do you see the error when you choose a template and press Ok button? Can you re-produce the behaviour by selecting another template or different machine?
Regards,
Advansys Support -
AuthorReplies