[RESOLVED] Transfering stats from one form to another?
Ok i have my stats on my character creator set to on the frmRace you chose your race and get + So many stats per race you chose. Then you go over to the frmRoller and roll your stats. I would like to combine those on frmCreatetionEnd. Do i need to use a module since there on 2 differnt windows? and how would i have the module read the forms?
--------------------------------
These are on the frmRace Form.
The code for the bonus stats are :
lblStrBonus
lblIntBonus
lblDexBonus
lblConBonus
lblWisBonus
lblLucBonus
--------------------------------
These are on the frmRoller form.
The code for the rolled stats are :
lblStr
lblInt
lblDex
lblCon
lblWis
lblLuc
Ty for your time.
Re: Transfering stats from one form to another?
A basic example:
Code:
'on Form1
Label1.Caption = Form2.Label1.Caption
Re: Transfering stats from one form to another?
Awsom ty worked perfect :D