Search found 32 matches

by seany
Thursday 20th October 2022 3:47pm
Forum: General
Topic: Inserting a table in a tabel cell
Replies: 9
Views: 1199

Re: Inserting a table in a tabel cell

same thing happens with a table view as well
by seany
Thursday 20th October 2022 1:36pm
Forum: General
Topic: [Solved for now] How to get the height of the title of a tableview
Replies: 3
Views: 583

Re: How to get the height of the title of a tableview

That seems to work for now. Thank you
by seany
Wednesday 19th October 2022 11:02pm
Forum: General
Topic: [Solved for now] How to get the height of the title of a tableview
Replies: 3
Views: 583

[Solved for now] How to get the height of the title of a tableview

Please consider this snippet : TableView1.Columns.Count = 3 TableView1.Columns[0].Title = "Variable Class" TableView1.Columns[0].Width = TableView1.Font.TextWidth(TableView1.Columns[0].Title) + 10 TableView1.Columns[1].Text = "ID" TableView1.Columns[1].Width = TableView1.Font.Tex...
by seany
Wednesday 19th October 2022 10:10pm
Forum: General
Topic: Inserting a table in a tabel cell
Replies: 9
Views: 1199

Re: Inserting a table in a tabel cell

Hi Thank you for the reply. Consider this code snippet, please. Public Sub Button2_Click() Dim newTable As New TableView(parentTable.Current) As "Dyntable" 'consider this line especially Print "new table is being created" Print parentTable.Tag Dim code As String = "" Di...
by seany
Wednesday 19th October 2022 7:16pm
Forum: General
Topic: Inserting a table in a tabel cell
Replies: 9
Views: 1199

Inserting a table in a tabel cell

Hi I am creating an interface to manage my AI training data. I wanted to rapidly prototype it with gambas, version 3.17.5. I need a tabular display, where I can add / insert subtables in a table cell. That way I want to be able to display some combinatorial graphs connecting various parameters. Look...
by seany
Thursday 14th July 2022 4:18pm
Forum: Beginners
Topic: [Solved for now] Getting the exact amount of text shown in a richtext editor
Replies: 4
Views: 1599

Re: Getting the exact amount of text shown in a richtext editor

Ok, thank you.

I am trying to figure out how the actual highlighting is working in the control, that is whether it is a greedy algorithm.
by seany
Tuesday 12th July 2022 8:12pm
Forum: Beginners
Topic: [Solved for now] Getting the exact amount of text shown in a richtext editor
Replies: 4
Views: 1599

Re: Getting the exact amount of text shown in a richtext editor

Because I want to use my own syntax highlighting rules and precedence.

I could not find out how to do all that in the textEdit. So i am going with richtextedit.
by seany
Tuesday 12th July 2022 1:48pm
Forum: Beginners
Topic: Using DrawArea - Simplified
Replies: 19
Views: 7159

Re: Using DrawArea - Simplified

Hi

Are your controls available under open source? I would love to use them for my work. Thank you.

PS: Is there a web repo of all available controls, made by community? Thank you
by seany
Tuesday 12th July 2022 1:01pm
Forum: Beginners
Topic: [Solved for now] Getting the exact amount of text shown in a richtext editor
Replies: 4
Views: 1599

[Solved for now] Getting the exact amount of text shown in a richtext editor

Hi I have previously posted about colors and backgrounds of richtext editor content. My goal is to create an IDE for a language I am working on. The IDE will have syntax highlighting in the text edit in the left hand pane, and a autogenerated program flowchart in the right hand side. Now, I was look...
by seany
Tuesday 12th July 2022 12:47pm
Forum: Beginners
Topic: Foreground of qt5.textedit.
Replies: 6
Views: 2344

Re: Foreground of qt5.textedit.

This is very nice, thank you