-
Topic
-
I’m trying to use Formativ to provide a Find Results folder for my users that implements the steps show here: http://www.novell.com/coolsolutions/feature/18564.html
Problem is, that even cutting down the query to it’s simplest, the applet starts to run, and then hangs. If I kill off GW, when I rstart the folder exists, and sometimes even has the query I defined in it. But my real problem is that running the applet hangs GroupWise.
So my questions are:
1) Is there something special I need to know about creating Find Results folders?
2) Is there a better way to do this than
Const FOLDER_NAME_QUERY = "Daylight Saving Time Change Affected Appointments"
Sub Main(Client, GWEvent)
dim oQuery
' Creates a new Query object
set oQuery = GroupWise.Account.CreateQuery
' Set up a Filter expression.
oQuery.Expression = "(DUEEND_DATE >= 2007/03/11) AND (DUEEND_DATE <= 2007/04/01)"
call oQuery.Locations.Add(GroupWise.Account.Mailbox)
' Run the query whenever the folder is selected.
oQuery.StartOnOpen = true
call oQuery.CreateFolder(FOLDER_NAME_QUERY, GroupWise.Account.Cabinet)
call MsgBox ("The folder '" & FOLDER_NAME_QUERY & "' was created in the Cabinet.")
set oQuery = Nothing
End Sub
Thanks!
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.