The Internet Explorer Web Controls Packages

Posted on

I had a problem running the IE web controls package. My.NET framework version is 1.1.4322. When I run the Build.bat it created a build folder and the build folder.

  1. Where Is The Internet Explorer Web Browser

. The events of the WebBrowser and the InternetExplorer object are triggered each time the user moves to another URL with Internet Explorer’s navigation buttons or the WebBrowser control’s navigation methods.

Where Is The Internet Explorer Web Browser

They also monitor the progress of each download and let your application know when the download of a page is finished. BeforeNavigate2 This event occurs when the WebBrowser control is about to navigate to,a different URL. It can be caused by external automation (by calling its Navigate method) or by internal automation from within a script or when the. User clicks a hyperlink in the current document. Your application has an opportunity to cancel the navigation by setting the method’s Cancel argument to True; TIle first argument, pDisp, represents the object on which the document is displayed. Since this object is usually the WebBrowser control, you can use this argument to access the properties of the control. PDisp.Name is its name, pDisp.Width and pDisp.Height are the control’s dimensions, and so on. The URL argument is the destination URL, (specified by the Navigate method orin the hyperlink that was clicked), and Flags is a reserved argument. The TtzrgetFrame Name argument is the name of the frame in which to display the specified document, or it is NULL if the document is to appear on the control, outside any frames.

The Post Data and Header arguments are the same as for the Navigate method, The application can set the Cancel argument (notice that it’s passed by reference to cancel the navigation process. If you set this argument to Troe, the naviS-tion won’t even start.

To stop a navigation process in progress, use the Stop NavigateComplete This event occurs after the control has successfully navigated to the new location. Some of the document’s resources may still be downloading (a large image, for instance, may take quite a while), but at least part of the document has been received from the server, and progressive rendering bas started already. To interrupt this process, you must call the Stop method. Download begin This event occurs when a navigation operation is beginning & It’s triggered shortly after the BeforeNavigate event (unless the navigation was canceled), and it.signals your application to display a bUsy message or change the pointer’s shape.

The DownloadBegin event has the following declaration. Sub WebBrowser1-DownloadBegin DownloadComplete. This event occurs when a navigation operati Open in the hyperlink’s shortcut menu. The NewWmdow event gives your application the opportunity to halt the creation of the new window. When this event is used with Internet Explorer, the new window is another instance of Internet Explorer. “ When the NewWmdow event is used with the WebBrowser control, however, your application must either create a new WebBrowser control and display the document there or request that the new document be displayed in the same window. If your ‘application creates a new WebBrowser.control, it must pass all the parameters from the NewWmdow event directly to the Navigate method on the newly created WebBrowser control. If you decide to display the new document on the same control, you must again pass the parameters from this event to the Navigate meth04,in the existing window.

The argUments’ of the New W event are identical to the arguments of the Navigate method, except for the last argument which is a True/False value indicating whether your application will create the new window (set it to True) or not (set it to False).

Internet Packages Internet packages are.cab-based setup programs that are designed to be downloaded from a Web site. Internet Explorer uses a process known as Internet Component Download to install your Internet application.

The Package and Deployment Wizard automatically includes information needed for this process in the packages it creates. There are several types of Visual Basic applications or components that can be packaged for Internet deployment, including:. ActiveX controls (.ocx files) that are displayed on a Web page. ActiveX.exe or.dll files, designed to run on the client or the Web server. ActiveX documents, that are displayed in place of a Web page. DHTML applications, client-based applications that link HTML pages to Visual Basic code through the use of Dynamic HTML. IIS applications, server-based applications that link HTML pages to an object called a webclass.

The webclass intercepts server requests from the browser and responds to them with Visual Basic code. For More Information Extensive information about the Internet Component Download process can be found in 'Downloading ActiveX Components' in Building Internet Applications in the Component Tools Guide. Parts of an Internet Package There are several files that are always part of your Internet packages.

These include:. The primary.cab file for your application. The primary.cab file for Internet packages is used as the setup program for your application.

The primary.cab file includes project components, such as the executable or DLL for your application or your.ocx file for controls, an.inf file referencing secondary cabs and containing safety and registry information, and all required dependency files that are not in secondary.cabs. All required support files.

Support files for an Internet application may include HTML files, Active Server Pages (.asp) files, graphics files in a variety of formats, or other files your application must access to run. Any secondary.cab files for your application. In addition to project files, applications often reference several run-time components, such as the Visual Basic run-time DLL, individual ActiveX controls, and data access objects. If these components are available online in prepackaged.cab files, you can reference those.cab files in your primary.cab, rather than shipping the files yourself. Note When you create a package for an ActiveX control that requires a license key, the license file (.vbl) is not automatically included in your package. You must add the file manually on the wizard's Included Files screen. Secondary.cab files provide an efficient way to ensure that the user has the most current version of components.

If a newer version of a component in a secondary.cab file becomes available on the external Web site, users who download your application will receive the updated version automatically. Note If you cannot or do not want your application setup to require a connection to the Internet, you may place the secondary.cab files on a server within your intranet. An intranet server often provides for faster downloading and allows users to download from a secure network. How Internet Component Download Works After you package your Internet application or component for download, you deploy it to a specific location on a Web server, from which users can access it. Usually, your package is referenced as part of an existing Web page — that is, your control or other component is hosted by a Web page. When a user accesses the Web page that hosts your package, the system downloads your package to the user's computer. The package is verified for safety, unpacked, registered, installed, and then activated.

All of this occurs in the background and is controlled by the browser. The Package and Deployment Wizard plays two parts in the process described above:. It packages your component and its associated files into a compressed (.cab) file that the browser uses to download your component. The Package and Deployment Wizard determines which files your project needs to run, gathers those files, compresses them into a.cab file, and generates the HTML that points to your component. It deploys your packaged files to the Web server location of your choice. For more information on deploying your Internet component download package, see 'Application Deployment with the Wizard' later in this chapter.

Safety Issues When you prepare Internet applications and components for download, you must package them into a file that can be delivered to the user through a browser. In addition, you must perform a few precautionary steps to ensure users that your application will not harm their computers. These steps can include:. Digitally signing your components so that users can verify the contents of the component and identify you as the software's source. Setting safety levels to vouch that your components will not damage users' computers or corrupt their data. Arranging for licensing of any components that require it.

The Internet Explorer Web Controls Packages

When you add an ActiveX control to a Web page, you are distributing it to any users who download the control from the page. Unless you license the control, there is little to prevent an end user from taking your control and using it in their own applications. The license acts as a kind of copyright for your control, preventing unauthorized use. Safety settings can be made within the Package and Deployment Wizard. When you work with an Internet package, a screen in the wizard asks you to verify safety settings. This screen appears lists only the objects in your project that do not implement a safety interface called IObjectSafety.

Note Signing and licensing must be done outside of the packaging process. You should arrange licensing for any components before you package the component. Digital signing can be done after you package the application — the Package and Deployment Wizard reserves space within the.cab file for information about the digital signature. Data Access Components in Internet Packages If the application for which you are creating an Internet package contains any of the files listed in the table below, you must accept the default setting for these files on the File Source screen. The default setting for each file is to download it from an alternate location instead of including it in your package. This ensures that special handling needed for each of these files will occur.

The files and their default settings are as follows: File Default Download Location Msdaosp.dll Msado15.dll Msadcf.dll Odbc32.dll Msador15.dll Msadco.dll For More Information See 'Steps to Prepare your Component for Download' in the Building Internet Applications book of the Component Tools Guide for detailed explanations of component safety, licensing, and signing. See 'Setting Safety Levels for ActiveX Components' in 'Downloading ActiveX Components' in Building Internet Applications in the Component Tools Guide for more information on the IObjectSafety interface.