Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
I got a problem to using ProUItree in dialogue. Does any one have the solution ?
1. How to show values in the ProUItree columns cell by Protookit API when initialization?
2. When I click the column cell in the ProUItree , how to edit it like "ProUIInputPanel" by Protookit API?
Solved! Go to Solution.
Maybe, a funtion ProUITreeInputpanelAdd() will help you.
Maybe, a funtion ProUITreeInputpanelAdd() will help you.
Thank you very much. It works now. 😀
err = ProUITreeInputpanelAdd(dialog, "TreeBOM", "ipText"); //********Create the "Inputpanel" in the Tree *****************
err = ProUIInputpanelValueSet(dialog, "ipText", L"Hello"); //********Set the string in the "Inputpanel" *****************
err = ProUITreeNodeComponentSet(dialog, "TreeBOM", "1","ipText", "column1"); //********Show the "Inputpanel" in the cell of defined column*************
After making a layout using UI Editor, I am programming using Toolkit.
When the "Model" button is clicked, I want to display the name of the current model in the Inputpanel.
But, I don't know how.
Can you provide a detailed explanation?
Hello.. GerryXu
I am a beginner Toolkit developer.
I try to make the same thing you make.
Can you share a program sample or source code with me?