ajetrumpet
Banned
- Local time
- Today, 14:38
- Joined
- Jun 22, 2007
- Messages
- 5,628
Combo boxes cannot cascade if they don't have any data to do it with.I want to input the data by Form.
Can only be done with data in the table (you don't have any in there yet, right??).I would like to select the League from a combo box (done "cboLeague"). I would like to select the Home Team and Away Team by combo box but both filtered by League selection.
This is no problem. This is probably what you meant by calculated fields. Populate those calculated values on any form event of your choice (using "scores" as an example here)...I would like the "Form Difference" box to fill itself using the difference between the values that I enter in the "Home Form", "Away Form" boxes . Same goes for those named; Index Difference, Current Index Difference, Trend Difference, Score Difference and Total Score.
Code:
Private Sub On_FormEventOfYourChoice
Me.TotalScoreControl = Me.HomeTeamScoreControl + Me.AwayTeamScoreControl