Microsoft
Software
Hardware
Network
Question : Getting strings from textboxes
I am trying to use the following macro to list all the textboxes on a sheet together with their positions and their text strings. But I am failing on the text string part. Can someone tell me the correct syntax for getting this?
Saqib
Sub GETOBJECTS()
For Each Obj In ActiveSheet.Shapes
Select Case Obj.Type
Case msoTextBox
rn = rn + 1
Cells(rn, 1) = "TextBox"
Cells(rn, 2) = Obj.Left
Cells(rn, 3) = Obj.Top
Cells(rn, 4) = Obj.Width
Cells(rn, 5) = Obj.Height
Cells(rn, 6) = Obj.Characters.Text
End Select
Next Obj
End Sub
Answer : Getting strings from textboxes
This appears to work:
Cells(rn, 6) = Obj.TextFrame.Characters.T
ext
Random Solutions
How to detect if SQL Server 2005 or 2008 is installed
Header bigger on Zen Cart template
Is there any way to restrict WHERE users can have access to OWA (Exchange 2007)?
Windows Server 2008 to Server 2008 R2 Upgrade
Recommendations for power for school netbook cart
How to set up IIS to send alerts in the event of a system failure
Me.BindingContext(Me.MEMTb
SQLDataSet
1, "MEMTb").AddNew() - AddNew not working
TSQL Scalar Function using select inside the function & excluding date
Force MsgBox popup when users are logged into XP
Move Mailbox from Exchange 2003 to Exchange 2010