I'm building a custom right click using VBA for Word. I am not able to make the TooltipText appear. Is there anything I am missing in the code below?:
Set myCommandBar= CommandBars.Add ("name1",_ msoBarPopup, False, True)
If myCommandBar.Fi ndControl(, , "tag1", True) Is Nothing Then
Set CommandBarPopup 1= myCommandBar.Co ntrols.Add_(mso ControlPopup, , , 5, Temporary:=True )
With...
User Profile
Collapse
-
Custom CommandBar
I'm building a custom right click using VBA for Word. I am not able to make the TooltipText appear. Is there anything I am missing in the code below?:
Set myCommandBar= CommandBars.Add ("name1",_ msoBarPopup, False, True)
If myCommandBar.Fi ndControl(, , "tag1", True) Is Nothing Then
Set CommandBarPopup 1= myCommandBar.Co ntrols.Add_(mso ControlPopup, , , 5, Temporary:=True )
With... -
Reading XML
Using VBA, is it possible to read a specific child node? For example, I only want to read the second child node and all I know about the node is that it's the second node in my node list. In this example, I'd want to read Info B only:
<Example>
- <Child>
<Data>Data A</Data>
<Info>Info A</Info>
</Child>
- <Child>
<Data>Data... -
XML parsing
When parsing an XML document, is it possible to read a specific child node? For example, I only want to read the second child node and all I know about the node is that it's the second node in my node list.
Thank you -
Read an XML document using VBA
I want to be able to parse through an xml document and in the example below, I'm just extracting the data between nodes to a message box. I want to be able to iterate through each node (for the first 10).
Sub x()
Dim strBeginTag As String
Dim strEndTag As String
Dim intUnit As Integer
Dim strBuf As String
Dim count As Integer
intUnit = FreeFile
... -
adding a button to a comment
I want to customize the way a Comment (under the review tab) appears. I want to add buttons to a comment so that every time a comment appears, a button appears that will run another application if it is pushed. I've been playing around with the comments.xml and have added pictured. Anyone have any ideas about adding a buttong? -
VBA and customizing the ribbon
I want to customize the way a Comment (under the review tab) appears. I want to add buttons to a comment so that every time a comment appears, a button appears that will run another application if it is pushed. Anyone have any ideas? -
customizing the ribbon
I want to customize the way a Comment (under the review tab) appears. I want to add buttons to a comment so that every time a comment appears, a button appears that will run another application if it is pushed. Anyone have any ideas?
No activity results to display
Show More