Can I show error message or window that remains visible after application exit using vb6 -


i trying open form in new window , want window open after closing vb6 application. code using

dim frmwb frmerrwindow      set frmwb = new frmerrwindow      frmwb.wberrorwindow.registerasbrowser = true       set ppdisp = frmwb.wberrorwindow.object      frmwb.show 

thanks in advance.

any forms , objects create vb6 closed when application closes, because exist within process memory space. way keep window open after application closes (that know of) use dll injection put code foreign process. way, vb6 app exit , dll in external process remain running.

unfortunately, dll injection not possible using vb6 alone.


Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -