Greetings : as the title indicates
how to obtain all values from the Y-axis , writing only the first value and giving those values in variables for example I did this scheme:
Hey seinrre!
Normally you would go for something like this:
On text changed txtBox arrayName Contains value textBox.Text Repeat arrayName.Height arrayName.At(loopindex, 0) = textBox.Text V_Weight = arrayName.At(loopindex, 1) V_Cost = arrayName.At(loopindex, 2) V_Qualitty = arrayName.At(loopindex, 3) [/code:31i0eswe] Hope this helps. Cheers!
Hey seinrre! Normally you would go for something like this: > V_Weight = arrayName.At(loopindex, 1) V_Cost = arrayName.At(loopindex, 2) V_Qualitty = arrayName.At(loopindex, 3) [/code:zcmjgc0a] Hope this helps. Cheers!
> V_Weight = arrayName.At(loopindex, 1) V_Cost = arrayName.At(loopindex, 2) V_Qualitty = arrayName.At(loopindex, 3) [/code:zcmjgc0a] Hope this helps. Cheers!
I had to change this part
V_Weight = arrayName.At(1, loopindex) V_Cost = arrayName.At(2, loopindex) V_Qualitty = arrayName.At(3, loopindex) [/code:zcmjgc0a] THANKS Bro
Develop games in your browser. Powerful, performant & highly capable.
My bad, I inverted X and Y. Glad to help.