

ASPX FILE VIEWER FOR MAC UPGRADE
There are many other features available in the upgrade version of Project Viewer (MPP+) at the rate of $10 per year. You can also print MPP files and convert them into PDF. Please let me know of any other suggestions.ĪBLogFile - a realtime log viewer, a work in progressĪBHotKeys - you don't know the functionality your missing out on till you use it.It includes all the MS Project view types like Task Sheet, Grant Chart, and Resource Sheet. I understand about your source code, I have a number of things like that.

I don't get waht you mean by filtering, do you mean hiding certain lines if they start with certain characters, or certain lines if the contain certain characters? If this is useful i can add it without any problems. I was going to open it in chunks, thus only requiring 100kb or so of memory. I've been palnning to make some changes to the way that the log file gets read. I originally wrote it for my own use, and i only had small log files to open < 2Mb. I have made changes already with regards to the Idle time, I was previously using Timers, i now use Window notifications for checking when a file changes, but the artical hasn't been updated yet. What I can do is help you out with some of the problems we encountered and give away some codesnippets (and the concept) if you like.ĭon't misunderstand me, I am not critisizing your code, just helping you to improve it.

Unfortunatly I cannot give away the source since it is property of my company. It also saves a huge ammount of memory since I only store the locations of the 'endline' characters in memory (Array). It will load the rest of the file in a different thread (in the background) without interfering with the userinterface. I have written a logfileviewer that displays the end of a file instantly (regardless of the size of the file (up to 4 Gb)) and immediately starts tracking any changes in the file. The reason for this is that it reads the entire file in memory and starts reading at the beginning of the file. I tried it with a 900 Mb file and had to reboot my entire system. It cannot cope with very large files, 500 Mb and higher. It does not run in 'idle' time, therefore it will interfere with the running processes on a system. In my (humble) opinion, this logfileviewer lacks functionallity at several places: Trace and logfiles tend to be very large, especially when you are trying to search for problems that occur only once in a while.

This program currently does what was originally required by myself. I believe this project to be of great benefit, I will be willing to add features as people suggest them.
ASPX FILE VIEWER FOR MAC HOW TO
The hardest part of the project was how to organize the data in memory, so that it is easy to add new data, keep track of the changes, and quick to display the data. My problem was, if I wanted to see the changes, I had to keep reopening the file, thus ABLogFile was thought of. I was doing some work, a program that updated a file every couple of seconds. This program was thought up in the early hours of the night a couple of weeks ago. ABLogFile supports a very basic find function. It also automatically scrolls to the newest line. The new changes are displayed in a bright color and then fade to the normal text color. All that is required is to open a text based log file, this program will check for any changes to the file and automatically display them on the screen.
ASPX FILE VIEWER FOR MAC DOWNLOAD
