Forum Replies Created
-
AuthorReplies
-
Hi Support,
thanks for quick response. I know the other issue in the support forum.
In the article of the novell forum it is described how to work with the font-name and font-size in a Plaintext Message.: PlainTextComposeFontName: Value: name of installed font (i.e. Arial) : PlainTextComposeFontSize DWORD Value: 0x0000000d
I asked for a HTML message. Are there registry entries as well? Or any other idea howto change the font-size in a HTML-Message.
Thanks and best wishes from germany
Ralf
Hi,
we insert a complete html file with the function
call Groupwise.Retrieve
when the event OnCompose occurs. So the image is sending with the whole email.
If you want sending a animated gif you need the newest gw-client! I use at the moment 7.0.3b. If you use a older version the effect you described, inside Groupwise you see the image outgoing mails not occurs.Best Regards
Ralf
Hi,
> Its a known GroupWise Object API limitation that you can not create the autodate appointments.
Some days you can not win and at some days you lose . . .Yes the workaround with the loop helps to insert the appointment for more then one day, but if you want to change or delete the appointment you have to do this on each appointment 🙁
Perfect explanation
‘ An AllDay appointment starts at midnight of the first day and ends at midnight of the next day.
‘ For example, the properties show up in the Object API StartDate as 23-June-2006 at 12:00:00 a.m. and in the
‘ EndDate as 24-June-2006 at 12:00:00 a.m. — GroupWise 7.0 and laterThanks
Ralf
PS: All the time the best assistance from a company . . .
Hey Croc Men’s
All the time great support
Thanks
Cheers
Ralf
Thanks for the information.
i am waiting for new version of FORMATIV!
Best Regards
Ralf
Ok, i found the documentation. Maybe in the DHO-Session on BrainShare the Crocodile Men teach a little bit about the GroupWise C3PO ClientState Object.
Thanks …
Ralf
Hi,
i use Client.ClientState.CurrentAccount.Owner.EmailAddress and this works great.
Where can i find information about Client and Clientstate? I read in the Object API docu but i cannot find it. Can you give me a hint!
Thanks
Ralf
You welcome :-))
Ralf
Hi,
oops i find a way …
' Refresh the Mailbox Items if GroupWise.Account.Remote then call GroupWise.Refresh end if
Sometimes it is so simple 😉
Thanks again …
Ralf
Hi,
i tried the version for the remote mailbox
' Send and Retrieve #2 if GroupWise.Account.Remote then call GroupWise.RemoteSendRetrieveDlg end if
It works Yes and No.
Yes – I see the mail in the incoming folder
No – the Send/Retrieve Dialog comes up.Is there a way to suppress the dialog?
Thanks for assistance …
Ralf
Great!
Thanks.
Ralf
Yes the sample on the mickysoft site looks like what i want. But now i need time to learn how it works, because the “sort.htc” is not easy to understand, or do you have a simple sample?
Thanks
Ralf
Ok, you say
>Please let us know if you require any further assistance
Yes, yes i need!i collect all infos to put the output into a portal.
———————————————%————————————————
Const LINK_START = "<A HREF=" Const UID_MARKER = "UID:" Const TABLE_BEGIN = "<table border=""1"" cellpadding=""0"" cellspacing=""1"">" Const TABLE_END = "</table>" Const FONT_STYLE = "<FONT STYLE=""TEXT-DECORATION:NONE;FONT-FAMILY:ARIAL;COLOR:RED;FONT-SIZE=8PT"">" Const FONT_END = "</FONT>" Sub Main(Client, GWEvent) Dim iHRT Dim iMsg Dim iPortal Dim iPortals Dim iHTML dim iFilter dim oMessages iHRT = Chr(13) & Chr(10) Set iPortals = GroupWise.PortalManager.Portals Set iPortal = iPortals.Item("TaskManager") if iPortal is nothing then Set iPortal = iPortals.add iPortal.ID = "TaskManager" iPortal.OpenMessages = TRUE iPortal.NavigationControlsEnabled = FALSE end if iHTML = TABLE_BEGIN & "<tr><th>Prio</th><th align=""left"">Subject</th></tr>" iFilter = "(TASK AND NOT COMPLETED)" set oMessages = groupwise.account.calendar.messages.find(iFilter) for i = 1 to oMessages.count iHTML = iHTML & iHRT & "<tr><td align=""center"">" & _ FONT_STYLE & oMessages.Item(i).TaskPriority & FONT_END & "</td><td>" & _ FONT_STYLE & " " & "<A HREF=UID:" & oMessages.Item(i).MessageID & _ " STYLE=""TEXT-DECORATION:NONE"">" & oMessages.Item(i).Subject & "</A>" & _ FONT_END & "</td></tr>" next set oMessages = nothing iHTML = iHTML & TABLE_END iPortal.HTML = "<HTML><BODY>" & iHTML & "</BODY></HTML>" iPortal.Show iPortals.ActivePortal = iPortal.ID
———————————————%————————————————
Question:
How to sort the column.
Sample:
– Sort by Prio
– Sort by Subject
– Sort by Prio & Subjecti read about the Stringlist and look into the Sample Applet. With a single string i understand the way it works. But with MessageID & Prio & Subject i don’t know.
Best Regards
Ralf
[This message was edited by rfaude on December 17, 2003 at 01:28 PM.]
[This message was edited by Support 3 on December 17, 2003 at 04:33 PM.]
Thanks a lot!
Yes i read the differences and i prefer the Portal to display my Tasklist.
Thanks for the Link to the other Applet.
Best Regards
Ralf
Hi,
>I recommend you look at Examples of Valid Filter Expressions. Unfortunately, Novell’s filter reference Filter Expression Syntax is not very helpful.
I do this, but i cannot find a sample for this issue. Your are right with “is not very helpful”
>iFilter = “(TASK AND NOT COMPLETED)”
This works fine!>You can display tasks in one of the following user interfaces:
>a Formativ dialog (use a ListBoxControl, TabListBoxControl or StringGridControl);
>a HTML dialog, for which you build the HTML dynamically;
>a HTML portal, for which you build the HTML dynamically.
The final is to display the item as a HTML Portal. But first i triedset oMessages = groupwise.account.calendar.messages.find(iFilter)
iAllFind = oMessages.count
msgbox iAllFind
for i = 1 to iAllFind
msgbox oMessages.item(i)
nextIt applies the filter, count correct, Show the number of items,
but the loop doesn’t work.How can i access and display the subject of each item in the loop.
Thanks.
Ralf
-
AuthorReplies