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!

Search results for query: *

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

    Automatically generating Word Document

    I want to be able to generate a Word document from command line. The document will have a few fields. Rest of the info will remain the same. Example: c:> gen_doc.bat Start_Date End_Date The above should generate a document, with the values of the dates specified in the command line. Wajid
  2. lucknowm

    Preserving White Space in HTML

    Is there a way to preserve white spaces ( blanks, tabs etc.) in HTML. I am using print statement in Perl to read lines from a file and print them as follows : while ( <INP_FILE> ) { chomp; printf &quot;\n$_ \n&quot;; printf &quot;<br>&quot;; } But when the page is rendered...
  3. lucknowm

    Dynamic Popup Menu

    I want to poplulate options of a 'Popup Menu' dynamically. Example : If ( Parameter1 = &quot;A&quot; ) then popup_menu ( var , 'A1', 'A2' ) If ( Parameter1 = &quot;B&quot; ) then popup_menu ( var, 'B1', 'B2' )
  4. lucknowm

    Checking value of variable

    I am inputting a variable from a checkbox as follows : input_type = checkbox name = ora_err value = unchecked I want to implement following logic : if ( $ORA_ERR is checked ) { do something } help.
  5. lucknowm

    CGI and perl

    I am using Perl in CGI print p (&quot;line 1&quot; ); print p (&quot;line 2&quot; ); Why does it print a blank line after every line ?
  6. lucknowm

    I have a simple declaration : $

    I have a simple declaration : $FILE_SUFFIX = &quot;*.out&quot;; It give following error : Global symbol &quot;FILE_SUFFIX&quot; requires explicit package name at ./ice_cream.pl line 58. Execution of ./ice_cream.pl aborted due to compilation errors.
  7. lucknowm

    FOREACH statement

    what is error in following code : @dir = ( $d1, $d2, $d3 ); foreach ( $dir ) { chk_dir_exists ( $dir ) }; Keeps complaining &quot;Global symbol dir requires explicit package name &quot;
  8. lucknowm

    Batch Scheduling Software

    Does anybody knows of a good Unix job scheduling freeware ? Basically, I am looking for following capabilities : a. define a job b. define command line arguments c. define output file, error file etc. d. manage files ( remove old files ) e. inform when a job fails thanks
  9. lucknowm

    Copying file to DESKTOP

    I am trying to copy a file to my desktop using following FTP command : get file1.txt c:\&quot;documents and settings&quot;\userid\desktop\file1.copy.txt But the FTP command keeps choking due to the space between the name of the directory ( &quot;DOCUMENTS and settings&quot; ). heLP.
  10. lucknowm

    Sending E-Mail via batch

    I want to send an e-mail everyday to an e-mail address. Also the e-mail will have a file_name as attachment. Help ?
  11. lucknowm

    Running FTP Process in Batch

    I want to write a batch process which does the following, everyday : a. Connects to a server using FTP b. Transfers a specific file ( say &quot;dir1/log&quot; ) c. E-mails the file to an e-mail address. Any help will be appreciated
  12. lucknowm

    HP 2210 Installation Stops after 49%

    I am trying to load software for HP PSC 2210. After a failed installation, I tried to re-install. Now the installation always stops at 49% help.
  13. lucknowm

    Setting up FQDN (Fully Qualified Domain Name)

    I want to configure my Windows 2000 machine with it's FQDN (fully qualified domain name) address. Any help ?

Part and Inventory Search

Back
Top