yeungsprite
Programmer
Hello, I am new to Ruby and Windows programming and have a question regarding the WIN32OLE. The following sample code is used to launch MS Internet Explorer.
require 'win32ole'
ie = WIN32OLE.new('InternetExplorer.Application')
ie.visible = true
ie.gohome
What I would like to do is launch MS Windows Explorer (file manager / Windows GUI Shell) and determine the functions to call to traverse it (ie expand branches, open files, etc) for automation purposes.
Can anyone suggest resources on how to accomplish this?
Thanks very much!
require 'win32ole'
ie = WIN32OLE.new('InternetExplorer.Application')
ie.visible = true
ie.gohome
What I would like to do is launch MS Windows Explorer (file manager / Windows GUI Shell) and determine the functions to call to traverse it (ie expand branches, open files, etc) for automation purposes.
Can anyone suggest resources on how to accomplish this?
Thanks very much!