I am new to AutoIt so forgive me for being a noob. I am working on a script that takes user input through some calculations to come up with several dosing mutipliers. I want to display all of the variables in the same window. I have tried guicreate but I can not firgure out how display the values of the variables. What is the best way to do this?
The code I am pasting shows eah value in a msgbox one at a time. it is very crude and simple at this point.....
;Input parameters for vanc dosing calculation
$crcl = InputBox("CrCl","Enter CrCl for Patient")
$abw = InputBox("ABW","Enter ABW for Patient")
$Cl = 0.695 * ($crcl/$abw) + 0.05
$Vd = 0.7 * $abw
$k = (($Cl*$abw) * 0.06) / $Vd
$T = 0.693 / $k
;Display dosing value
MsgBox('Cl','The Cl is: ',$Cl)
MsgBox('Vd','Vd is: ' ,$Vd)
MsgBox('k','k is: ',$k)
MsgBox('T1/2','T1/2 is: ',$T)
Thanks