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 SkipVought 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: *

  1. lucknowm

    Automatically generating Word Document

    I have to fill up a lot of forms. Other than the Start_Date and End_Date, everything else is same. Hence trying to find out an easy way to do this. Wajid
  2. 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
  3. lucknowm

    error in Load database

    Dumps are compatible only for that platform and for exact same sort order. You cannot load from a backup taken in a different sort order. Also, it seems that you are having problems with your server since you are loading master. Hence before you do anything, change the sort order of the server...
  4. lucknowm

    sybase database hang-ups & deadlocks

    What is the version 11.9.2 , 11.9.3 ? The message means that process A was holding a lock on page (or row) R1 and waiting to update page (or row) R2. Meanwhile, there was another process B, holding a lock on page R2 and waiting to update R1 which was held by process A. What I suggest is that...
  5. lucknowm

    Preserving White Space in HTML

    One problem, the page is now showing blank line after every line abhay
  6. 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...
  7. 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' )
  8. 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.
  9. 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 ?
  10. 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.
  11. 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;
  12. lucknowm

    Batch Scheduling Software

    Well it can be done. But once you have a plethora of jobs, writing a different script will be time-consuming. This is the reason I am looking for a freeware which does all this.
  13. 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
  14. 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.
  15. 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 ?
  16. 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
  17. 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.
  18. lucknowm

    Setting up FQDN (Fully Qualified Domain Name)

    Where can the FQDN be configured ? Registry ? What are the steps ?
  19. 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