Visio Master shape being overwritten when added to the page - visio

I have created a visio master shape that shows fields from the shape property (Name, Title, Department, type). I add all the fields to be displayed on the shape and it looks fine on the master shape, but once I add the shape to the page, it only shows the first two fields (name, title). It seems to be reverting back to a default I can't get rid of, is there anything on the shape sheet that I can edit to remove this? Any help would be greatly appreciated.
Anag

Uncheck the "Match master name on drop" option in the master's properties.
When checked, it forces the behavior you describe (reuses old master if exists)

Related

Visio: Creating Automatic Numbered Label

I'm currently working on creating a new stencil for several components I use in Visio and I'm stuck at the point of providing proper labels. If you use a resistor from Visio stencil it automatically generates a label "R1" (for first resistor) and "Rk" for the kth resistor. How can I do something similar for my own stencil ?
1- I need to generate a label "ABCD #" (# number automatically generated based on instance count)
2- How can I position the location of this field?
PS:
1- Visio components have a custom defined field which allows for this (which I don't know how to create)
2- For capacitor for example the shapesheet shows an interesting entry
=SETF(GetRef(User.Label),"""C""&"&ThePage!User.AccumulatorCount)&SETF(GetRef(ThePage!User.AccumulatorCount),ThePage!User.AccumulatorCount+1)
which supposedly is how the count and name are generated (I'm not sure how the AccumulatorCount is defined it differs from element to element).
Thank You!
The EventDrop ShapeSheet cells for various electrical shapes have formulas similar to the one you have discovered:
SETF(GetRef(User.Label),"""C""&"&ThePage!User.AccumulatorCount)&SETF(GetRef(ThePage!User.AccumulatorCount),ThePage!User.AccumulatorCount+1)
The ShapeSheet for the page has a cell: User.AccumulatorCount for capacitors. Other User cells will be added as other shapes are dropped. You can set up your own system by adding a User cell to the page, say: User.Widget. Then you place the "Widget" version of the "SETF" formula into your own shapes.
You can create user cells by:
Open the ShapeSheet for the Page (right-click blank area of page, Show ShapeSheet)
Right-click in ShapeSheet and choose Add Section
Add a User-defined cells section
Find the User-defined cells section and similarly add rows to it via
right-clicking
You change the row names by typing over the red, row-name text on the left.
You enter values and formulas in the cells as you would in Excel.
You can toggle viewing formulas vs. viewing values by pressing F5
while in the ShapeSheet.
You have to make the User cell in the page first, so that your shape can reference it. Once your shape references the page cell, you can drag your shape into a stencil, and it will "drag the page User cell along too". So now, you can drop your Widget shape into a new document, and it will create the page User cell on the fly.
The system is basic and fragile. The count only goes up, and never down. If you have shapes with 1, 2, 3, 4 and you delete 1 and 2, the next shape will still be 5.

VSTS - How add picklist (string) into the area beside State, Reason, Area and Iteration for the bug

Would you be so kind to advise on how to add picklist (string) into the area beside State, Reason, Area and Iteration for the bug, please?
Many thanks, in advance!
Here is place where the picklist (string) field needs to be inserted
You can't add things to that region. The grey bar is a for system fields that are outside of your control.

SAPUI5 VizFrame: How to get the selected data points

I used a VizFrame to display data in my project.
The normal behaviour of the VizFrame when you select data in the graph you see a popover with the data of the selected point. When you select more than one point the content of the popover is something like in the screenshot: popover content.
I tried using attaching myself to the SelectedData Event. The oControlEvent.mParameters contain the data nodes being currently selected for THAT event.
For example: I click node A => the node A is in the oControlEvent.mParameters. => OK
Then I click additionally on node B (so node A and B are selected) => only the node B is contained in the oControlEvent.mParameters. => not OK.
What I need is the set of all nodes that are currently selected in the graph, not just the one that triggered the event.
This information must be contained somewhere, as the Tooltip correctly shows "2 data nodes selected" after the user clicked B.
Thanks for your help.
the oControlEvent.mParameters.data, or oControlEvent.getParameter('data') will (correctly) only contain the elements that actually triggered the event. (may be more than one data point if you select several data points in one go by dragging a rectangular area over the data points)
if you need all currently selected data points, use oControlEvent.getSource().vizSelection() (here, getSource() will return the vizFrame)
Cheers, iPirat

How to know for which Master a Visio shape belongs to

I am having difficulty in finding out the master shape for a Visio shape.
Suppose if I drag a Shape named 'Start Shape' from a Stencil to a document then Visio will create an instance for shape 'Start Shape' on the Document.
Now I can access the shape name using Name/NameU of the shape property, but using Name property I got name as 'Start Shape.12'
I need to find out the master shape name i.e 'Start Shape' from which the dropped shape is created. In the above case 'Start Shape'
Note that when you drop a master (shape) from a stencil, Visio creates a local copy of that master in the drawing (you could make those visible using the "Drawing Explorer" window). So when you refer to shape.Master you actually get a reference to that copy.
That means, if later you change the master shape in the stencil, and drop it one more time, you may get another local master (again with suffix). This also means that if you rename a master in a stencil, your local master (and thus Shape.Master.Name) will stay unchanged.
To get an "exact" source (if you need to) you may take a look at the "BaseID" and "UniqueID" properties of a master which may be helpful to figure out what was the original master in case it was modified.
I solved the problem,
through Shape.Master.Name property we get the Master Shape Name.

Adding fielddata to fixed text in report designer

Using the report-designer of Reportbuilder i want to add a long fixed text to my report with one or more included fields inside the text. Of course these fields should be filled with actual data, adjusting the text.
I remember I have done such a thing in the past, but cannot remember how. I thought you could accomplish this with a Text-field and something like 'This is the text and here {fieldname} fielddata is inserted', but that doesnt seem to work
Can anybody help?
Using reportbuilder 15.04
Response from Digital Metaphores:
Use the RichtText component! By setting MailMerge to true, you can add
datafields to text in the richtext editor
This adds the reference to the fielddata as a xml tag. Adding the fields Name from pipeline plData can be done like this:
<dbtext datapipeline='plData'>Name</dbtext>
Fill in the fixed text, then (making sure the focus is set to the text box, I.E. you have the flashing pipe cursor) right click in the place you want the data field to go, and click Create Placeholder.
In the Placeholder properties window give it a Label so you know what it is, then use the "Value" field to define what data from your datasets you want to be brought through.
You should end up with the Label you set in square brackets, like [Example] within the set text.