Hi All,
Using pydbg I'm opening certain files(ex. c:\myfile.txt) within a win32 application(Ex. c:\notepad.exe) in this way.
dbg = pydbg()
dbg.load("c:\\notepad.exe", "c:\\myfile1.txt")
So my question is, if the target application(Ex. c:\notepad.exe) is already running then,then is it possible to open a another file(For example c:\myfile2.txt ) within the same application without closing that process/apps, using pydbg?
(For some other reason using pydbg is must here)
Thanks in Advance,