Yes there is. The subject and condition info is contained in a text file called "currentsubjectinfo.txt" as soon as the session begins. Here is some VB code that would allow your VB6 program to access it during the session:
Code:
 
Open "c:\medialab\currentsubjectinfo.txt" For Input As #1
Input #1, subject: subject = Mid(subject, 11, Len(subject) - 10)
Input #1, condition: condition = Mid(condition, 11, Len(condition) - 10)
Close #1