Horizontal bar

Add-in Express™ Support Service
That's what is more important than anything else

Horizontal bar
Horizontal bar shows up as vertical 
Madhu Chinthakunta




Posts: 6
Joined: 2011-06-21
Hello:

I have a very simple project with a toolbar and a bar. I configure the bar as Horizontal, but it always shows up as vertical. My init code looks like this:

this.components = new System.ComponentModel.Container();
this.adxieBarItem1 = new AddinExpress.IE.ADXIEBarItem(this.components);
this.adxieToolBarItem1 = new AddinExpress.IE.ADXIEToolBarItem(this.components);
//
// adxieBarItem1
//
this.adxieBarItem1.BarType = "MyIEAddon1.MyIEBar1";
this.adxieBarItem1.DockPosition = AddinExpress.IE.ADXIEDockPosition.Horizontal;
this.adxieBarItem1.HelpText = "Bar help";
this.adxieBarItem1.LoadAtStartup = true;
this.adxieBarItem1.MenuText = "adxieBarItem1";
this.adxieBarItem1.Title = "Status";
//
// adxieToolBarItem1
//
this.adxieToolBarItem1.HelpText = "Toolbar help";
this.adxieToolBarItem1.LoadAtStartup = true;
this.adxieToolBarItem1.MenuText = "adxieToolBarItem1";
this.adxieToolBarItem1.Position = AddinExpress.IE.ADXIEToolBarPosition.tbpNewRow;
this.adxieToolBarItem1.Title = "Toolbar Title";
this.adxieToolBarItem1.ToolBarType = "MyIEAddon1.MyIEToolbar1";
//
// IEModule
//
this.Bars.Add(this.adxieBarItem1);
this.HandleShortcuts = true;
this.LoadInMainProcess = false;
this.ModuleName = "MyIEAddon1";
this.ToolBars.Add(this.adxieToolBarItem1);

I have AIX v7.1.4102 and am using IE 8 on a 64 bit Windows 7

What am I missing?

Thanks
Madhu
Posted 21 Jun, 2011 05:34:36 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
Hi Madhu,

Try the following:
- unregister the project
- run IE and close it
- register the add-on once again

Does it help?


Andrei Smolin
Add-in Express Team Leader
Posted 21 Jun, 2011 05:47:21 Top
Madhu Chinthakunta




Posts: 6
Joined: 2011-06-21
Thanks. That did work.
Posted 22 Jun, 2011 03:29:24 Top