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 Mike Lewis 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: yim11
  • Order by date
  1. yim11

    Help needed with formula for a view

    Hello, I am working on a view in Notes [4.6a] and am having trouble with a formula. The formula I have now is: SELECT Form="Sample Login"&deliver!="China"&(DateReceived>=[07/01/2002]) Which works well, but the manager wants a little more added to it... Specifically, I...
  2. yim11

    Help with error message please

    Hello, I have been given the task to try and figure out why an application we have at work will not work on 1 users workstation. The workstation is Windows 98SE. The application was written in VB, and the version of Oracle is 8. The error is when trying to logon to the database, after the...
  3. yim11

    Increment count?

    Thanks for your response. I think I maybe in over my head on this one. Lotus has no documentation on Define Globals at Event Initialize, so I may have to outsource or scrap this one. Thanks again!! -jim
  4. yim11

    Increment count?

    Hello, I am working on a field that I need to start and increment a count. More specifically: I have a field called 'Evaledby' where a persons initials are entered when they are assigned to an evaluation. What I'm trying to do is add a day count next to that field...so that when a persons...
  5. yim11

    Help needed talking to database

    Hello, I have the following script (posted below) that works for the most part, but fails when searching for the Business Name, Contact Name, or Contact Phone fields. Searches using the Type or Center fields work as expected. For example - the database has a text field called...
  6. yim11

    Flock and windows?

    Hello, I have a script I need to use that utilizes the flock funtion. I understand that the activestate perl install on windows does not use the flock command, my question is does anyone know a way to get around this or to allow the use of flock on a windows machine? The section of code that...
  7. yim11

    DBI Question

    Hello, If my perl scripts are on 1 server, and the SQL database I need to talk to is on a different server, is there a way via DBI to connect to that database? Something like: my $DSN='dbname'; my $user = "loginname"; my $pass = "password"; my $DBD='ODBC'; my...
  8. yim11

    Help needed with a subroutine please

    Thanks very much! Everything is good to go!
  9. yim11

    Help needed with a subroutine please

    Thanks for the reply, I added the my $scan = shift; at the beginning of the subroutine, and took the parens off the return $output, but still no luck getting it running. : ( Thanks for responding so quickly! -jim
  10. yim11

    Help needed with a subroutine please

    Hello, I have the following script shown below that ~should~ convert a string of text. The conversion subroutine works fine, I just cannot figure out how to pass the $scan variable into the subroutine and get the sub to return the converted string ($output). The $scan variable comes from a...
  11. yim11

    Help with guestbook needed

    Hello, I have the following guestbook, that works great - except new entries in the book are added to the bottom of the page, and I would like to change the script so that new entries are displayed at the top of the page. Any and all help with this is greatly appreciated! TIA! -Jim ---Begin...
  12. yim11

    Help needed w/a Script to query Access DB

    Hello! I have Perl script that talks with the Northwinds example database in MS Access using an ODBC DSN of Northwind. My problem is that the script only returns the first 4 values from the database table when run. My question is how can I fix the script to display all the results? Many...
  13. yim11

    Returning a value with a subroutine?

    Thank You Very Tom!!! I _really_ appreciate all your help (again)!! I'm working on doing translation code with $scan as the input now. Hope to be good to go soon! Again, THANK YOU very much! Jim
  14. yim11

    Returning a value with a subroutine?

    I apologize, its monday. I have a script, called catscan.pl, that runs from command line. When run it waits for a barcode swipe from a Cuecat barcode reader. The untranslated scan looks like ".C3nZC3nZC3n3C3vZENv2CNnX.fHmc.CNnWDhj1C3nZC3bW." The translated scan would be...
  15. yim11

    Returning a value with a subroutine?

    Thank you very much for your reply! I was thinking faster than I was typing when I posted :) I was told that using a subroutine for the cuecat translation section would be my best bet, but wasnt sure how to do that. It all seemed so simple when I started... I had a small script that when ran...
  16. yim11

    Returning a value with a subroutine?

    Hello! I have a small script that decodes a cuecat scan of a barcode. A barcode is swiped with the cuecat and the scripts returns the id number of the product. What I am trying to do is write a script that will process the swipe from a webpage... for example: a page is displayed with a...
  17. yim11

    Running java outside the HTML directory (Newbie Question)

    Hello, I have installed Suns JDK 1.2.2 on a Redhat system. I am able to run java applets in the html directory (/home/httpd/html) with no problems. BUT when I try to run applets from ~any~ other httpd directory (/home/httpd/cgi-bin, /home/httpd/cgi-bin/java) I always get a "class not found...
  18. yim11

    comparing users password to one stored in a database

    Hello, I am [trying] to write a script that will allow employees to clock in and out for work, and calculate the work hours for the week. I plan to use a pipe-delimited text file for the database. In the database, I plan to have fields such as username, password, timein, timeout, totaltime, etc...
  19. yim11

    Novell Connection

    Hello, I have a perl script that searches the contents of a directory. I need to alter the script to search a Novell network directory that requires a login and password. If anyone has done this before, or can point me to any resources that would help with this, it would be greatly...
  20. yim11

    Cron checking script?

    Hello, I have noticed that the cron on my Redhat 6.0 system randomly quits running scripts. Because I cannot narrow down why it does this, I am trying to implement a quick-fix by having a [perl?] script check to see if cron is running, and if not, then start it. Has anyone had any experience...

Part and Inventory Search

Back
Top