smith Posted May 15, 2004 Posted May 15, 2004 Have three files - students, math scores and report cards. I want the teacher who logs on to go to report cards and do a find for their students. Then I have a button that I would like the teacher to click and it opens the math scores file with the same students already found - how do I write this? I think this is scripting 101, but I haven't passed that yet - THANKS.
Ugo DI LUCA Posted May 15, 2004 Posted May 15, 2004 Hi, Assuming your Report Card is a file where each student is affiliated to a teacher, by the TeacherID, the quicker would be to involve relationships rather than a find process. 1. Create a global field, gTeacherID 2. Define a selfRelationship "Self#gTeacherID#TeacherID" (gTeacherID matching TeacherID). 3. Define a Value List "RelatedStudents" using this relationship 4. Create a global text field gStudentIDsHolder 5. Create a relationship to the Math Scores file "Math#gStudentIDsHolder#StudentID" A 2 lines script : SetField[gStudentIDsHolder, ValueListItems(Status(CurrentFileName),"RelatedStudents")] GoToRelated Records ["Math#gStudentIDsHolder#StudentID"- show only] and maybe an external script which would locate the targeted Layout. HTH
Recommended Posts
This topic is 7500 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now