Add-In Express for Outlook

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

Add-In Express for Outlook
On my form, I can't set the AlwaysShowHeader to False 
Igor Dvorkin


Guest


Even though I can see the property in designer, I can't change it.

If I try to type a Value other then True it doesn't allow me to.
If I use the drop down, then even though I set to False, the value remains true.

Thanks!
Posted 10 Dec, 2014 09:35:47 Top
Andrei Smolin


Add-in Express team


Posts: 18794
Joined: 2006-05-11
Igor,

Please check if all files are checked out and writable. Also, make sure that you start Visual Studio using the "Run as administrator" command.


Andrei Smolin
Add-in Express Team Leader
Posted 11 Dec, 2014 05:34:10 Top
Igor Dvorkin


Guest


The file is writable, and I can change this property on the other forms. Could it be because of other settings I have set? Here's the designer file contents for this form:

//
// ReplyInlinePane
//
this.ReplyInlinePane.AlwaysShowHeader = true;
this.ReplyInlinePane.CloseButton = true;
this.ReplyInlinePane.ExplorerAllowedDropRegions = ((AddinExpress.OL.ADXOlExplorerAllowedDropRegions)(((((((((((((((((AddinExpress.OL.ADXOlExplorerAllowedDropRegions.TopSubpane | AddinExpress.OL.ADXOlExplorerAllowedDropRegions.BottomSubpane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.RightSubpane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.LeftSubpane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.BottomOutlookBar)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.BottomNavigationPane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.BottomTodoBar)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.TopReadingPane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.BottomReadingPane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.LeftReadingPane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.RightReadingPane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.ReadingPane)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.FolderView)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.DockTop)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.DockBottom)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.DockRight)
| AddinExpress.OL.ADXOlExplorerAllowedDropRegions.DockLeft)));
this.ReplyInlinePane.ExplorerItemTypes = AddinExpress.OL.ADXOlExplorerItemTypes.olMailItem;
this.ReplyInlinePane.ExplorerLayout = AddinExpress.OL.ADXOlExplorerLayout.BottomReadingPane;
this.ReplyInlinePane.FormClassName = "ConciseForOutlook.ConciseReplyForm";
this.ReplyInlinePane.IsDragDropAllowed = true;
this.ReplyInlinePane.RegionBorder = AddinExpress.OL.ADXRegionBorderStyle.None;
this.ReplyInlinePane.UseOfficeThemeForBackground = true;
Posted 11 Dec, 2014 12:13:21 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Igor,

Thank you for the details.

You need to set the IsDragDropAllowed property to False before changing the AlwaysShowHeader property.
Posted 12 Dec, 2014 04:00:38 Top
Igor Dvorkin


Guest


That did not fix the problem. I ended up deleting the form manager line, and recreating a new one and then everything worked.

Thanks
Igor
Posted 12 Dec, 2014 08:58:38 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Igor,

Thank you for keeping us informed.
Posted 12 Dec, 2014 09:49:19 Top