Feb 16, 2001 #1 gcastillo Programmer Jun 9, 2000 127 MX Is there a way to import a text file, and use the lines like links to open another texts?
Feb 18, 2001 #2 Horrid Programmer May 20, 1999 373 easy way is to load it into a member then get it out line by line. ie member("X".filename = filename then use member("X".line[1] to get line one and so on. another way is to use a comma separated list ie item1,item2,item3 read the file in then use something like item 1 of text Upvote 0 Downvote
easy way is to load it into a member then get it out line by line. ie member("X".filename = filename then use member("X".line[1] to get line one and so on. another way is to use a comma separated list ie item1,item2,item3 read the file in then use something like item 1 of text
Feb 20, 2001 Thread starter #3 gcastillo Programmer Jun 9, 2000 127 MX I am going to do it. Thank you! Upvote 0 Downvote