Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Get Data from Selected Cells

oXL is an Excel.application

Private Sub butt_SendSMS_Click(ByVal Ctrl As Office.CommandBarButton, _
canceldefault As Boolean)
On Error GoTo err_SendSMS_Click

MsgBox ActiveCell.Value
MsgBox oXL.Worksheets("Sheet1").Range("A1").Value


err_SendSMS_Click:
Debug.Print Err.Description
End Sub

"Ben Crinion" wrote in message
...
Hi

I have added a button onto a toolbar and now i want to be able to get the
data from the selected cells when the button is clicked.

I cant work out how to do this and any pointers in the right direction
would be greatly recieved.

Im using VB6 to create an AddIn not VBA.

Thanks
Ben Crinion



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default Get Data from Selected Cells

If oxl is excel.application, then shouldn't you have:

MsgBox oXL.workbooks("book1.xls").Worksheets("Sheet1").Ra nge("A1").Value

and maybe...
msgbox oxl.activecell.value
would work???

but if you look at VBA's help for ActiveCell, there's a remark that may affect
you:

If you don't specify an object qualifier, this property returns the active cell
in the active window.

Be careful to distinguish between the active cell and the selection. The active
cell is a single cell inside the current selection. The selection may contain
more than one cell, but only one is the active cell.

The following expressions all return the active cell, and are all equivalent.

ActiveCell
Application.ActiveCell
ActiveWindow.ActiveCell
Application.ActiveWindow.ActiveCell


Ben Crinion wrote:

oXL is an Excel.application

Private Sub butt_SendSMS_Click(ByVal Ctrl As Office.CommandBarButton, _
canceldefault As Boolean)
On Error GoTo err_SendSMS_Click

MsgBox ActiveCell.Value
MsgBox oXL.Worksheets("Sheet1").Range("A1").Value

err_SendSMS_Click:
Debug.Print Err.Description
End Sub

"Ben Crinion" wrote in message
...
Hi

I have added a button onto a toolbar and now i want to be able to get the
data from the selected cells when the button is clicked.

I cant work out how to do this and any pointers in the right direction
would be greatly recieved.

Im using VB6 to create an AddIn not VBA.

Thanks
Ben Crinion


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I find/replace data in selected cells only Mike_3333 Excel Worksheet Functions 7 April 3rd 23 07:45 PM
Put data in range of selected cells MusicMaker Excel Discussion (Misc queries) 3 September 6th 07 11:55 AM
How do I clear data in selected cells automatically Jim Train Excel Discussion (Misc queries) 1 May 25th 05 06:45 PM
Get Data from Selected Cells Ben Crinion Excel Programming 2 October 11th 04 11:26 AM
Get Data from Selected Cells Kevin Excel Programming 0 October 8th 04 05:53 PM


All times are GMT +1. The time now is 08:03 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"