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.
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
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...
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...
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...
I have the following code:
' Find the record that matches the control.
Dim rs As DAO.Recordset
Set rs = Me.Recordset.Clone
rs.FindFirst "[LastFour] = '" & Me![Combo54] & "'"
Me.Bookmark = rs.Bookmark
MsgBox "Record not found"
End If
rs.Close
half the time it...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.