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 Chriss Miller 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 margamo

  1. margamo

    cgi path to method

    Yes it does. Margamo
  2. margamo

    cgi path to method

    The package is "This" in the Mark folder, the method is Find_subject, I want to call the method. Margamo
  3. margamo

    cgi path to method

    I want to write something like this where it is an OO method my $foo = Mark::This::Find_subject(); . . . <input type="hidden"name="action"value" $title->Find_subject($subject)"> Anyway as you can see I am having proglems with this.
  4. margamo

    cgi path to method

    Hi, I have a package called Mark::This and it I have a method called Find_subject. How do I call the method in my cgi script? Thanks Margamo
  5. margamo

    File pattern match

    I guess I solved it myself. I changed the regex to read any word after Testosterone which included Enanthate and Cyprionate. Then I just one if statement instead of 2. Thanks for your help. Margamo
  6. margamo

    File pattern match

    Thanks for your prompt replies. I am Looking for output that looks like this: testing Date Med Dosage Duration U SEP 22, 2004 Testosterone 200 mg U SEP 02, 2004 Testosterone 200 mg every 3 weeks V JUN 22, 2004 Testosterone 200 mg...
  7. margamo

    File pattern match

    This is work related project. I have 1400 files with about 300 pages of test each to work through. This my code it works except for the Testosterone Enanthate and Testosterone Cyprionat example use strict; my $dir="t:/test"; opendir(DIRECTORY, $dir) || die("Cannot open directory"); my...
  8. margamo

    File pattern match

    I am steping through a file one line at a time. 2 samples of data I want to match are: 1. (x) Testosterone Enanthate(x) 200mg IM injection ( ) 250mg ( ) 300mg Patient's maintenance schedule: (x) Every two weeks ( ) Every three weeks ( ) Every month ( ) Every three days and 2. (x) Testosterone...
  9. margamo

    DAO function unknown error 3072

    I have the following code: ' Find the record that matches the control. Dim rs As DAO.Recordset Set rs = Me.Recordset.Clone rs.FindFirst &quot;[LastFour] = '&quot; & Me![Combo54] & &quot;'&quot; Me.Bookmark = rs.Bookmark MsgBox &quot;Record not found&quot; End If rs.Close half the time it...

Part and Inventory Search

Back
Top