Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mlg4035

  1. mlg4035

    Creating non-printing images?

    One way you might try to go about it is, instead of saving the image as a PDF out of Illustrator, I would start with a blank PDF file(for example, 'print' a blank Word document to PDF using Distiller), then add in your background picture(must be a PDF,BMP,GIF,JPG,PCX,PNG,or TIFF file) by...
  2. mlg4035

    Adobe Acrobat password protection

    Elcomsoft makes the "Advanced PDF Password Recovery" tool which can decrypt PDFs that have the 'owner' password set but not the 'user' password. The owner password prevents modification of a PDF file and the user password prevents the PDF file from being opened at all, except by the...
  3. mlg4035

    How to create a 2d array from file input

    Thanks again Coderifous, It works beautifully! Merry Christmas! 'Well, it's one louder, isn't it?... What we do is, if we need that extra push over the cliff, you know what we do?...Eleven. Exactly. One louder.'
  4. mlg4035

    How to create a 2d array from file input

    Thanks again Coderifous, However the only way I can get anything to print is to use: for $category(keys %hash_of_arrays_of_arrays ) { print WRITE "$category: @{$hash_of_arrays_of_arrays{$category}}\n"; } And I either get "B: ARRAY(0x1b1a364) ARRAY(0x1c4c358)...
  5. mlg4035

    CSV to complex HTML table: variable rowspan, depending on duplicates.

    This works beautifully for the whole file! One question for anyone who has the time: how can I modify this to process the file in groups of lines at a time instead of the whole file? I need a table for every unique value in field on of the data file...? I can write out the first x number of...
  6. mlg4035

    How to create a 2d array from file input

    Evan145, Codiferous, Thank you for your post Codiferous, I was only grasping at straws anyway. Seems like I'm doing a lot of that these days, maybe you guys can help me with another problem: I'm currently strugging with trying to get my head around exactly what you referred to...
  7. mlg4035

    How to create a 2d array from file input

    Evan145, I'm just a Perl hack, but I think this is what you're looking for: my @data; open( READ, &quot;< $filename&quot; ) or die 'Cannot open $filename: $!'; while (defined ($_ = <READ>)){ push @data, [split/,/]; } close( READ ); The &quot;[split/,/]&quot; does the work of splitting...
  8. mlg4035

    CSV to complex HTML table: variable rowspan, depending on duplicates.

    icrf, This can work! However, one thing: I don't need to display columns 1 through 3, is there an easy way to weed those out? Other than that I can make any other necessary adjustments. Thank you so much for your help! 'Well, it's one louder, isn't it?... What we do is, if we need that...
  9. mlg4035

    CSV to complex HTML table: variable rowspan, depending on duplicates.

    icrf, Your table looks right on the money. I haven't had a chance to test your code, but if it creates the table you drew up in your first reply, I think it will work! I have to apologize to everyone for the vagueness of my posts in this thread. I was in a rush to get out the door to get to...
  10. mlg4035

    CSV to complex HTML table: variable rowspan, depending on duplicates.

    Not stupid at all, sorry I was very unclear. I misspoke so let me rephrase, please. Each HTML table will have a title cell, the value taken from the first column of the CSV file. Please take a look at the following URL for actual data. It's for a Japanese company putting school exam results...
  11. mlg4035

    CSV to complex HTML table: variable rowspan, depending on duplicates.

    Good morning all, I'm having a rough time handling the output/display of CSV data into HTML tables. The way the CSV file is formatted, several fields can be duplicated over 2 or more rows to indicate that the value should span over that many rows in the HTML table. So, Cow, Dog, Lion...
  12. mlg4035

    Help creating custom warnings/error logs...

    Hey guys and gals, a customer of mine has requested that I help his in-house programmer implement a custom error handling system for one of his CGI scripts. I'm really struggling to find a good, easy solution that will satisfy his requirements. Basically he'd like all warnings, errors, fatals...
  13. mlg4035

    How do I Automate adding password to PDF file?

    David, Another option, if you don't have Acrobat and can use the PDFMaker plug-in for MSWord to create your PDFs, then you can set the password in the Security options(in Word: 'Acrobat' menu>'Change Conversion Settings...'> 'Security' tab) before you create the file. 'Well, it's one louder...
  14. mlg4035

    Downloading Secure Server Pages

    jbento, Please excuse my ignorance, but are there different levels of secured HTTP (HTTPS) pages? The reason I ask is that I don't have any problems downloading HTTPS pages using the Web Capture tool...? Can you post an example URL that you're having trouble with so I can test it? 'Well...
  15. mlg4035

    Downloading Secure Server Pages

    jbento, Please excuse my ignorance, but are there different levels of secured HTTP (HTTPS) pages? The reason I ask is that I don't have any problems downloading HTTPS pages using the Web Capture tool...? 'Well, it's one louder, isn't it?... What we do is, if we need that extra push over the...

Part and Inventory Search

Back
Top