Hi i am working on windows application . I am opening an math type using button want to select all and copy send keys are not working
here is my code ...
Dim proc As New Process()
With proc.StartInfo
.Arguments = "file_path.bmp"
.UseShellExecute = True
.WindowStyle = ProcessWindowStyle.Normal
.WorkingDirectory = "C:\Windows\System32\" 'path name
.FileName = "mathtype.exe" '<----- Set Exe Name
End With
proc.Start()
proc.Close()
proc.Dispose()
System.Windows.Forms.SendKeys.Send("^A") 'use keys
System.Windows.Forms.SendKeys.Send("^C")
help me!