Hi, I'm just starting with VB .net and I am trying to write an application to read through a logfile. This logfile consists of thousands of lines, where each line represents one message.
My question is: what is the best way to read this file?
My intentions are to display the logfile on the screen with certain sections of certain messages highlighted (decided by user input) and also graph the value of certain parts of the message throughout the logfile.
I got the application to work in Excel using VBA but as a learning exercise and also to make it more useful I would like to do it in VB. I have been thinking about creating a very large array full of LogMessage objects but I am no longer convinced this is the best way.
My question is: what is the best way to read this file?
My intentions are to display the logfile on the screen with certain sections of certain messages highlighted (decided by user input) and also graph the value of certain parts of the message throughout the logfile.
I got the application to work in Excel using VBA but as a learning exercise and also to make it more useful I would like to do it in VB. I have been thinking about creating a very large array full of LogMessage objects but I am no longer convinced this is the best way.