I need help to display inside an HTA data from a log file. The text of the log file is something like this(Job_Name_Log.txt)
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\001.softextension
12/20/2009 3:18:05 AM; Some comment
12/20/2009 3:21:44 AM; Job Complete
12/20/2009 3:21:45 AM; Job Completed Successfully
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\002.softextension
12/20/2009 3:18:05 AM; Some comment
12/20/2009 3:21:44 AM; Job Complete
12/20/2009 3:21:45 AM; Job Completed With Errors
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\003.softextension
12/20/2009 3:18:05 AM; Some comment(only 4 lines if the users close the application before job is completed)
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\004.softextension
12/20/2009 3:18:05 AM; Some comment
12/20/2009 3:21:44 AM; Job Complete
12/20/2009 3:21:45 AM; Job Completed Successfully
I want to display in two lists with select options the name of the jobs that were completed successfully and jobs that were completed with errors, something like this:
Job Completed Successfully
C:\Project Location\001.softextension
C:\Project Location\004.softextension
Job Completed With Errors
C:\Project Location\002.softextension
C:\Project Location\003.softextension
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\001.softextension
12/20/2009 3:18:05 AM; Some comment
12/20/2009 3:21:44 AM; Job Complete
12/20/2009 3:21:45 AM; Job Completed Successfully
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\002.softextension
12/20/2009 3:18:05 AM; Some comment
12/20/2009 3:21:44 AM; Job Complete
12/20/2009 3:21:45 AM; Job Completed With Errors
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\003.softextension
12/20/2009 3:18:05 AM; Some comment(only 4 lines if the users close the application before job is completed)
12/20/2009 3:18:05 AM;
Softaware install location: C:\Program Files\Software\
12/20/2009 3:18:05 AM; Software file being executed: C:\Project Location\004.softextension
12/20/2009 3:18:05 AM; Some comment
12/20/2009 3:21:44 AM; Job Complete
12/20/2009 3:21:45 AM; Job Completed Successfully
I want to display in two lists with select options the name of the jobs that were completed successfully and jobs that were completed with errors, something like this:
Job Completed Successfully
C:\Project Location\001.softextension
C:\Project Location\004.softextension
Job Completed With Errors
C:\Project Location\002.softextension
C:\Project Location\003.softextension