[Gambas-user] Sdl Grabbed

2017-01-12 Thread Shane
Hi Benoit could you please add the Window.Grabbed function to the sdl2 component like we had with Sdl1 -- Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based developer platfor

Re: [Gambas-user] Key.Text Bug

2017-01-12 Thread Shane
Ok thanks Benoît On 12/01/17 23:56, Benoît Minisini wrote: > Le 12/01/2017 à 08:36, Shane a écrit : >> Key.Text doesn't return anything in the following project >> > Key.Text is only available during the "Text" event. "KeyPress" is only > for getting the Key.Code. > > Regards, > ---

Re: [Gambas-user] MenuButton question

2017-01-12 Thread Gianluigi
image attached 2017-01-12 16:56 GMT+01:00 Gianluigi : > I set to Enabled = False both the SaveButton that the SaveMenu, but if I > click on the File button (showing the menu) and I move on the Save button I > can work in MenuSave. > To get the save menu to false I must to set to false each item.

Re: [Gambas-user] Get data from a column (not the head) of the control WebTable

2017-01-12 Thread מיוסט שרון
This line: WebTable1.Rows [1] = 1 I have written accidentally I know, To insert a data table By event "Data" But my question When the table has 3 rows and each row has two columns I want to get to the "Text" there is a row 3 column 2 I do not see such a possibility

[Gambas-user] MenuButton question

2017-01-12 Thread Gianluigi
I set to Enabled = False both the SaveButton that the SaveMenu, but if I click on the File button (showing the menu) and I move on the Save button I can work in MenuSave. To get the save menu to false I must to set to false each item. Is it correct or is it a bug? Example attached Regards Gianlui

Re: [Gambas-user] Key.Text Bug

2017-01-12 Thread Benoît Minisini
Le 12/01/2017 à 08:36, Shane a écrit : > Key.Text doesn't return anything in the following project > Key.Text is only available during the "Text" event. "KeyPress" is only for getting the Key.Code. Regards, -- Benoît Minisini ---

Re: [Gambas-user] Get data from a column (not the head) of the control WebTable

2017-01-12 Thread Benoît Minisini
Le 12/01/2017 à 10:07, מיוסט שרון a écrit : > First of all sorry for my english > > > I put on the Form the WebTable1 > > To set the top of the table as follows: > > Dim i As Integer > > WebTable1.Columns.Count = 2 > For I = 0 To WebTable1.Columns.Count - 1 > WebTable1.Columns [I] .Text = C

[Gambas-user] Get data from a column (not the head) of the control WebTable

2017-01-12 Thread מיוסט שרון
First of all sorry for my english I put on the Form the WebTable1 To set the top of the table as follows: Dim i As Integer WebTable1.Columns.Count = 2 For I = 0 To WebTable1.Columns.Count - 1 WebTable1.Columns [I] .Text = Chr $ (65 + I) Prev So far there are two columns of the tab