IDW ballons question?

IDW ballons question?

Anonymous
Not applicable
378 Views
4 Replies
Message 1 of 5

IDW ballons question?

Anonymous
Not applicable
Hi everyone!

What code lines can search and highlight a part from a given item number or ballon number?

I may also want to know what code lines can search for a part that don´t have a ballon or parts that are missing a ballon.

Thanks.
0 Likes
379 Views
4 Replies
Replies (4)
Message 2 of 5

Anonymous
Not applicable
Some help on this will be really aprecciated,Thanks.
0 Likes
Message 3 of 5

Anonymous
Not applicable
Not sure this can be done
If so, I really want to know how
CVA

--
www.CVAengineering.com

IV11 Pro. sp2 and IV2008 Pro. sp1
Vault 2008 sp1
Window XP Pro sp2
Pentium 3.2 Ghz, 3.0 GB of RAM
NVIDIA FX 3400 91.85
SpacePilot V 3.3.6
wrote in message news:5786519@discussion.autodesk.com...
Hi everyone!

What code lines can search and highlight a part from a given item number or
ballon number?

I may also want to know what code lines can search for a part that don´t
have a ballon or parts that are missing a ballon.

Thanks.
0 Likes
Message 4 of 5

Anonymous
Not applicable
Hi think, that we need for some Sanjay help here.
0 Likes
Message 5 of 5

Anonymous
Not applicable
Perhaps something like this would help?

Joe ...

Public Sub HighlightBallon()
Dim oBallon As Balloon

For Each oBallon In ThisDocument.Sheets(1).Balloons
If oBallon.BalloonValueSets(1).Value = "15" Then
Dim oHLSet As HighlightSet
Set oHLSet = ThisApplication.ActiveDocument.CreateHighlightSet

oHLSet.AddItem oBallon

Dim oRed As Color
Set oRed = ThisApplication.TransientObjects.CreateColor(255, 0, 0)

oHLSet.Color = oRed
ThisDocument.Update
Exit For
End If
Next oBallon
End Sub


wrote in message news:5786519@discussion.autodesk.com...
Hi everyone!

What code lines can search and highlight a part from a given item number or
ballon number?

I may also want to know what code lines can search for a part that don´t
have a ballon or parts that are missing a ballon.

Thanks.
0 Likes