You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Doing
e1 = WIN32OLE.new('Excel.Application)
e2 = WIN32OLE.connect('Excel.Application')
one would expect that the command WIN32OLE#command connects to the already running Excel instance.
However, it creates a new Excel instance.
e1.Hwnd == e2.Hwnd
=> false
This behaviour is not desired for some applications.
The text was updated successfully, but these errors were encountered:
Doing
e1 = WIN32OLE.new('Excel.Application)
e2 = WIN32OLE.connect('Excel.Application')
one would expect that the command WIN32OLE#command connects to the already running Excel instance.
However, it creates a new Excel instance.
e1.Hwnd == e2.Hwnd
=> false
This behaviour is not desired for some applications.
The text was updated successfully, but these errors were encountered: