Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: CB06
  • Order by date
  1. CB06

    Visio right-click

    Hi! I would like to delete (or hide) all Visio default items which are in the right-click menu in order to add mine. Does someone know how to do and can help me? Thank you!
  2. CB06

    How to custom accelerators?

    I know that's a menu selection but I don't succeed in programming it: delete all default Visio accelerators and create mine... To delete Visio accelerators I wrote: For i = 0 To accelItemsObj.Count - 1 Set accelItemObj = accelItemsObj.Item(i) accelItemObj.Delete Next i ... but it stops...
  3. CB06

    How to custom accelerators?

    Hi! I would like to custom several Visio accelerators. For example I would like to link a function I've written with Ctrl+c (copy) but I don't know how to do. Thank you for your help.
  4. CB06

    How to access Visio file properties

    Hello! I would like to know how to access Visio file properties... I write this in my VBA code: Set fs = CreateObject("Scripting.FileSystemObject") sProp = fs.BuiltinDocumentProperties.Item(1) but it doesn't work. Can someone help me?
  5. CB06

    Problem with Statusbar

    Hello! I would like to write something in the Visio Statusbar when a drawing is created by automation. I've written: Set myUIObj = Visio.Application.BuiltInToolbars(visToolBarNone) Set myStatusbar = myUIObj.StatusBars.ItemAtID(visUIObjSetDrawing) Set myStatusItem =...
  6. CB06

    How to save a vsd file as a jpg file?

    Hi! I've a flowchart "MyGraph.vsd" and I would like to save it as "MyGraph.jpg" with a macro. In my code I tried to do: Visio.ActiveDocument.SaveAs DocPath & "MyGraph.jpg" It creates the new file but when I open it, there's no drawing. How can I do? Thanks in advance!
  7. CB06

    Problem about VBA in Visio!

    Hi! I would like to open the Windows dialog box "Open" with VBA specifying a filter. With Excel I've used: chosenFile = Application.GetOpenFilename(fileFilter:=allFileFilter, Title:=aWindowTitle, MultiSelect:=True) but it doesn't work with VBA in Visio (GetOpenFileName doesn't exist). Is...

Part and Inventory Search

Back
Top