Rafiqul Islam
Posts: 4
Joined: 2011-12-24
|
Hi,
I've read al the parts of ClickTwice deployment process. Still have some questions:
1. What method should I put the update code in:
This is what I have in Code. I am using vs2010.
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.adxieKeyboardCommand = new AddinExpress.IE.ADXIEKeyboardShortcut(this.components);
this.adxieAdvancedSearchBarItem = new AddinExpress.IE.ADXIEBarItem(this.components);
this.adxiehtmlDocEvents1 = new AddinExpress.IE.ADXIEHTMLDocEvents(this.components);
this.Bars.Add(this.adxieAdvancedSearchBarItem);
this.HandleShortcuts = true;
this.ModuleName = "CustomSearchForIE";
this.BeforeNavigate2 += new AddinExpress.IE.ADXIEBeforeNavigate2_EventHandler(this.IEAdvancedSearch_BeforeNavigate2);
this.DocumentComplete += new AddinExpress.IE.ADXIEDocumentComplete_EventHandler(this.IEAdvancedSearch_DocumentComplete);
this.DownloadBegin += new AddinExpress.IE.ADXIEDownloadBegin_EventHandler(this.IEAdvancedSearch_DownloadBegin);
this.OnConnect += new AddinExpress.IE.ADXIEConnect_EventHandler(this.IEAdvancedSearch_OnConnect);
this.OnSendMessage += new AddinExpress.IE.ADXIESendMessage_EventHandler(this.IEAdvancedSearch_OnSendMessage);
this.OnTabChanged += new AddinExpress.IE.ADXIETabChanged_EventHandler(this.IEAdvancedSearch_OnTabChanged);
}
2. ChckForUpdates will return the string you enter here:
What should I enter here & how this actually works?
3. If I sel ect prerequisite & select download fr om application, -- do I need to deliver .exe at all. Or .msi will do the work?
4. 3. Size of AddinExpress.IE.dll is 2.25MB. Is there any way to minimize the size?
Thanks
Rafiq |
|
Sergey Grischenko
Add-in Express team
Posts: 7233
Joined: 2004-07-05
|
|