OLE Container in VB.net ??

takume

New member
Joined
Jul 30, 2003
Messages
3
Hi all .net developer:

In previous version of VB (Vb6), we can use OLE container to manipulate different objects such as Excel (chart). However, in VB.net the OLE container no longer exist. Now i want to develop an application that using VB.net but it require Excel chart function on the form. Are there any method i can do that ???

I tried to use MSChart control but the feature is not good enough.
I also tried to use OWC chart object but it doesnt own some features that Excel contain.

Any suggestions and solutions for me ? Thanks a lot
 
you could try the DataGrid control , that should add the contents of your excel file pretty much in its correct layout . just make a reference to the microsoft excel object library , then make the DataGrid.DataSource hold the worksheet.
 
In previous version of VB (Vb6), we can use OLE container to manipulate different objects such as Excel (chart). However, in VB.net the OLE container no longer exist. Now i want to develop an application that using VB.net but it require Excel chart function on the form. Are there any method i can do that ???

You can use a WebBrowser control.
This is the client area of Internet Explorer, so it will do the OLE-work for you.

Bye
 
Back
Top