Hi, Can Microsoft.Win32.TaskScheduler call a VB Function/Method to perform a specific task within VB.Net like below :
td .Actions.Add(New ExecAction("MyMethod()", "c:\test.log"))
Sub MyMethod()
MsgBox("DONE !")
End Sub
I just need it to load/open xml file within VB.net (Not Outside) so that I can use nodes values and transfer content to variables.
Can it accomplish that? If not, can you point me to a right direction.
↧