Sort of Window Title Bar above ToolBar |
Post Reply |
Author | |
JoukevRossum
Groupie Joined: 03 November 2011 Location: The Netherlands Status: Offline Points: 30 |
Post Options
Thanks(0)
Posted: 02 October 2015 at 10:31am |
Hi All, I'm currently seeing a Window Title Bar above my toolbar.. I can drag it and it will drag my toolbar + usercontrol... How can I disable this?? Thanks in advance. Best regards, Jouke
|
|
Product: Xtreme SuitePro (ActiveX) version 16.2.3
Platform: Windows 8.1 (x64) Language: Visual Studio 2012 ActiveX C# |
|
JoukevRossum
Groupie Joined: 03 November 2011 Location: The Netherlands Status: Offline Points: 30 |
Post Options
Thanks(0)
|
Anybody???????
|
|
Product: Xtreme SuitePro (ActiveX) version 16.2.3
Platform: Windows 8.1 (x64) Language: Visual Studio 2012 ActiveX C# |
|
Arnoutdv
Groupie Joined: 29 September 2010 Status: Offline Points: 38 |
Post Options
Thanks(0)
|
Can you post some code which replicates the problem?
|
|
VB6 SP6, SuitePro 16.3.0 / 18.2.0, Win10/64
|
|
JoukevRossum
Groupie Joined: 03 November 2011 Location: The Netherlands Status: Offline Points: 30 |
Post Options
Thanks(0)
|
This might be the problem...
/// <summary> /// CommandBar Toolbar maken voor TreeView /// </summary> /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> public bool cmdAlleDossiers_CreateToolBar() { try { //eerst verwijderen cmdAlleDossiers.DeleteAll(); var toolBar = cmdAlleDossiers.Add("Filteren", XTPBarPosition.xtpBarTop); var controls = toolBar.Controls; controls.Add(XTPControlType.xtpControlLabel, 000, "Zoeken :", true, true); var customCombobox = controls.Add(XTPControlType.xtpControlCustom, ID.SEARCH_DOSSIER, "", true, true) as CommandBarControlCustom; if (customCombobox != null) customCombobox.Handle = cbTreeViewAutoComplete.Handle.ToInt32(); cbTreeViewAutoComplete.Visible = false; toolBar.Closeable = false; toolBar.ShowGripper = false; cmdAlleDossiers.Dock = DockStyle.Top; try { cmdAlleDossiers.Height = 26; int left, top, right, bottom; cmdAlleDossiers.GetClientRect(out left, out top, out right, out bottom); panelDossierObjects.Top = cmdAlleDossiers.Bottom; panelDossierObjects.Height = bottom - top; panelDossierObjects.Left = left; panelDossierObjects.Width = right - left; } catch (Exception ex) { var dmsEx = new DmsException("Fout bij het koppelen van panel aan toolbar", "Dossiers ToolBar", 306, ex); ExceptionLogger.LogError(dmsEx); } return true; } catch (Exception ex) { var dmsEx = new DmsException("Fout bij het maken van dossiers toolbar", "Dossiers Toolbar", 307, ex); ExceptionLogger.LogError(dmsEx); return false; } } |
|
Product: Xtreme SuitePro (ActiveX) version 16.2.3
Platform: Windows 8.1 (x64) Language: Visual Studio 2012 ActiveX C# |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |