N
Norton
I know Process can used to call an external application like
myProcess.StartInfo.FileName = myDocumentsPath + "\MyFile.doc"
myProcess.StartInfo.Verb = "Print"
myProcess.StartInfo.CreateNoWindow = True
myProcess.Start()
However, what if i want to call a sub function which requires a long time to
process?
I am trying to use a thread to do so but it is hard to control the process
state, any suggestions?
myProcess.StartInfo.FileName = myDocumentsPath + "\MyFile.doc"
myProcess.StartInfo.Verb = "Print"
myProcess.StartInfo.CreateNoWindow = True
myProcess.Start()
However, what if i want to call a sub function which requires a long time to
process?
I am trying to use a thread to do so but it is hard to control the process
state, any suggestions?