Hi Chandan,
1. I'm not really understanding how you mean "use your formulas in
Excel sheet and get all your data"? If I cannot use formulas? I have
the Default.xls sheet as my data resource. Are you saying that I need
to create a new sheet with the formulas in the same Default.xls book
and have my script access this copied sheet inside the same
Default.xls book? Also this sheet is used throughout 15 scripts
utilizing login names and secure passwords etc this part I would like
to leave as is.
2. (DateAdd("d",1,Now())) I will try to write this VBscript for the
dates so instead of the script accessing the sheet for this date data
I guess the VBscript can do a better job of it?
3. abc & second(now) @
gmail.com I will try to write this as well in a
VBscript for the emails.
If I write the VBscript for Dates and Emails then do I still need to
access my Default.xls sheet for the dates and emails?
Here's an example of my script. Can you please guide me where I should
make the change? And show me example of how and what might work for
this script.
Example of my Date accessing GlobalSheet.
Browser("Client SSO").Page("Client
SSO").ASPAjaxCalendar("ctl00_ctl00_ContentPlaceHolder").Set
DataTable("TaskStartDate", dtGlobalSheet)
Browser("Client SSO").Page("Client
SSO").ASPAjaxCalendar("ctl00_ctl00_ContentPlaceHolder_2").Set
DataTable("TaskEndDate", dtGlobalSheet)
Example of my Email accessing GlobalSheet and Username
Browser("Client SSO").Page("Client SSO").WebEdit("regControl
$emailTxt").Set DataTable("Email", dtGlobalSheet)
Browser("Client SSO").Page("Client SSO").WebEdit("regControl
$txtUserName").Set DataTable("UserName_selfreg", dtGlobalSheet)
Can I set up something like this below?
Option Explicit
Dim vEmail, vDate
(Then I will need to replace these 4 lines of code but I'm not sure
how to write this vbscript?)