DOCUMENT:Q163802 05-FEB-2000 [foxpro] TITLE :HOWTO: Retrieve Contact Names from Schedule+ Tasks PRODUCT :Microsoft FoxPro PROD/VER:WINDOWS:3.0,3.0b,5.0,6.0 OPER/SYS: KEYWORDS:kbinterop kbAutomation kbOOP kbvfp300 kbvfp500 kbvfp600 ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0, 6.0 ------------------------------------------------------------------------------- SUMMARY ======= When processing Schedule+ Tasks via OLE Automation, the only reference to the Contact information is the ContactItemID property. This article shows how to retrieve the Contact information based on that property. MORE INFORMATION ================ The methods below show different ways of processing Schedule+ Tasks. The method you use depends on whether you know that all of your tasks have Contacts associated with them. Method 1 -------- The following works only if every task has a Contact. If you get the error, "Function argument value, type, or count is invalid," on the GetRows method call, then you know that not every task has a contact, so you have to process the tasks row by row instead, as shown in Method 2. * BEGIN CODE oSched = CREATEOBJECT("SchedulePlus.Application") oSched.Logon mySched = oSched.ScheduleLogged myTasks = mySched.SingleTasks IF myTasks.Rows > 0 && Make sure there are tasks to process myContacts = mySched.Contacts aTasks = myTasks.getrows(100,"text","contactitemid") FOR x = 1 TO ALEN(aTasks,1) && process the rows in the array * The following line limits the Contacts table to the given * criteria: ItemId = myContacts.SetRestriction("itemid",aTasks(x,2),"==") oneContact = myContacts.Item ?"Task Description: ", aTasks(x,1) ?"Contact First Name: ", oneContact.GetProperty("FirstName") ?"Contact Last Name: ", oneContact.GetProperty("LastName") ENDFOR ENDIF oSched.Logoff * END CODE Method 2 -------- The following method processes every task in the Schedule+ Task table. It verifies that there is a contact associated with the task before attempting to retrieve the contact information. * BEGIN CODE oSched = CREATEOBJECT("SchedulePlus.Application") oSched.Logon mySched = oSched.ScheduleLogged myTasks = mySched.SingleTasks myContacts = mySched.Contacts DO WHILE !myTasks.IsEndofTable oneTask = myTasks.Item ?"Description: ", oneTask.GetProperty("Text") * We must verify that there is a contact for the task; otherwise, * the GetProperty call will cause an error. IF TYPE('oneTask.GetProperty("ContactItemID")') = "C" * The following line limits the Contacts table to the given * criteria: ItemId = myContacts.SetRestriction("itemid",; oneTask.GetProperty("contactitemid"),"==") oneContact = myContacts.Item ?"Contact Name: " ??ALLTRIM(oneContact.GetProperty("FirstName")) + " " ??ALLTRIM(oneContact.GetProperty("LastName")) ELSE ?"Contact Name: No Contact For This Task" ENDIF myTasks.Skip(1) ENDDO oSched.Logoff * END CODE REFERENCES ========== The Microsoft Developer Network Library, January 1997. Additional query words: ====================================================================== Keywords : kbinterop kbAutomation kbOOP kbvfp300 kbvfp500 kbvfp600 Technology : kbVFPsearch kbAudDeveloper kbVFP300 kbVFP300b kbVFP500 kbVFP600 Version : WINDOWS:3.0,3.0b,5.0,6.0 Issue type : kbhowto ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2000.