| Posted: 12:42pm 17 Dec 2017 |
Copy link to clipboard |
 Print this post |
|
You use ctrlval(#ref), something like this:
' Example only use your own reference numbers and variable names ' Reference numbers at start for GUI Controls DIM NBRef% = 10 DIM DBRef% = 11 DIM TString$
' Code to define your Numberbox and Displaybox '...
' Code to display your Numberbox and Displaybox '...
' Code to get value from Numberbox and display it in Displaybox TString$ = CtrVal(NBRef%) CtrlVal(DBRef%) = TString$ Edited by Azure 2017-12-18 |