Login | |
|
 |
Re: parameterising a function name? - 6/28/2005 3:12:16 AM
|
|
 |
|
| |
mbouchard
Posts: 1922
Score: 16
Joined: 5/15/2003
From: USA
Status: offline
|
If I am getting you correctly, you want your end result to be something like, obj("link" & DAY).click where "link" & DAY would equal http://someurl/DAY.htm? If that is the case you could do something like obj("link" & day(dt) & ".htm).click Also, is link a variable from earlier in the script? i.e. Link = "http://someurl" If so, then your line would be obj(link & "/" & day(dt) & ".htm).click
|
|
| |
|
|
|
|
|