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 bkrike 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
  • Content: Threads
  • 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?

    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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. yim11

    Help with an OR statement?

    Hello,<br>I have a perl script that looks at a users mailbox (var/spool/mail/USERNAME) and takes a message extracts the To, From, CC, BCC, Subject, and Message out and enters them as a comment in a database. The script looks for the email address in the To field by extracting everything between...
  16. yim11

    Submit problems

    Hello,<br>I am working with a perl program that has a form with a Submit button for performing a search. The button is a image file, and works correctly as shown in the section of code below:<br>------------<br>print $query-&gt;image_button(-name=&gt;'search',<br>-src=&gt;'<A...
  17. yim11

    @INC problems

    Hello,<br>I am working on a cgi script that uses util::LOG, which refers to LOG.pm, a file locally on my system. But when I try to run the script the http error log states that &quot;Can't locate util/LOG.pm in @INC (@INC contains. . . . .)&quot;.<br><br>My question is how can I tell @INC where...
  18. yim11

    more @INC problems

    Hello,<br>I am working on a cgi script that uses util::LOG, which refers to LOG.pm, a file locally on my system. But when I try to run the script the http error log states that &quot;Can't locate util/LOG.pm in @INC (@INC contains. . . . .)&quot;.<br><br>My question is how can I tell @INC where...
  19. yim11

    h2ph include error

    When trying to run &quot;cd /usr/include; h2ph -r -l&quot;<br>I receive the following error:<br>require '_h2ph_pre.ph';<br><br>I have _h2ph_pre.ph in the /usr/lib/perl5/5.00503/i386-linux/ directory.<br><br>My question is . . . How do i tell h2ph that it is there and to use it?<br><br>TIA!<br>-Jim
  20. yim11

    Removing extraneous info from emails

    Hello. I have been given a Perl script that [supposedly] strips extraneous info from emails before they are inserted into a database as comments. The script works GREAT with mail sent from lotus notes, not at all with messages from Outlook 98, and barely with mail sent from Outlook...

Part and Inventory Search

Back
Top