Create a short way to save typing script over and over....

2008-08-07 Thread frankrentef
I have a statement url = 'http://xyzserver/' so in my code every time I need to use xyzserver I state url + What I' m now trying to do is create a call to a login process. The script for the login process is below. I'd like to call adminlogin and not have to keep entering the same several

Re: Create a short way to save typing script over and over....

2008-08-07 Thread Bruno Desthuilliers
frankrentef a écrit : I have a statement url = 'http://xyzserver/' so in my code every time I need to use xyzserver I state url + What I' m now trying to do is create a call to a login process. The script for the login process is below. I'd like to call adminlogin and not have to keep

Re: Create a short way to save typing script over and over....

2008-08-07 Thread Sean DiZazzo
On Aug 7, 11:56 am, frankrentef [EMAIL PROTECTED] wrote: I have a statement url = 'http://xyzserver/'  so in my code every time I need to use xyzserver I state url + What I' m now trying to do is create a call to a login process.  The script for the login process is below.  I'd like to