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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vquick
  • Content: Threads
  • Order by date
  1. vquick

    slideshow not working on webpage

    Im trying to use a gallerific slideshow and want to use perl to open any image in the directory and make the slideshow. It works if i dont use the for loop but as soon as use the for loop it stops working. any help would be appreciated. here is the code: <color red> #!/usr/bin/perl use...
  2. vquick

    sorting by user and counting

    sorry this my first post im trying to sort a list by user name and count the different functions they have done with time they did each function. here is example of what a file looks like: user;work;workgroup;function;start time;comp time user1;ef1;1;1;10/12/09 8:00;10/12/09 10:00...
  3. vquick

    Console window

    How can i stop console windows from popping up when i call a command in backticks? Im using nconvert to manupulate images and it pops up a console window. Ive tried using Win32::Console with the free option and cannot get it to work. here is my code with win32::console: my $cmd =...
  4. vquick

    unselect canvas

    When a canvas is selected i change the hightlight color to red. When another canvas is selected i want to unselect the previous canvas. ive tried: $canvas->selectClear; and this did not work. Anyone have any ideas?
  5. vquick

    canvas for loop problem

    I have 14 canvas's. they are names $canvas1 through $canvas14. I want to delete all of those canvas without putting delete for all 14 canvas. Here what i tried: for (1 ..14){ my $canvas = "\$canvas$_"; $canvas->delete("all"); } When i print $canvas is looks correct, but when i...
  6. vquick

    data files

    I have multiple user data files that i want to print out like the following: ID Name Role Group Level Type Apps AUTH LTR user1 SMITH JOHN SP 12 5 1 app1,app2 2,1 100 i have the included a example of a data file. the only columns that will change are columns 7 and...
  7. vquick

    Tk Frame -tile option

    While using perl-tk on hp-ux i used the -tile options with a Frame. I am now using Red Hat Linux 5.1 and when i run the tk gui i get "unknown option "-tile" ". Any ideas why this does not work on Red Hat? Here is the code: $image = $mw->Bitmap(-file => "bw.bm"); my $frame = $mw->Frame(-relief...
  8. vquick

    Perl sorting multiple columns

    Im am struggling with a script to sort by column 2 first and then column 4. Here is what my list looks like: E78343 2008/07/26 08:54:29 TYPE1 E78351 2008/07/26 08:54:30 TYPE2 E78365 2008/07/26 08:54:32 TYPE1 E42692 2008/07/26 10:08:02 TYPE1 E243687 2008/07/26...

Part and Inventory Search

Back
Top