Feature or Bug ?
I designed - in a multimedia project - a “export the list of files” in a ListBox (the file names use a delimiter sequence) and set the number of fields with the first line (decoding the first line). *
I have a “book” who holds a British magazine (2000AD) who started to be published in 1976 (no bar code label [BCL] at this date) and I decided to add the bar code labels in the file names (a file name represent a 2000AD issue).
Because of the design I set “on purpose”, and the fact that no BCL on the first years, my export code does not creates a column for BCL.
So, I have the choice: either add a “false tag” that simulates a column for BCL (say running or complete) in the first line (filr name) who is a description of the magazine (an About this magazine entry) to get the correct number of Columns or change my code to detect the maximum number of columns in the file names loop and adds one if needed.
What is your feeling ?
a. about the problem: design failure (bug) or special feature (to be kept as is)
b. an advice for the solution to implement.
More info:
The main window have a ListBox who is populated from disk and display data about the selected entry. I added a way to export the ListBox contents (that will act as a list in another Window). The exported list will holds:
a. the issue name number (2000AD 0001),
b. the cover title (or a cover title just like: "The sensational issue 1),
c. the release date (1977-02-26)
d. a bar code label when available
Nota
The generated list is very usefull for
data debugging (not code, data). I was able to discover erroneous dates (a click in the Release date column), etc. These errors are always present when you enter so many data (the last issue number for 2000 AD is
1930 !)
You can also discover some duplicates spaces in the file names, etc.
The Find text is also of a good use for debugging data (text): you have the text below the search indow, but the code do not find it !!!
And I do not talk about the question mark in the file name whos a character line any other under OS X, but
not when running Windows ! And so, have to be removed (?)
At last, when I was getting data about an India comic book (Indrajal Comics), I added a field with the Character name: very useful to get the list of issues sorted by characters (excepted that in the last years, some issues were having two different characters ). That is why I added a global seach (a search in the text files description issue(s) (two files for each issue): now I am able to get the list of issues for a specific character (poluted by any advertising page).
The generated list in its own window:
I will clean the Open / Save and Trash icons in the ToolBar in the future.