shell - Call vbp inside vb6 IDE -


i have debug group of vb6 projects.

there root project (say toolbar.exe). program toolbar call .exe

ex:call shell(app.path & "\modmag2008.exe ", argument ......

i have modmag2008.vbp , call debug (it in same project group toolbar.vbp)

so start debugging toolbar.vbp , go on debugging modmag2008.vbp

is possible?

note: cannot change architecture.

to debug vb6 application, called .exe other application see 2 possibilities:

1/change callig code call application thorough visulal studio 6

call shell(app.path & "\modmag2008.exe ", argument ...... 

is replaced

call shell("c:\program files (x86)\microsoft visual studio\vb98\vb6.exe /r " &  app.path & "\modmag2008.exe  /cmd ", argument ...... 

see: working command line switches

2/ use visual studio.net debug vb6 binaries - debuging not convenient - not necessary modify original application: debugging vb6 binaries in visual studio .net


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -