anyone knows a good control to preview an html file?
what was that other old one called? the one which was available in vb6?
Printable View
anyone knows a good control to preview an html file?
what was that other old one called? the one which was available in vb6?
Are you talking about the webbrowser control? If so, it is in the COM components section when you customize the toolbox.
aah I was wishing there is a .NET control for that:D I couldnt find anything at pscode.com, dunno :(
if I want to use this one, is it enough to put a copy of the ocx file in my app's folder? would that be enough for "installing" the com control?
No, when you add it to your project, you will notice it creates a new dll file in your bin directory. This is the interop dll required to use the com component. You will just include this in your package when you deploy your app.
oh so the dll file has the com component in it? eeh weird. So the only and the only thing that I need is that dll file?Quote:
Originally posted by hellswraith
No, when you add it to your project, you will notice it creates a new dll file in your bin directory. This is the interop dll required to use the com component. You will just include this in your package when you deploy your app.