Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > VBA / Office Integration > Excel > How to put text into a shape without Select


Reply
 
Thread Tools Display Modes
  #1  
Old 10-11-2004, 09:09 AM
tinyjack's Avatar
tinyjack tinyjack is offline
Captain TJ

Forum Leader
* Expert *
 
Join Date: Jun 2003
Location: England
Posts: 1,664
Default How to put text into a shape without Select


This is bugging me, how do I get rid of the Select?

Code:
Dim shpItem as Shape Set shpItem = Sheet2.Shapes.AddShape(msoShapeFlowchartDecision, GAP, (lngScreenBottom / 2) - (HEIGHT / 2), WIDTH, HEIGHT) shpItem.Fill.Solid shpItem.Fill.ForeColor.SchemeColor = 43 shpItem.Name = "Start" Sheet2.Shapes("Start").Select Selection.Characters.Text = "Bugging Me"

Any thoughts?

TJ
__________________
Oh dear, I need a beer.
Online Motorsport Game
Reply With Quote
  #2  
Old 10-11-2004, 09:51 AM
Mike Rosenblum's Avatar
Mike Rosenblum Mike Rosenblum is offline
Microsoft Excel MVP

Forum Leader
* Guru *
 
Join Date: Jul 2003
Location: New York, NY, USA
Posts: 7,848
Default

I can't test it right now... but I think what you want is:
Code:
shpItem.TextFrame.Characters.Text = "Bugging Me"
Fingers crossed...
__________________
My Articles:
| Excel from .NET | Excel RibbonX using VBA | Excel from VB6 | CVErr in .NET | MVP |
Avatar by Lebb
Reply With Quote
  #3  
Old 10-11-2004, 10:35 AM
tinyjack's Avatar
tinyjack tinyjack is offline
Captain TJ

Forum Leader
* Expert *
 
Join Date: Jun 2003
Location: England
Posts: 1,664
Default

I am debugged

Cheers Mike
__________________
Oh dear, I need a beer.
Online Motorsport Game
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->