VisualCron
»
Support
»
API
»
Task Process Started Event
 Rank: Member
Joined: 3/28/2011(UTC) Posts: 24 Location: Indonesia
|
hi.. I run task using visualcron API in Winform VB.net How to know that task process started using vb.net winform? and please give me example code in Vb.net thanx Edited by user Thursday, May 12, 2011 1:22:52 PM(UTC)
| Reason: Not specified
|
|
|
|
|
|
 Rank: Administration
Joined: 2/23/2008(UTC) Posts: 6,115  Location: Sweden Thanks: 197 times Was thanked: 117 time(s) in 112 post(s)
|
Hi, I moved this thread to API forum. You have all these events in serverObj.Processes.xxx. For example: Quote:AddHandler serverObj.Processes.TaskProcessEnded, AddressOf RemoveTaskProcess
Private Sub RemoveTaskProcess(ByRef server As Server, ByVal pc As VCTaskProcessClass) If InvokeRequired Then Dim d As New Processes.DelegateTaskProcessEnded(AddressOf RemoveTaskProcess) Dim obj(1) As Object obj(0) = server obj(1) = pc BeginInvoke(d, obj) Else RemoveTaskProcessRow(pc) End If End Sub |
|
|
|
|
|
|
 Rank: Member
Joined: 3/28/2011(UTC) Posts: 24 Location: Indonesia
|
|
|
|
|
|
|
| Users browsing this topic |
|
Guest
|
VisualCron
»
Support
»
API
»
Task Process Started Event
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.