Hi,
My goal of my VB form is to be able to select certain things and then
display a filter spreadsheet using the Excel component in Microsoft
Office Spreadsheet 10.0 control.
Can someone tell me how to load an entire excel sheet into my component
sheet? After that I should be able to figure out how to filter and
display only certain rows/columns.
Thanks,
RishiD
Chip Pearson - 23 Jan 2006 21:11 GMT
I think you have to loop through each cell in the worksheet.
Dim Rng As Range
Application.ScreenUpdating = False
For Each Rng In ActiveSheet.UsedRange.Cells
Sheet1.Spreadsheet1.Range(Rng.Address).Value = Rng.Value
Next Rng
Application.ScreenUpdating = True

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
> Hi,
>
[quoted text clipped - 12 lines]
> Thanks,
> RishiD
NickHK - 24 Jan 2006 04:40 GMT
Rishi,
Alternatively, have you looked at the OLE control to show Excel ?
It takes a little getting used to and I can't say it better than what you're
using now.
NickHK
> Hi,
>
[quoted text clipped - 8 lines]
> Thanks,
> RishiD
Rishi Dhupar - 24 Jan 2006 15:49 GMT
Dim Rng As Range
For Each Rng In Sheet1.UsedRange.Cells
Spreadsheet1.Range((Rng.Address)).Value = Rng.Value
Next Rng
This code seems to be working well, is there anyway to keep the
formatting of the text?
Thanks so much.