Albion 0 Posted April 16, 2022 (edited) Good afternoon, I encountered such a problem, when executing a python script, the calculations are not written to the output fields, and therefore cannot go further, since they take values from them. Can anyone tell me what I did wrong? Edited April 16, 2022 by Albion Share this post Link to post
SwiftExpat 65 Posted April 17, 2022 The result of BeamSquare is a tuple string 'Quadrate Square', 1125 . You are not setting a value, 1125 to a variable. so when you read BeamSquare.Value it is evaluating a( tuple * 55) not (1125*55). I expect if you set a breakpoint on S in QuadrateBeam_Value and then inspect BeamSquare.value it will show you more detail. Could be wrong, but it is my best guess from the screen shots. Share this post Link to post
Pat Foley 51 Posted April 17, 2022 Here's idea make a Tlist<TQuadbeam> to help separate the UI from the math. I marked up the UI to help. 1 Share this post Link to post