Monday 15 September 2014

HOW TO DISPLAY GOOGLE WEBPAGE IN AX 2012

Now we are going to Discussing about display google webpage in ax 2012.I referred the blog axguruu.blogspot.in and got this ideas.

we have to follow some steps....

Step 1:

Create one form (GooglepageForm)

Step 2:

Under the Design node right click select Activex control.



Step 3:

After selecting this control we get one dialog box here select "Microsoft web browser" option.



Step 4:

After write the Init() method in form level.
public void init()
{
super();
Activex.Navigate("www.google.com");
}

Step 5:

We get the output,,,


No comments:

Post a Comment