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 bkrike 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: moof15
  • Content: Threads
  • Order by date
  1. moof15

    tk help

    Hi all: I just need to know how to you reset a progress bar back to the beginning of the progress bar after it completes the first script. This is what I have now and it only does one script: $ProgressBar2->configure(-value => $loop_index2); $ProgressBar2->update; Thanks, moof15
  2. moof15

    Input

    Hi, I just need a script to take 7 variables and put them in a array and print them out Example: $DBName = "LS2DB001"; $Username = "LS2USER"; $Password = "LS2USER"; $filename = "convsql.txt"; $infilename =...
  3. moof15

    DBI-DB2 database question

    I would like to know if it is possible after you connect to the database using DBI then you can call a sql file with create tables in the file? Thanks, Moof15
  4. moof15

    xml queston

    Would I be able to encrypt a password in a xml file, The pl file is taking it and putting the password in a xml, I could encrypt it in the .pl file "-textvariable => \$Input{OwnerPassword}, -show => '*', but it shows the password in the xml? I am looking to encrypt it in...
  5. moof15

    tk:frame

    Can someone please explain how to do a frame within a frame? Thanks, moof15
  6. moof15

    Radiobutton

    I am getting a error running this script: $GUI{Balloon}->attach( $GUI{entryFrame}->Radiobutton([-options => @databases],); ); -balloonmsg => $screen->{widget}->{DBEngine}->{balloon} ); $GUI{Balloon}->attach(...
  7. moof15

    xml and perl

    Does anyone have a script that I could load data into a oracle database using a .dmp file. Thanks, Moof15
  8. moof15

    Question..

    Does anyone know what Catfile does or is??? Here is the syntax:$xs->XMLout($Opt, outputfile => File::Spec->catfile($ROOT, $xmlSaveFile)); Thanks, Moof15
  9. moof15

    Should I use "SYSTEM" or "EXEC"

    I am trying not to save this xml file in the program. Should I use exec or system to first run the program? exec"program.pl"; open(LOG, >"file-save.xml") || die " can't open the logfile to clear\n"; close(LOG);
  10. moof15

    Saving a file in the root

    I have to change this script from saving the file in the root to saving it in another directory. $ROOT = $^O =~ m/MSWin32/ ? $ENV{SystemDrive} : $ENV{HOME}, $xmlSaveFile = 'Install-save.xml'; $CWD = $FindBin::Bin; This Install-save.xml has to be saved in ...
  11. moof15

    Can Perl Execute a .exe in a Perl Script?

    Was just wondering if there is a perl script that could execute a .exe file from a perl script? e.g: imp system/manager@ls2db001 log=liqimp.log ignore=Y file=liqexp.dmp fromuser=LS2USER touser=LS2USER grants= N This would be the .exe how would I put it into a perl script? It is a import data...

Part and Inventory Search

Back
Top