[Gambas-user] Desktop size in sdl2

2017-01-25 Thread Shane
How do you get the Desktop size in SDL2? -- Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot ___

Re: [Gambas-user] Double Click not open Gambas project in Gnome shell

2017-01-25 Thread Gianluigi
Thank you, let you know 2017-01-25 18:03 GMT+01:00 Fabien Bodard : > hum ... seem to be a right problem or a conf problem in the shell. > > is > $ ./xxx.gambas > > Working ? > > 2017-01-25 17:53 GMT+01:00 Gianluigi : > > A friend of ours with Arch Linux

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Rolf-Werner Eilert
Yes, you are right, thank you! Sometimes I do not see the forest for all the trees :) Rolf Am 25.01.2017 18:01, schrieb Fabien Bodard: > OUPS I think it's like the gridview : > Data.Text = CStr(Row) & "-" & CStr(Column) > > 2017-01-25 17:58 GMT+01:00 Benoît Minisini

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Rolf-Werner Eilert
Am 25.01.2017 17:58, schrieb Benoît Minisini: > Le 25/01/2017 à 17:54, Rolf-Werner Eilert a écrit : >> Am 25.01.2017 17:29, schrieb Benoît Minisini: >>> Le 25/01/2017 à 17:23, Rolf-Werner Eilert a écrit : Ah! Now it says "Type mismatch: Wanted WebTableData, got String instead"

Re: [Gambas-user] Double Click not open Gambas project in Gnome shell

2017-01-25 Thread Fabien Bodard
hum ... seem to be a right problem or a conf problem in the shell. is $ ./xxx.gambas Working ? 2017-01-25 17:53 GMT+01:00 Gianluigi : > A friend of ours with Arch Linux Gnome shell can not start with a double > click the .gambas projects. > > If he using terminal "gbr3

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Fabien Bodard
OUPS I think it's like the gridview : Data.Text = CStr(Row) & "-" & CStr(Column) 2017-01-25 17:58 GMT+01:00 Benoît Minisini : > Le 25/01/2017 à 17:54, Rolf-Werner Eilert a écrit : >> Am 25.01.2017 17:29, schrieb Benoît Minisini: >>> Le 25/01/2017 à 17:23, Rolf-Werner

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Fabien Bodard
:-)... I think it's like the gridview : Data.value = CStr(Row) & "-" & CStr(Column) Data is a class reference passed by reference. hData = New WebTableData Raise Data(iRow, iCol, hData) from the sources i can see you can set : .BackGround as integer .foreground as integer .Text as

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Benoît Minisini
Le 25/01/2017 à 17:54, Rolf-Werner Eilert a écrit : > Am 25.01.2017 17:29, schrieb Benoît Minisini: >> Le 25/01/2017 à 17:23, Rolf-Werner Eilert a écrit : >>> >>> Ah! Now it says "Type mismatch: Wanted WebTableData, got String instead" >>> >>> So, what is WebTableData? >>> >>> Rolf >>> >> >> It's

Re: [Gambas-user] detecting menus actions

2017-01-25 Thread Fabien Bodard
yes :-) 2017-01-25 17:15 GMT+01:00 Gianluigi : > Hi Bill, > > I think they intend to suggest something like this, see attached. > > Regards > Gianluigi > > 2017-01-25 15:30 GMT+01:00 Fabien Bodard : > >> Yes you can ... just put a value in tag property to

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Rolf-Werner Eilert
Am 25.01.2017 17:29, schrieb Benoît Minisini: > Le 25/01/2017 à 17:23, Rolf-Werner Eilert a écrit : >> >> Ah! Now it says "Type mismatch: Wanted WebTableData, got String instead" >> >> So, what is WebTableData? >> >> Rolf >> > > It's the datatype of the 'Data' argument of the WebTable 'Data' event

[Gambas-user] Double Click not open Gambas project in Gnome shell

2017-01-25 Thread Gianluigi
A friend of ours with Arch Linux Gnome shell can not start with a double click the .gambas projects. If he using terminal "gbr3 xxx.gambas" the project opens. Does anyone know how to do? Regards Gianluigi -- Check out

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Benoît Minisini
Le 25/01/2017 à 17:23, Rolf-Werner Eilert a écrit : > > Ah! Now it says "Type mismatch: Wanted WebTableData, got String instead" > > So, what is WebTableData? > > Rolf > It's the datatype of the 'Data' argument of the WebTable 'Data' event handler. -- Benoît Minisini

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Rolf-Werner Eilert
Am 25.01.2017 16:24, schrieb Benoît Minisini: > Le 25/01/2017 à 16:19, Rolf-Werner Eilert a écrit : >> >> Thank you very much, that makes it much clearer. Now I have a Button1 >> and a WebTable1 >> >> Public Sub WebButton1_Click() >> >> WebLabel1.Text = "Button geklickt" >> >>

Re: [Gambas-user] detecting menus actions

2017-01-25 Thread Gianluigi
Hi Bill, I think they intend to suggest something like this, see attached. Regards Gianluigi 2017-01-25 15:30 GMT+01:00 Fabien Bodard : > Yes you can ... just put a value in tag property to know witch menu is > selected and use a group name > > 2017-01-25 15:23 GMT+01:00

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Benoît Minisini
Le 25/01/2017 à 16:19, Rolf-Werner Eilert a écrit : > > Thank you very much, that makes it much clearer. Now I have a Button1 > and a WebTable1 > > Public Sub WebButton1_Click() > >WebLabel1.Text = "Button geklickt" > >WebTable1.AddColumn("Spalte 1") >WebTable1.AddColumn("Spalte 2") >

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Rolf-Werner Eilert
Am 25.01.2017 15:45, schrieb Benoît Minisini: > Le 25/01/2017 à 15:33, Rolf-Werner Eilert a écrit : >> >> The only thing I could not make out is how to control the tableview. As >> there is no treeview and no listview, I would use tableview to replace >> both of them. No real problem, but >> >> -

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Benoît Minisini
Le 25/01/2017 à 15:33, Rolf-Werner Eilert a écrit : > > The only thing I could not make out is how to control the tableview. As > there is no treeview and no listview, I would use tableview to replace > both of them. No real problem, but > > - How can I determine the number of rows and columns > -

Re: [Gambas-user] How to get started with WebView

2017-01-25 Thread Rolf-Werner Eilert
This thing is awesome, Benoit! Am 24.01.2017 11:27, schrieb Benoît Minisini: > Le 24/01/2017 à 11:24, Rolf-Werner Eilert a écrit : >> >> Now I got it. When I make a gb.web.form application, I just mark one of >> the forms as startup class (as I did) and add all control code for the >>

Re: [Gambas-user] detecting menus actions

2017-01-25 Thread Fabien Bodard
Yes you can ... just put a value in tag property to know witch menu is selected and use a group name 2017-01-25 15:23 GMT+01:00 Rolf-Werner Eilert : > Am 25.01.2017 13:10, schrieb bill-lancaster: >> Is it possible to log which menu items have been selected? >> In other words,

Re: [Gambas-user] detecting menus actions

2017-01-25 Thread Rolf-Werner Eilert
Am 25.01.2017 13:10, schrieb bill-lancaster: > Is it possible to log which menu items have been selected? > In other words, can I create a general event to catch and identify menu > activity? > > Gambas 3.8.2 > > Maybe it's possible via a group name?

[Gambas-user] detecting menus actions

2017-01-25 Thread bill-lancaster
Is it possible to log which menu items have been selected? In other words, can I create a general event to catch and identify menu activity? Gambas 3.8.2 -- View this message in context: http://gambas.8142.n7.nabble.com/detecting-menus-actions-tp58302.html Sent from the gambas-user mailing