Skip to content
John Kouraklis edited this page Nov 23, 2017 · 16 revisions

neTabControl

Architecture

neTabControl Architecture

Known Issues

v.1.3.0

As in v.1.0.0

v.1.2.0

Access violation on Mac is fixed.
The rest as in v.1.0.0

v.1.1.1

As in v.1.0.0

v.1.1.0

As in v.1.0.0

v.1.0.0

  1. When the user deletes the active tab, the control can't select the tab with the same index value. However, this works if the deleted/selected tab is the last one. The control correctly selects the last tab.

Temporary Fix: The neTabControl selects the first tab of the control

  1. The height of the tabs should adjust to the style of the form.

Temporary Fix: The heights are hard coded for the available styles that come with D10.1 Berlin installation

  1. When the position of the tab changes to Left, the tabs don't adjust to the width of the control if the form and the control is resized. Need to write a OnResize-type event

Temporary Fix: Add this code in the OnResize event of the form:

    if neTabControl1.TabPosition=TneTabPosition.Left then
    begin
      neTabControl1.TabPosition:=TneTabPosition.Top;
      neTabControl1.TabPosition:=TneTabPosition.Left;
    end; 
  1. An access violation exception is thrown on Mac OSX when the mouse hovers or clicks on the close image > Temporary Fix: The close image doesn't change (Fixed in v.1.2.0)
Clone this wiki locally