hi all,
i am doing a project on speech recognition system where i want to
give voice commands. i could able to open MS office, Calculator every
thing through voice commands. But i want to popup my start menu
dynamically using voice commands. how can i do that? This is the code
i am using to open a calculator dynamically
Dim p As New Process
p.StartInfo.FileName = "calc.exe"
p.Start()
is there any code like this to pop up my start menu? or else how can i do the same. Please help me..