Click here to Skip to main content
Click here to Skip to main content

JavaScript call from C++

By , 7 Jul 2011
 

Sample Image

Introduction

Sometimes when you are using the IE Browser Control inside of a C++ application, you need to get access to the HTML elements. We can do it by using standard COM objects like IWebBrowser2, IHTMLDocument2, etc. By this method, we can easily implement features like click button, click anchor, get input string, get HTML text, etc. Unfortunately, Microsoft did not provide similar objects for JavaScript. At any case, to make control for a JavaScript object inside of an HTML page is possible by using the traditional COM approach. This article describes the class CWebPage which allows to do it and a technique to call a JavaScript function from C++ code.

How to do

As a result of using the presented class, it will be easy to call any JavaScript function from C++ code. For implementing this feature, we should get a pointer to the IHTMLDocument2 interface. If we are using the CHtmlView class from MFC, we can get one by using the member function CHtmlView::GetHtmlDocument(). In the case of using IWebBrowser or IWebBrowser2 components, the function get_Document will bring us the desired interface. Here is an example:

CComPtr<IDispatch> spDisp = CHtmlView::GetHtmlDocument();
m_webPage.SetDocument(spDisp);

The rest of the things will be done by the CWebPage class. Here is an example of a JavaScript call without parameters:

m_webPage.CallJScript("Welcome");

An example of a JavaScript call with two parameters will looks like:

m_webPage.CallJScript("Miltiply","2.34","3.32");

The class implementation

class CWebPage
{
public:
  CWebPage();
  virtual ~CWebPage();

  bool SetDocument(IDispatch* pDisp);
  LPDISPATCH GetHtmlDocument() const;
  const CString GetLastError() const;
  bool GetJScript(CComPtr<IDispatch>& spDisp);
  bool GetJScripts(CComPtr<IHTMLElementCollection>& spColl);
  CString ScanJScript(CString& strAText,CStringArray& args);

  bool CallJScript(const CString strFunc);
  bool CallJScript(const CString strFunc,const CString strArg1);
  bool CallJScript(const CString strFunc,const CString strArg1,
                   const CString strArg2);
  bool CallJScript(const CString strFunc,const CString strArg1,
                   const CString strArg2,const CString strArg3);
  bool CallJScript(const CString strFunc,const CStringArray& paramArray);

protected:

  CComPtr<IHTMLDocument2> m_spDoc;

};

Calling technique

The above mentioned technique can be split into the following steps:

  • Getting a pointer to the IHTMLDocument2 interface.
  • Getting IDispatch for the JavaScript object in the HTML document.
  • Getting the DISPID for the given name of the JavaScript function.
  • Putting the parameters to the DISPPARAM structure.
  • Calling the JavaScript function by using the Invoke method of the IDispatch interface.

Here is an example of getting an IDispatch pointer to the JavaScript objects:

bool CWebPage::GetJScript(CComPtr<IDispatch>& spDisp)
{
  HRESULT hr = m_spDoc->get_Script(&spDisp);
  ATLASSERT(SUCCEEDED(hr));
  return SUCCEEDED(hr);
}

And here is the final function to call JavaScript:

CComVariant CWebPage::CallJScript(const CString strFunc,
                                  const CStringArray& paramArray)
{
  //Getting IDispatch for Java Script objects
  CComPtr<IDispatch> spScript;
  if(!GetJScript(spScript))
  {
    ShowError("Cannot GetScript");
    return false;
  }
  //Find dispid for given function in the object
  CComBSTR bstrMember(strFunc);
  DISPID dispid = NULL;
  HRESULT hr = spScript->GetIDsOfNames(IID_NULL,&bstrMember,1,
                            LOCALE_SYSTEM_DEFAULT,&dispid);
  if(FAILED(hr))
  {
    ShowError(GetSystemErrorMessage(hr));
    return false;
  }
  
  const int arraySize = paramArray.GetSize();
  //Putting parameters  
  DISPPARAMS dispparams;
  memset(&dispparams, 0, sizeof dispparams);
  dispparams.cArgs      = arraySize;
  dispparams.rgvarg     = new VARIANT[dispparams.cArgs];
  dispparams.cNamedArgs = 0;
  
  for( int i = 0; i < arraySize; i++)
  {
    CComBSTR bstr = paramArray.GetAt(arraySize - 1 - i); // back reading
    bstr.CopyTo(&dispparams.rgvarg[i].bstrVal);
    dispparams.rgvarg[i].vt = VT_BSTR;
  }
  EXCEPINFO excepInfo;
  memset(&excepInfo, 0, sizeof excepInfo);
  CComVariant vaResult;
  UINT nArgErr = (UINT)-1;  // initialize to invalid arg
  //Call JavaScript function         
  hr = spScript->Invoke(dispid,IID_NULL,0,
                        DISPATCH_METHOD,&dispparams,
                        &vaResult,&excepInfo,&nArgErr);
  delete [] dispparams.rgvarg;
  if(FAILED(hr))
  {
    ShowError(GetSystemErrorMessage(hr));
    return false;
  }
  return vaResult;
}

Notes about the demo

To call a JavaScript function from the demo, you should select a function in the tree in the left window. After this, press the "!" button on the menu bar.

History

  • July 07, 2011: Updated download files.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Eugene Khodakovsky
Software Developer (Senior)
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionIs there a way to receive a callback from JavaScript?memberKramer_19828 May '13 - 20:42 
QuestionWorks like charmmembermax_nowak14 Apr '13 - 22:39 
QuestionNeed a HTML file for abovemembersandeepyes31 Dec '12 - 22:08 
AnswerRe: Need a HTML file for abovememberBrook Monroe28 Jan '13 - 4:41 
GeneralVote of 5memberkuzor12 Dec '12 - 4:30 
Questionmaybe someone will be able to answer this, since the author is not really availablemembermeirs8418 Nov '12 - 21:15 
for some reason i get no js functions from the page even though the index.js file associated with the html target is full of them. did any one try to access functions on an associated js file and had the same problem?
as far as i know they should be accessed as window.* functions which is exactly what i do but it doesn't seem to work...
ideas anyone?
Questioncan't find the name of the method in the java scriptmembermeirs8414 Nov '12 - 5:25 
QuestionA question about m_spDoc in CWebPagememberwq818313 Jun '12 - 16:48 
GeneralMy vote of 5memberMember 432084415 Jul '11 - 12:12 
QuestionCan't find htmlmemberPeterHo3866 Jul '11 - 21:53 
SuggestionRe: Can't find htmlmemberEugene Khodakovsky7 Jul '11 - 7:37 
GeneralRe: Can't find htmlmemberPeterHo3867 Jul '11 - 16:01 
GeneralHelp MememberMember 288306710 Feb '11 - 9:50 
GeneralHelp MememberMember 288306710 Feb '11 - 9:48 
GeneralMy vote of 5memberMukit, Ataul7 Nov '10 - 2:02 
QuestionI am sure it is working because I already have a code similar to this, BUTmemberaah13411 Jun '10 - 5:22 
Questionhow to pass userdefined data type to javascript function such as struct ?memberMember 222813620 Oct '09 - 20:56 
GeneralGetIDsOfNames return Unknown namememberDabara26 Aug '09 - 3:58 
QuestionWhat about cross-platform?memberComaWhite8613 Dec '08 - 22:33 
Generalcalling java from c++memberkioo05093 Oct '08 - 17:14 
GeneralRe: calling java from c++memberMember 470826628 May '10 - 5:13 
QuestionHi can anybody help memembersrinileo23 Sep '08 - 15:46 
GeneralIHTMLDocument without windowmemberMuran26 Aug '08 - 0:52 
GeneralRe: IHTMLDocument without windowmemberMuran26 Aug '08 - 2:27 
GeneralRe: IHTMLDocument without windowmemberDabara26 Aug '09 - 4:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 7 Jul 2011
Article Copyright 2002 by Eugene Khodakovsky
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid