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!

Recent content by zfang

  1. zfang

    set selected item color

    Glen's version works. Thanks a lot for the help from you guys. George
  2. zfang

    set selected item color

    It doesn's work either. Thanks, George
  3. zfang

    set selected item color

    Hi, Dan: Thanks for your reply. I tried out your code. The color of the selected item is still the default color. It seems that the background color set in your code is overlayed by the default color, which is kind of gray/blue. Here is what I observed. The default color is shown on a item,say...
  4. zfang

    set selected item color

    Thanks for your reply. However, that is not what I want. I want to set the color of the selected item to a color that's not the default one. Your example is to set the background color of the whole list.
  5. 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
  6. zfang

    automated ftp script

    Thanks a lot Alex. Have a nice day. George
  7. 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
  8. zfang

    ADO connection object

    Patrick: Thanks a lot. It works great. George
  9. 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
  10. zfang

    stat question

    Hi, Sherzod: Thanks for your reply. I could not test your code yet because the IO::Dir is not installed on our machine. I need to ask the sys admin to install it. By the way, I got one solution from the another Perl forum. Replace my @fileAttributes = stat($file); in my code with my...
  11. 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...
  12. zfang

    strange problem

    Thanks a lot. Have a nice weekend.
  13. zfang

    strange problem

    jaa, thank you very much for your reply. One more point I want to ask. If I use strict in a code, then I have to declare a variable using my(). So, in this case, are there any ways to get the results as did in code 2? Thanks, George
  14. 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 =...
  15. 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

Part and Inventory Search

Back
Top