Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear Experts,
We have developed a scientific application using VB6. The output, which contains several columns having numeric data delimited by <tab char, is displayed in a multiline text box control. We wish to copy the data of a certain column (like, Block selected mode in TextPad) only. The text box control does not allow this feature at all. We decided to use Excel as an OLE container(embedded interface of Excel) to display output in columns. I am using the following code to populate the Excel. OLE1.CreateEmbed "", "Excel.Sheet.8" Set objExcel = OLE1.object.Parent 'Now you can use the type lib Set objWB = OLE1.object 'will return a workbook object Set objSheet = objWB.ActiveSheet 'will return a worksheet object 'objSheet.Cells(1, 1) = "Data 1" Can anybody please tell the following things: 1). A more better way to send data to Excel from VB in a junk or atleast for the whole row instead of cell by cell. 2). How to allow users to edit the data in the cells without opening the separate instance of the Excel interface(perhaps called in-line editing). 3). Allow user to select any row/col to perform cut, copy or paste operation. Any help in this regard will be highly appreciated. Regards, Faiz |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Handling blank data points | Charts and Charting in Excel | |||
Handling cells with multiple data entries | Excel Worksheet Functions | |||
Series Lines Handling of Missing Data | Charts and Charting in Excel | |||
Handling "Blank Entries" through Data Validation | Excel Discussion (Misc queries) | |||
Mixed Data Handling | Charts and Charting in Excel |