You are clearly on a more advanced level than many of us. I cant find standard PVC fitting stencils for Visio. Dont you maybe want to create PVC fitting stencils for us rookies?
@BJJgurl11 жыл бұрын
Your website rocks. Great for engineers.
@VisioGuy9 жыл бұрын
@Graphic Systems In Visio 2007, there are AutoRecover options under Tools > Options > Save/Open tab. You can set the time interval there. Sounds like your drawing is really big, maybe it needs some cleaning up. Could be lots of unused shapes in the Document Stencil. Go to File > Shapes > Show Document Stencil. This shows masters that have been dragged into the document. You can try deleting them and if you don't get a "this master is being used in this document" warning, then you'll have deleted an unused master and reduced your file size. Otherwise, just cancel the delete operation when the pop-up appears.
@lynxsecurity2 жыл бұрын
Just found your channel, cool drawing. what version of visio are you using for this video.
@VisioGuy2 жыл бұрын
It looks like Visio 2010 to me.
@theripper9506 Жыл бұрын
Hi just saw this are you still using Visio and tutorials etc Nov 2023
@pjoestar6919 жыл бұрын
How did you add the action element to the Multi-Value shape that let you move between options in the shapedata list? I've been attempting to do this myself using the actions section in the shapesheet window but have not had any luck.
@chrisroth20439 жыл бұрын
Phillip Stevens Hi PS, It's not hard, but it IS hard to find an article on how to do this. You do, indeed add an Actions row or two to the ShapeSheet to get it tow work. Here's how I usually do it. My method is overly parametrized, but it makes future changes easier, in that you just have to change bits of data in the Shape Data row, but not in the right-click Actions ShapeSheet cells. We'll create a shape data value called ShapeType (Prop.Type) which can hold three possible values, then add three actions to get them to work. Note that “//” denotes a comment, and is not to be written into the ShapeSheet: Prop.ShapeType.Label = "Shape Type" Prop.ShapeType.Type = 1 //...this type is a fixed list Prop.ShapeType.Format = "Circle;Square;Triangle" Prop.ShapeType.Value = INDEX(0,ShapeType.Type.Format) //...item 0 in the list is Circle Add this helpful user cell that holds the index of the chosen value in the Shape Data row: User.Index_ShapeType = LOOKUP(Prop.ShapeType, Prop.ShapeType.Format) Here are three cells in the first action row that will set the shape to be “Circle”: // Display item 0 from the shape data list as the menu item text: Actions.Circle.Menu = INDEX(0,Prop.ShapeType) //…blast the menu as the value for the Prop.ShapeType Actions.Circle.Action = SETF(GETREF(Prop.ShapeType),Actions.Circle.Menu) // Show a check mark if item 0 is chosen. Expression in // parentheses is logical; it is either true or false: Actions.Circle.Checked = (User.Index_ShapeType = 0) // Two more action rows with similar formulas but different indices // will let you set Square and Triangle: Actions.Square.Menu = INDEX(1,Prop.ShapeType) Actions.Square.Action = SETF(GETREF(Prop.ShapeType),Actions.Square.Menu) Actions.Square.Checked = (User.Index_ShapeType = 1) Actions.Triangle.Menu = INDEX(2,Prop.ShapeType) Actions.Triangle.Action = SETF(GETREF(Prop.ShapeType),Actions.Triangle.Menu) Actions.Triangle.Checked = (User.Index_ShapeType = 2)
@pjoestar6919 жыл бұрын
Chris Roth Thanks! I actually found a solution before you posted. I found a shape for download with a similar principle and copied that formatting. I was trying to to SetF(getref(prop.name),"namehere") but it would not work unless "namehere" was number. The solution I found was to do SetF("prop.name",Actions.Row_2) which sets the name field equal to the name of the action in row 2. I'm now working on a slightly different problem if you think you might be able to help. I know how to show shape data on a shape (via Insert>Field) but I want to create a two-way link such that I can edit the shape data from the shape data window and from a text field on the shape itself. Do you know how to do that?
@waleedaldikhary4 жыл бұрын
Well illustrated. Thank you ...
@delphi8810 жыл бұрын
can you explain, where to read about creating advanced shapes like that? i cant find a video/info that will explain that.
@이경연-e4l7 жыл бұрын
I was looking for a symbol in visio 2016, it doesn't have it as the screen. Do you make the symbol yourself?
@JosephStealin3 жыл бұрын
whatever happened to the fixing and fasteners shapes?
@welshchrisandthedouchebags310610 жыл бұрын
Kermit THE Froooggg... is a Visio Guru. Who knew??!