Hi friends,
I have a below JavaScript code which will open an excel sheet.
After opening a Excel sheet. I need a Javascript code which need to Press letter Y(ascii code = 89) defaultly through Javascript Code not by keyboard.
Can anyone tell me that Javascript code?
.
I have a below JavaScript code which will open an excel sheet.
Code:
<script language="JavaScript">
var myApp = new ActiveXObject("Excel.Application");
if (myApp != null)
{
myApp.visible = true;
myApp.workbooks.open("C:\Spreadsheet.xls");
}
<script>
Can anyone tell me that Javascript code?
.
Comment