Forum Replies Created
-
AuthorReplies
-
Hi,
I have found a workaround, which works for me:
Using a draft message (fgwDraft instead of fgwPersonal) you can add attachments.
This will not create a posted task, but a normal task which I have assigned to myself.set MyNewTask = GroupWise.Account.Calendar.Messages.Add(“GW.MESSAGE.TASK”, fgwDraft)
With MyNewTask
.FromText = GroupWise.Account.Owner.DisplayName
‘.OnCalendar = FALSE
‘.Priority = fgwNormal
.AssignedDate = today
.StartDate = today
.DueDate = today
‘.Completed = FALSE
.Subject = “New job”
.TaskCategory = “A”
.TaskPriority = 1.Attachments.Add(MyMsg)
End WithMyNewTask.Recipients.Add(GroupWise.Account.Owner.DisplayName)
MyNewtask.Sendset MyNewtask = nothing
best regards
MarcoHi,
Is there any progress from Novell?
Or do you know any workaround for me?
regards
Problem is solved.
In the new CheckListBox there is no property for the Multiselect.
You have to do this by yourself. Catch the Event “OnClick” and
call the UnCheckAll method.
This works only for the Raise-Components (Enhanced-Tab).Thank’s for your help.
Hello,
> We have two checklist controls in Formativ 2.0. I would suggest the most
> appropriate check list control in this case would be the TRzCheckList control,
> found on the ‘Enhanced’ tab of the component pallete.
> It has a MultiSelect property, as well as an ExtendedSelect property.Yes, I know about that and I have also read the documentation of Delphi
and Raise-Components. But with both components it’s not possible to
deactivate the MultiSelect-Option. They are always in Multiselct-Mode.Should I send you an example per e-mail?
Hi,
Thanks for the fast reply.
> Unfortunately I don’t think you’ll be able to speed this up. When you
> use Remote Mode GroupWise needs to do significantly more work when
> you added a new message to the message store.
> (i.e. it needs to build remote requests and phsically write the
> entry to your remote database).Ok, I see.
But creating new mail instead is fast!?
Only creating tasks will be slow.> Depending on the size of your Remote database, this is going
> to take some time.
I have created a new account, just 5 or 6 messages and I used
an account with over 12000 messages.
The time is nearly the same, 4 or 5 seconds in remote, <1 second
in online-mode.> I’ve had a look at your code, and can’t spot anything that
> looks slow.I have found that the assignments are slow:
.OnCalendar = TRUE
.Priority = fgwNormal
.AssignedDate = StartDateCtrl.Date
.StartDate = StartDateCtrl.Date
.DueDate = EndDateCtrl.DateEach line will increase the time for saving very much.
Are you sure it is a problem of OBJAPI or Groupwise?Is there a way to setup the task with the correct values
bevor saving it into the groupwise messagestore?Hi,
is there a bugfix available now?
Or when do you expect the release of version 2?I’m using GW 6.5.1 and had never seen this before.
Are you sure using the same window (posted task)
and not an outgoing task send to your self?If you send a task with TO, CC or BCC to your self
you will get the “2” (outgoing) instead of the
“3” for posted tasks. This is correct, I think.I’m using this code as a workaround:
Set Msg = GroupWise.ComposingItem
if (Msg.ClassName = “GW.MESSAGE.TASK”) then
if (Msg.BoxType = 3) then
‘ msgbox (“posted task”)
exit sub
end if
end if> While it is probably working as designed by Novell,
> it does mean there is no way to programmically
> display the categories dialog when a message is
> open. I can make an enhancement request to Novell
> in this regard. To assist in this regard, how
> important is having this issue resolved to
> your application?Ok. Thank’s for your reply.
While GW6.5 have these Categories, most of my Users like
to use it and set it to all messages (Incoming, Outgoing,
Tasks, Appointments…).
If you work this way, it is a “pain” always switch to
the personalize tab, set the categorie and switch back
to the mail.
So I’m looking for an short-cut like <ALT>-C or an
Toolbar-Icon, but nothing found, and then tried to call
the Token with Formativ.If you do an enhancement request to Novell, I think it’s
better to request a Short-cut and Toolbar-Icon instead of
changing the Programming-Interface (Token-API / Object-API).Now I have to write my own dialog with Formativ 😉
-
AuthorReplies