02-11-2009, 11:36 PM
Hi ,
I needto enter the username, password value from external excel sheet by using script.
Howcan i write the script for this condition
A B
Username Password
tutorial tutorial
abc cde
12345 12345
I did something
IT would be great if anyone suggests how do i write?
I needto enter the username, password value from external excel sheet by using script.
Howcan i write the script for this condition
A B
Username Password
tutorial tutorial
abc cde
12345 12345
I did something
Code:
set objExe= createobject("Excel.Application")
Set a=objExe.workbooks.open(" ")
Set b=a.worksheets("sheet1")
IT would be great if anyone suggests how do i write?