Using VB6, I have loaded an Excel worksheet object (I am using Excel 2000). I am having much difficulty in extracting the comments that are embedded in various cells within the worksheet. I have also tried using a Range object to get at the comment property....but alas, no cigar.
Any suggestions would be appreciated.
<...References set to Excel Object library>
Dim strText As String
Dim myRange As Range
Set myRange = Range("A70")
myRange.Offset(0, 9).Select
strText = myRange.Comment
Any suggestions would be appreciated.
<...References set to Excel Object library>
Dim strText As String
Dim myRange As Range
Set myRange = Range("A70")
myRange.Offset(0, 9).Select
strText = myRange.Comment