CURD.GetScheduledTaskIDs Method: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{DISPLAYTITLE:cURD.GetScheduledTaskIDs Method}}{{Template:API}}{{Template:APIBreadcrumb|9|.cURD}} <onlyinclude>Gets an array containing the numeric IDs of of th…')
 
mNo edit summary
Line 2: Line 2:




<onlyinclude>Gets an array containing the numeric IDs of of the scheduled tasks assigned to the URD. (Alternatively, VBA.NET users can use the ScheduledTaskIDs() property to get or set the task IDs.)</onlyinclude>
<onlyinclude>Gets an array containing the numeric IDs of of the scheduled tasks assigned to the URD. (Alternatively, VB.NET users can use the ScheduledTaskIDs() property to get or set the task IDs.)</onlyinclude>


== Syntax ==
== Syntax ==

Revision as of 18:36, 8 October 2015

APIWiki.png


Member of: SynthesisAPI9.cURD


Gets an array containing the numeric IDs of of the scheduled tasks assigned to the URD. (Alternatively, VB.NET users can use the ScheduledTaskIDs() property to get or set the task IDs.)

Syntax

.GetScheduledTaskIDs(arr())

Parameters

arr()

Required. Long. An array of the numeric IDs of the scheduled tasks assigned to the URD.


Example

VBA

 ... 

 'Add code to get an existing URD. 
 Dim aURD As cURD
 ... 

 'Get the IDs of the tasks assigned to the URD. 
 Dim myarray() As Long
 Call aURD.GetScheduledTaskIDs(myarray)

 'Sample output. 
 Dim i As Integer
 Dim upper As Integer
 Dim lower As Integer

 lower = LBound(myarray)
 upper = UBound(myarray)

 For i = lower To upper
  MsgBox (myarray(i))
 Next i