To inspect an file just click on "Open and Inspect", select your file and you're good to go.
I should probably warn you though, currently it loads the entire file into memory while its doing its searching, so becareful if you don't have alot of RAM. If it works well I might add paging for large files later.
Most of the output is self explanatory, except for maybe the %'s and the PString and CString labels.
The %'s are a number I come up with that the program uses to determine the likely-hood of what its looking at being a string. To allow it to display more potential strings, change the "Cut-Off Threshold" value then inspect the file again.
PString, 2PString and 4PString mean that the string was read as a pascal-style string. This just means that the string length was before the string. PString is a byte length, 2PString is 2 byte length, 4PString is 4 byte length.
CString means that the string was read as a standard C-style null-terminated string.
Oh, and this was made with .NET 2.0 so you'll need it to run this proggy.
Let me know what you think guys.

