I want to trigger some actions when one of my shapes "connects" to another of my shapes. The best way I can see to do this is if I can figure out how to pull the formula out of the PinX cell rather than the value. But I am stumped.
When the shapes are disconnected, PinX has a simple number in it Like (3.6353). But when the shapes (both 2-dimensional) connect, Visio places formulas into the PinX/PinY cells of my target shape of the form:
=PNTX(LOCTOPAR(PNT(Int2.19!Connections.X3,Int2.19!Connections.Y3),Int2.19!EventXFMod,EventXFMod))+0 in
indicating that my local shape is pinned to a connection point in the shape: "Int2.19".
I figure, if I could get at teh formula, I could do some interesting things relating the two shapes, but that is where I am stumped.
Any help woudl be appreciated.
In all the examples, that I found in the Web, the connection informations where gotten by VBA code. shape.connections... and so on.
I'm also looking for a solution to evaluate the string and not the value of a formula, so I can extract the connection shape's name without macro.
Community and VisGuy! any idea?
Here's a quick little macro that shows how to fetch the PinX formula. (I tend to use msgbox instead of debug.print.)
Sub FetchCellFormula()
Dim visShape As shape
For Each visShape In ThisDocument.Pages(1).Shapes
If visShape.Master <> "Dynamic connector" Then
MsgBox visShape.CellsU("PinX").Formula
End If
Next
End Sub
HTH
Wapperdude
Thank you Wapperdude,
the deal is not to get the connections through VB code, but to read it directly by a function in the shapesheet.
It is so frustrating to see the connection in a formula in front of you and not beeing able to handle it.
Browser ID: smf
(is_webkit)
Templates: 1:
Printpage (default).
Sub templates: 4:
init,
print_above,
main,
print_below.
Language files: 1:
index+Modifications.english (default).
Style sheets: 0:
.
Hooks called: 50 (
showintegrate_autoload, cache_get_data, integrate_pre_load, integrate_load_session, integrate_verify_user, cache_get_data, integrate_user_info, integrate_load_board, cache_get_data, integrate_board_info, cache_get_data, integrate_allowed_to_general, integrate_pre_load_theme, cache_get_data, integrate_allowed_to_general, integrate_simple_actions, integrate_allowed_to_general, integrate_load_theme, integrate_pre_log_stats, cache_get_data, integrate_actions, integrate_pre_parsebbc, integrate_bbc_codes, integrate_bbc_print, integrate_post_parsebbc, integrate_pre_parsebbc, integrate_bbc_print, integrate_post_parsebbc, integrate_pre_parsebbc, integrate_bbc_print, integrate_post_parsebbc, integrate_pre_parsebbc, integrate_bbc_print, integrate_post_parsebbc, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general, integrate_menu_buttons, integrate_current_action, integrate_theme_context, integrate_allowed_to_general, integrate_allowed_to_general, integrate_allowed_to_general)
Files included: 25 - 925KB. (
show/home/iw0lkfe3x6cq/public_html/vgforum/index.php, /home/iw0lkfe3x6cq/public_html/vgforum/Settings.php, /home/iw0lkfe3x6cq/public_html/vgforum/cache/db_last_error.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/QueryString.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Subs.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Subs-Auth.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Errors.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Load.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Security.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Subs-Compat.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Subs-Db-mysql.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Cache/CacheApi.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Cache/CacheApiInterface.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Cache/APIs/FileBased.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Subs-Charset.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Unicode/Metadata.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Unicode/QuickCheck.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Session.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Logging.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Class-BrowserDetect.php, (Current Theme)/languages/index.english.php, (Current Theme)/languages/Modifications.english.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Printpage.php, (Current Theme)/Printpage.template.php, /home/iw0lkfe3x6cq/public_html/vgforum/Sources/Unicode/CaseUpper.php)
Memory used: 767KB.
Tokens:
post-login.
Cache hits: 7: 0.00096s for 22,302 bytes (
showget modSettings: 0.00040s - 19983 bytes, get known_languages: 0.00015s - 1277 bytes, get board_parents-0: 0.00010s - 2 bytes, get permissions:-1: 0.00008s - 50 bytes, get theme_settings-1: 0.00010s - 980 bytes, get log_online-update: 0.00011s - 10 bytes, get menu_buttons--1-english: 0.00002s - 0 bytes)
Cache misses: 1: (
showget menu_buttons--1-english)
Queries used: 9.
[Show Queries]