Click here to Skip to main content
Licence CPOL
First Posted 28 May 2002
Views 281,266
Downloads 8,015
Bookmarked 159 times

JavaScript call from C++

By | 7 Jul 2011 | Article
A class for easy implementation of JavaScript calls from C++ code.

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



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberMember 432084412:12 15 Jul '11  
QuestionCan't find html PinmemberPeterHo38621:53 6 Jul '11  
SuggestionRe: Can't find html PinmemberEugene Khodakovsky7:37 7 Jul '11  
GeneralRe: Can't find html PinmemberPeterHo38616:01 7 Jul '11  
GeneralHelp Me PinmemberMember 28830679:50 10 Feb '11  
GeneralHelp Me PinmemberMember 28830679:48 10 Feb '11  
GeneralMy vote of 5 PinmemberMukit, Ataul2:02 7 Nov '10  
QuestionI am sure it is working because I already have a code similar to this, BUT Pinmemberaah1345:22 11 Jun '10  
Questionhow to pass userdefined data type to javascript function such as struct ? PinmemberMember 222813620:56 20 Oct '09  
GeneralGetIDsOfNames return Unknown name PinmemberDabara3:58 26 Aug '09  
QuestionWhat about cross-platform? PinmemberComaWhite8622:33 13 Dec '08  
Generalcalling java from c++ Pinmemberkioo050917:14 3 Oct '08  
GeneralRe: calling java from c++ PinmemberMember 47082665:13 28 May '10  
QuestionHi can anybody help me Pinmembersrinileo15:46 23 Sep '08  
GeneralIHTMLDocument without window PinmemberMuran0:52 26 Aug '08  
GeneralRe: IHTMLDocument without window PinmemberMuran2:27 26 Aug '08  
GeneralRe: IHTMLDocument without window PinmemberDabara4:25 26 Aug '09  
QuestionHow to call external JavaScript ? Pinmembernaren_code4:48 21 Jun '07  
AnswerRe: How to call external JavaScript ? Pinmemberbumbumtrack19:52 2 Jul '07  
Generalsupport for firefox Pinmembervikram19794:04 8 Aug '06  
GeneralDebug Informatoion corrupt PinmemberAdeel68821:22 21 Jun '06  
QuestionReverse task, how to call C++ function from JavaScript? PinmemberM A V14:42 21 Jun '06  
AnswerRe: Reverse task, how to call C++ function from JavaScript? Pinmemberjamesmhall4:05 30 Mar '07  
There are two ways to go the opposite direction. The first is to use new ActiveXObject("App.Class");, where App.Class is the VersionIndependentProgID in the CLSID definition in the registry. NOTE: this will create a *new* instance of your class and you will need to communicate back to the BHO or container class.
 
More ideally, when you have a containing object, such as an explorer bar, you can use window.external.methodName(args); to communicate directly with the parent container. You will need to add the method definition to the IDispatch interface definition for your object.
AnswerRe: Reverse task, how to call C++ function from JavaScript? Pinmemberwww.add-your-page.com4:26 8 Oct '08  
GeneralRe: Reverse task, how to call C++ function from JavaScript? PinmemberM A V4:58 8 Oct '08  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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