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

    set selected item color

    Hi, Are there any ways to set the selected item color in a drop-down menu to a color other than the default one (the boring gray)? Thanks, George
  2. zfang

    automated ftp script

    Hi: I want to write an automated ftp script on Windows. Could anyone share an example? Thanks a lot in advance. George
  3. zfang

    ADO connection object

    Hi There: How to check whether an ADO connection object calls the open method successfully? Say, set conn = Server.CreateObject("ADODB.Connection") coon.open = "a connection string" Is there a way to check the db connection works? Thanks, George
  4. zfang

    stat question

    Hi: I tried to use stat() function to retrive properties of a file, e.g. last accessed time, last modified time etc. It works on some of the files of one directory, but not all. Here is the code: #/usr/local/bin/perl use strict; my $directory = "here is the directory"; opendir...
  5. zfang

    strange problem

    Hi, I have a strange problem with following code. code1: #!/usr/local/bin/perl my $temp; my $str; $str = 'test'; $temp = 'str'; print ${$temp}."\n"; Only a blank line was printed, however if I got ride of the declaration of $str, ie code 2: #!/usr/local/bin/perl my $temp; $str =...
  6. zfang

    capature 2 key strokes

    Hi: Can VBscript capature 2 key strokes, like ctrl+A,ctrl+B, etc. I have a html page that has a list of hyper links. When a user strokes ctrl+A, it will hilight hyper link A, and hits return key, the target wep page displays. Thanks. George
  7. zfang

    capature 2 key strokes

    Hi: Can Javascript capature 2 key strokes, like ctrl+A,ctrl+B, etc. I have a html page that has a list of hyper links. When a user strokes ctrl+A, it will hilight hyper link A, and hits return key, the target wep page displays. Thanks. George
  8. zfang

    redirect

    Hi: I have a problem related to redirect. Here is the senario: There are 2 perl scripts: A.cgi,B.cgi, which are located in two different servers. 1) A user fills a form 2)A.cgi process the form and redirects to B.cgi with passing parameters. It's required that the browse displays a message...
  9. zfang

    database pooling

    Hi: Is there a way to do database pooling to Oracle in Perl? Any advices are appreciated. George
  10. zfang

    date validation

    Hi: Are there any perl modules that deal with data validation, which is submitted from a web form. Assuming year,month, and day are input in 3 seperate text boxes. Thanks, George

Part and Inventory Search

Back
Top