![]() |
|
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Join Date: Feb 2002
Posts: 3,063
|
Hi guys tought one..
i can command excel to change the default comment box to what ever picture or shape i want, but can i also add lines of code to change the triangle flag top right to say 3 times its size ??? is is possible to change the coloyur to say blue or black also??? any ideas guys... mush love to do this...
__________________
Free Excel based Web Toolbar available here. Jack in the UK J & R Excel Solutions "making Excel work for you" |
|
|
|
|
|
#2 |
|
Join Date: Feb 2002
Posts: 3,063
|
Hi Guys spent a day playing on this one, any ideas or pointers??
Would be good thou: And would hlep me a lot.... thanks again.
__________________
Free Excel based Web Toolbar available here. Jack in the UK J & R Excel Solutions "making Excel work for you" |
|
|
|
|
|
#3 |
|
MrExcel MVP
Join Date: Mar 2002
Location: Chicago, IL USA
Posts: 2,042
|
Hi Jack,
Posted by Dave Peterson and Dana DeLouis in microsoft.excel.programming http://groups.google.com/groups?hl=e...208D%40msn.com ------------------------ Sub testme() Dim mycell As Range Dim myRng As Range Dim lArea As Long Set myRng = Selection For Each mycell In myRng.Cells If Not (mycell.Comment Is Nothing) Then With mycell.Comment .Shape.TextFrame.AutoSize = True If .Shape.Width > 300 Then lArea = .Shape.Width * .Shape.Height .Shape.Width = 200 .Shape.Height = (lArea / 200) * 1.2 End If End With End If Next mycell End Sub ------------------------ You should be able tomanipulate the settings as you want. HTH, Jay |
|
|
|
|
|
#4 |
|
Join Date: Feb 2002
Posts: 3,063
|
Hi Jay --
Im impressed thanks for the effort i never know that site was there i stick onthis on eonly.. good info over there.. cheers again good start...
__________________
Free Excel based Web Toolbar available here. Jack in the UK J & R Excel Solutions "making Excel work for you" |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|