Main Menu

Recent posts

#1
General Visio / Re: How to only change the gro...
Last post by wapperdude - Today at 12:42:15 AM
Apparently I did!   :o
#2
General Visio / Re: A long list of shape data ...
Last post by Yacine - Today at 12:36:36 AM
I am not sure if I understand. Can you upload an example?

Otherwise 2 ideas
1) cascading dropdowns that subdivides the range of entries into categories, possibly over multiple levels
2) write a custom form in winform or VBA
#3
General Visio / Re: How to only change the gro...
Last post by Yacine - Today at 12:23:40 AM
Go into the group - Right mouse click, Group, Open ...
Select the shapes that shall keep their original formatting.
Go to the developer tab, Protect, Protect against Group Formatting.

Or did I miss something?
#4
General Visio / Re: A long list of shape data ...
Last post by Visisthebest - May 04, 2024, 06:53:16 PM
Thank you Wapperdude yes that is one option, we can even make it so the shape data of one shape (a smaller list of data items) is pushed in to the main shape shape (that has the long list) each time a value is changed.

Hopefully there is another option to deal with this as well. A custom winform is another solution of course, or working via Excel import/export.
#5
General Visio / Re: A long list of shape data ...
Last post by wapperdude - May 04, 2024, 06:25:12 PM
...sitting in my rocking chair, those Visio issues won't leave me alone...

Long lists seem problematical no matter how you slice them.  Slice them???  Hmmmm.  Off the top of my head, no thinking involved, how about multiple shapes?  Each shape has a smaller portion of the main list.

#6
General Visio / A long list of shape data does...
Last post by Visisthebest - May 04, 2024, 04:34:17 PM
I am running in to a pretty important usability issue with the shape data editor (for the end user).

The list of data items for this application is a lot longer than the shape editor window, if the user fills in a dropdown later in the list it always shifts position to put the item filled in to the end of the visible list items.

This is very awkward however for users that have to fill in lots of values quickly, it makes filling in a long list very user-unfriendly.

When you fill in a long list, you want it to stay in position. Now, after filling in one dropdown value you have to scroll down after each dropdown. Even more annoyingly, because scrolling still has focus on the dropdown when you use the keyboard to scroll down you change the value you just entered.

Are there ways to avoid this, or to otherwise help users fill in lots of data (a lot of dropdowns in this case) with the shape data editor?

Ideally someone knows a solution, but a good workaround would be great too!
#7
General Visio / Re: How to only change the gro...
Last post by Visisthebest - May 04, 2024, 04:28:34 PM
Thank you for the tips and ideas everyone, the simplest solution in this case turns out to go in to the shapesheet.
#8
Programming & Code / Re: Python ... again
Last post by Yacine - May 04, 2024, 08:47:13 AM
Second upload post.

more to follow ....
#9
Programming & Code / Re: Python ... again
Last post by Yacine - May 04, 2024, 08:38:39 AM
Thomas, I gotta up my game, you're showing me up!

I actually wanted to upload some youtube stuff, but you're way faster.

And this youtube requires so much right speech and editing.

I'll rather upload some commented notebooks. Hoping they'll carry the intention as well.
#10
Programming & Code / Re: Python ... again
Last post by Thomas Winkel - May 03, 2024, 05:02:18 PM
Autocomplete:
You cannot view this attachment.

Notes:
* Hit [Tab] after obj.
* Enter characters to filter, hit [Enter] to apply
* Filter is case sensitive
  -> app.ac + [Tab] -> no results
  -> app.Ac + [Tab] -> works
* Objects must be active
  -> I.e. the example in the screenshot only works if you run the cell before using "win"

More info here:
https://stackoverflow.com/questions/26990655/how-to-have-win32com-code-completion-in-ipython

Edit:
Attached a template Notebook.