Novice_VB-Programmer
New member
- Local time
- Today, 09:54
- Joined
- Mar 18, 2010
- Messages
- 2
OK, I am familiar with SQL, and I am familiar with Access (as much as I can do in the GUI for basic to intermediate design)
I have never programmed in VB Script - and I'm afraid it's the only way I can do what I want to do.
What I'm working with: I have a list of tests (various subject that students MAY take) and the current passing score according to the state. The state may change the passing score over time. This is in the table PT_Lookup with the fields of TT_Num (autonumber) TT_Name (text) PassScore (int)
I have the need to record the student grade on any given test and the passing score of that test at that time, and a boolean value (pass=1/fail=0) in another table (PT_Result).
My form that I'm using pulls the name and TT_NUM and pass score in the combo box. The form can write the test ID (bound column) and the user enters actual score to the PT result table, but I can't find a way through the wizards or field properties to write the other 2 values I need -namely the 3rd column - not bound and the pass fail field based upon a comparison of the earned score and the pass score.
I would like these to 'self update' on the form as the user is filling in data for that record if possible - perhaps using an event after each field is updated - so the user can have a visual confirmation of the data as it will be written.
I have never programmed in VB Script - and I'm afraid it's the only way I can do what I want to do.
What I'm working with: I have a list of tests (various subject that students MAY take) and the current passing score according to the state. The state may change the passing score over time. This is in the table PT_Lookup with the fields of TT_Num (autonumber) TT_Name (text) PassScore (int)
I have the need to record the student grade on any given test and the passing score of that test at that time, and a boolean value (pass=1/fail=0) in another table (PT_Result).
My form that I'm using pulls the name and TT_NUM and pass score in the combo box. The form can write the test ID (bound column) and the user enters actual score to the PT result table, but I can't find a way through the wizards or field properties to write the other 2 values I need -namely the 3rd column - not bound and the pass fail field based upon a comparison of the earned score and the pass score.
I would like these to 'self update' on the form as the user is filling in data for that record if possible - perhaps using an event after each field is updated - so the user can have a visual confirmation of the data as it will be written.