[Solved] Share Excel.Application executable among multiple WSF processes?

Usage of GetObject() is documented in this old KB article. Error handling is required to get the first instance created. Like this: Dim excel On Error Resume Next Set excel = GetObject(, “Excel.Application”) If Err.number = 429 Then Set excel = CreateObject(“Excel.Application”) End If If Err.number <> 0 Then WScript.Echo “Could not start Excel: ” … Read more

[Solved] how to load the text in another textarea where the textarea is within iframe

Are you meaning that the filename what you want to load is contained in parent.frame_name1.iframe_name1.form_name1.textarea_name1 ? In this case you should change the <input type=”file”/> value dynamically, which is not supported by browsers (it would be a security issue). solved how to load the text in another textarea where the textarea is within iframe