I am using the Data-Shapes package to gather input from users that helps them display plumbing calculations. Data-Shapes is working flawlessly in terms of popping up and asking for input once users run the script through Dynamo player. I am wanting to know if it is possible for another popup window to appear after completing the calculations that displays what is in my final watch node. I have attached two images showing the overall node layout and the final output I would like displayed in a popup window. I can find a lot of information online about gathering input types but nothing about displaying output. Thanks for the help in advance!
Wow, this is exactly the solution that I was looking for. Thank you for your help @salvatoredragotta! I will look into the System.Windows class further as this seems very powerful. Thank you again.
I am using your script which is functioning perfectly as described. I was just looking to add a little more control to the popup; such as CenterScreen, but I cannot seem to work out where to insert the code.
Iâm afraid I have no Python knowledge but I tried to apply some intuition and help from Google.
I have come to the conclusion that the position should be defined when the Form is being initially shown. Therefore I tried the following:
clr.AddReference(âSystem.Windows.Formsâ)
from System.Windows.Forms.FormStartPosition = CenterScreen import Form,Label
Forgive my ignorance, but what am I doing wrong? Many examples online seem to be defining the location in a âprotected voidâ. But I tried using this method & couldnât work out where this should be located in the script.