Search found 32 matches

by seany
Wednesday 26th October 2022 3:02pm
Forum: General
Topic: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling
Replies: 11
Views: 1545

Re: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling

Hi So I can do this now. https://i.imgur.com/ic3R8A4.png The subtables move in unison, I can move the column headers of any root table or subtable to adjust size and control the heights of any row, and all subtables will adjust in unison. If I add a new row, the parent table will adjust accordingly....
by seany
Monday 24th October 2022 4:33pm
Forum: General
Topic: Removing table headers forces a scrollbar
Replies: 2
Views: 573

Re: Removing table headers forces a scrollbar

Because I have made an AI in python, to analyze mining data. I want to display the output of the data, as well as training data used for this in a tabular form, wherein a table cell can contain other tables. The random inclusion of table scrollbars are causing me to lose the view.

Thank you anyway
by seany
Monday 24th October 2022 4:31pm
Forum: General
Topic: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling
Replies: 11
Views: 1545

Re: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling

The right panel in my case, is adding showing the buttons correctly.

I saw the square. I will check, if that is my problem. Thank you
by seany
Monday 24th October 2022 10:24am
Forum: General
Topic: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling
Replies: 11
Views: 1545

Re: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling

Hi I know the code is bad. It is my first prototype to display AI results. But yes, i appreciate the corrections I did not know those details. Indeed, the "New TableView" was causing me problems which I circumvented with Variants. But now is better. I am using 3.17.3 version, and I did tes...
by seany
Sunday 23rd October 2022 11:42pm
Forum: General
Topic: Dynamically Created Tables on a Scrollarea - random artefacts after scrolling
Replies: 11
Views: 1545

Dynamically Created Tables on a Scrollarea - random artefacts after scrolling

Hi So, with my continuing project, I can do this now : https://i.imgur.com/CAY7Bx4.png But If I scroll it, sometimes, the location of the last edited cell randomly gets stuck, i.e. does not scroll with the rest of the system. I have marked a special case with 3 blue arrows, where a copy of the text ...
by seany
Sunday 23rd October 2022 7:37pm
Forum: General
Topic: Removing table headers forces a scrollbar
Replies: 2
Views: 573

Removing table headers forces a scrollbar

Consider the table given by tTable Here is the definition : Dim tTable As New TableView(mainArea) As "Dyntable_root" Dim i, j As Integer Dim c As String Dim code As String = "" tTable.Columns.Count = 3 tTable.Columns[0].Title = "SAMPLE" tTable.Columns[0].Width = tTable....
by seany
Friday 21st October 2022 8:05pm
Forum: General
Topic: Inserting a table in a tabel cell
Replies: 9
Views: 1029

Re: Inserting a table in a tabel cell

I can now do this, to arbitrary depth https://i.imgur.com/paA211R.png I want to get rid of the scrollbars in the middle, and make it possible, that The subtables move, based on whether an element is added or deleted above it, The subtables can be deleted post adding The subtables can be expanded and...
by seany
Friday 21st October 2022 7:09pm
Forum: General
Topic: Inserting a table in a tabel cell
Replies: 9
Views: 1029

Re: Inserting a table in a tabel cell

I still want a way to quickly show that one table is a subtable of another table. I do have a scrollview, containing the main table, which expands or contracts, based on its cell contents, and then i can clearly show that one table is a subtable . So for example, i can have in the outer table, sampl...
by seany
Friday 21st October 2022 6:34am
Forum: General
Topic: Inserting a table in a tabel cell
Replies: 9
Views: 1029

Re: Inserting a table in a tabel cell

Hi So the process continues. I can overlay tables on top of each other, I am still refining the process. Please see image. https://i.imgur.com/Uv986ky.png The table marked with green arrow is the outermost "master". It can be seen that the subtable is marked in red arrow, is well placed in...