Hello,
I am hoping someone could help me out.
My script is "too large to be compiled" so I am trying to have e-prime call from a text file instead.
Here is the code that I have been using:
open "FinalTstQuestionTXT2.txt" for Input as #1
For IndxArt=0 to Article_Count - 1
For TxtCounter = 1 to FinalTstQ_Count
Line Input #1, textstring$
'Articles(IndxArt).FinalTst(TxtCounter).FinalQuestion = textstring$
Next TxtCounter
Next IndxArt
close #1
The program compiles and the script is generated successfully, but when I try to run it, e-prime crashes, and I get the windows message.
I know that e-prime is reading from the file because when I set the FinalTstQ_count number to more than the number of lines in the text file, I get the "Input past end of file" error message (as expected). It seems that the problem occurs when e-prime gets to the end of the text file.
Any help would be greatly appreciated!
Thank you,
Marisa