c# - Output Window not working on Visual Studio Isolated Shell -


i having problem displaying text output window in visual studio isolated shell.everything working fine if run isolated shell on machine has isolated+integrated shell redistributable + visual studio professional 2015 + sdk installed. on machine doesn't have visual studio installed, output window remains blank on isolated shell although work on integrated shell.

i using following create custom output window:

ivsoutputwindow opwindow = package.getglobalservice( typeof( svsoutputwindow ) ) ivsoutputwindow; guid customguid = new guid("0f44e2d1-f5fa-4d2d-ab30-22be8ecd9789"); string customtitle = "my title"; opwindow.createpane( ref customguid, customtitle, 1, 1 ); ivsoutputwindowpane oppane; opwindow.getpane( ref customguid, out oppane);  oppane.outputstring( "hello, test!" ); oppane.activate(); 

can shed light? thanks

i've found problem. in end due dlls version different caused behaviour differences.

more details can found in link:

https://social.msdn.microsoft.com/forums/en-us/vsx/thread/528e150d-99f6-4e14-801f-ff7a73d95235/#528e150d-99f6-4e14-801f-ff7a73d95235

hope above helps someone.


Comments

Popular posts from this blog

php - How to add and update images or image url in Volusion using Volusion API -

javascript - IE9 error '$'is not defined -