Search found 68 matches

by sjsepan
Monday 18th November 2019 4:25pm
Forum: General
Topic: Odd Console Warnings
Replies: 5
Views: 5859

Re: Odd Console Warnings

You're welcome. I understand that -- if the configuration is otherwise working you want to avoid messing with it. I agree that it will probably not appear on other systems, and that the issue can be shelved. I tend to give limited attention to warnings too, especially if everything else is working O...
by sjsepan
Monday 18th November 2019 1:05pm
Forum: General
Topic: Odd Console Warnings
Replies: 5
Views: 5859

Re: Odd Console Warnings

I would guess it could be the theme. Maybe try switching some and see if it stops for certain ones? I am running Linux Mint Cinnamon 19.2, which is based on U buntu 18.04 LTS, so that may be getting close to your configuration. Besides Cinnamon, I have MATE and Xfce . Switching to the latter, I stil...
by sjsepan
Sunday 17th November 2019 5:53pm
Forum: General
Topic: Action, the class and the property
Replies: 11
Views: 11792

Re: Action, the class and the property

Note in my above example, I did not need to call the Raise method myself, as that is done behind the scenes by the control that is clicked. I included it in my example as it shows how you can trigger the routine for a separate purpose. I was hoping that some method would be called directly by actio...
by sjsepan
Sunday 17th November 2019 3:34pm
Forum: General
Topic: Action, the class and the property
Replies: 11
Views: 11792

Re: Action, the class and the property

Note in my above example, I did not need to call the Raise method myself, as that is done behind the scenes by the control that is clicked. My initial dislike of having to write a dispatcher in the Activate event is balanced somewhat by realizing that I would still have to write event handlers if th...
by sjsepan
Sunday 17th November 2019 3:13pm
Forum: General
Topic: Action, the class and the property
Replies: 11
Views: 11792

Re: Action, the class and the property

I'll have to look that over, Thanks! :) This is what I came up with too... Public Function Action_Activate(sActionName As String) As Boolean 'Note: I am not sure I see the benefit of using this dispatch mechanism over direct click events (I like the other aspects of Action a lot though). 'Maybe if t...
by sjsepan
Saturday 16th November 2019 10:15pm
Forum: General
Topic: Action, the class and the property
Replies: 11
Views: 11792

Re: Action, the class and the property

Does anyone have any working examples of how Action["action_name"].Raise and Action_Activate are used?

Steve
by sjsepan
Saturday 2nd November 2019 10:21pm
Forum: General
Topic: Gambas equivalent of C# Protected?
Replies: 2
Views: 3706

Re: Gambas equivalent of C# Protected?

I do not think so: http://gambaswiki.org/wiki/doc/object-model#t3 I skimmed through there earlier and didn't remember seeing anything but Public and Private, but I was hoping I overlooked something. Thanks jornmo. UPDATE: the following covers something related to I was looking for.. 3.5. Symbol Ove...
by sjsepan
Saturday 2nd November 2019 8:58pm
Forum: General
Topic: Gambas equivalent of C# Protected?
Replies: 2
Views: 3706

Gambas equivalent of C# Protected?

Does anyone know if there is an equivalent to the C#.Net Protected concept in Gambas?
Specifically, a member in a parent class is marked as private to all except classes derived from the parent class.
by sjsepan
Saturday 2nd November 2019 6:29pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 410409

Re: Did you know?

That in a sub-class you need to use the Me keyword (as in Me. SomeParentMember) in order to access members of a parent class. You do not need to do anything special to reference those same members (assuming they are public in the parent class) in order to access them from a client of the sub-class. ...
by sjsepan
Saturday 2nd November 2019 5:41pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 410409

Re: Did you know?

That of the gui apps that you can create*, including ... ' Graphical application '**, ' GTK+ 3 application ', ' GTK+ 2 application ', and ' QT application ', ...the following do not have a Toolbar control in the ' Container ' category in the form designer... ' Graphical application '**, ' GTK+ 2 app...