Article ID: 125890
Article Last Modified on 10/11/2006
Sub Test()
Dim R As String
Dim T As Long
Dim L As Long
'Set "R" equal to the active cell's address.
R = ActiveCell.Address
'Set the top and left coordinates of the active cell.
T = Range(R).Top
L = Range(R).Left
'Adds a true circle to the worksheet at the active cell.
ActiveSheet.Ovals.Add(L, T, 50, 50).Select
Selection.Interior.ColorIndex = xlNone
End Sub
163435 VBA: Programming Resources for Visual Basic for Applications
Additional query words: 5.0 7.0 97 XL97 XL7 XL5 XL
Keywords: kbhowto kbprogramming kbdtacode KB125890