Jump to content

IEEmbedded copy and cut problem


maiux
 Share

Recommended Posts

Hello, I made this script to create an embedded IE in GUI:

#include <IE.au3>
#include <Clipboard.au3>
#include <GUIConstants.au3>
#include <GUIConstantsEx.au3>
#include <WinAPI.au3>

$hGUI=GUICreate("dummy",700,300)
$oIE = _IECreateEmbedded()
GUICtrlCreateObj($oIE,5,5,690,290)
GUISetState(@SW_SHOW)
_IENavigate($oIE,"index.html")
Do
    $msg=GUIGetMsg()

    if $msg=$GUI_EVENT_CLOSE Then ExitLoop

    Sleep(1)

Until False

index.html has a working form with a textarea in it. During script execution I CAN PASTE but I CAN'T COPY or CUT from the textarea: this simply does not work. For company reasons I must run only IE8.

Any suggestion to make copy and cut work?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...