Re: [Gambas-user] Editing still blocked

2017-05-16 Thread Glaucio Araujo
That's it! The TextEditor in your script didn't worked here, just like the code editor. From: Fabien Bodard - 2017-05-16 20:47:05 Do you have the same problems on others qt apps ? > > > Can you try that : If you don't have install the scripter package to > get gbs3 script

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread PICCORO McKAY Lenz
Ingo, that My german is not very good, quite limited, a regret to have family, that German gambas wiki is the best in information, the shrimp documentation should be so, I mean the amount of documentation aimed at implementing pieces of code.. the example in the documentation was a good started

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread PICCORO McKAY Lenz
2017-05-16 17:29 GMT-04:00 Tobias Boege : > On Tue, 16 May 2017, PICCORO McKAY Lenz wrote: >> if this the case, how can i implement a search input that retrieve data >> when i put strings!? >> > > At the risk that I didn't understand your question: The GridView does > not store

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread Fabien Bodard
2017-05-16 23:21 GMT+02:00 PICCORO McKAY Lenz : > umm so then as you said, the rs number 3 does not load until i get down > the gridview to the row 3! ? > > if this the case, how can i implement a search input that retrieve data > when i put strings!? gridview is

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread Tobias Boege
On Tue, 16 May 2017, PICCORO McKAY Lenz wrote: > umm so then as you said, the rs number 3 does not load until i get down > the gridview to the row 3! ? > Yes, why don't you try it yourself? > if this the case, how can i implement a search input that retrieve data > when i put strings!?

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread PICCORO McKAY Lenz
umm so then as you said, the rs number 3 does not load until i get down the gridview to the row 3! ? if this the case, how can i implement a search input that retrieve data when i put strings!? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-05-16 17:10 GMT-04:00

[Gambas-user] why not a forum event a complicates instruction on list and mail list

2017-05-16 Thread Tyrone Lucero
Hello, I was inscribe here, but I don' t see any forum... there are one way to know about use this list? -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org!

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread Tobias Boege
On Tue, 16 May 2017, PICCORO McKAY Lenz wrote: > In gambas wiki documentation said: > > You can fill the grid explicitly, or implement the Data > event to display > the grid contents on demand. > > You should use the last method if you have

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread PICCORO McKAY Lenz
2017-05-16 16:52 GMT-04:00 Fabien Bodard : > > First > MyGridView.Columns.Count = 1 > hResult = DB.Exec. > > A THAT's the problem, THE ODBC row count does not exist, due the MS/sybase ODBC freedts implementaion or gambas i dont know does not retunr any more than "-1"

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread ingo
Hi, have look to the german Gambas-Buch with an example how to load date from a db and show it in the gridView. http://gambas-buch.de/dw/doku.php?id=k17:k17.7:k17.7.5:start[]=gridview Hope that helps. Ingo -- View this

Re: [Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread Fabien Bodard
Well have you a better exemple. First MyGridView.Columns.Count = 1 hResult = DB.Exec. MyGridView.Rows.Count = hResult.Count then Public sub MyGridView_Data(Row as integer, Column as Integer) hResult.MoveTo(Row) Select case Column Case 0 Last.Data.Text = hResult!Name end Select end

Re: [Gambas-user] Editing still blocked

2017-05-16 Thread Fabien Bodard
Do you have the same problems on others qt apps ? Can you try that : If you don't have install the scripter package to get gbs3 script interpreter then launch the joined file with 'gbs3 testqt.gbs' and tell us if the textbox work and if the editor work there are both in the generated form.

[Gambas-user] Huge data in gridview documentation wiki does not explain how

2017-05-16 Thread PICCORO McKAY Lenz
In gambas wiki documentation said: You can fill the grid explicitly, or implement the Data event to display the grid contents on demand. You should use the last method if you have a lot of rows to display. The control can handle millions of

[Gambas-user] delivery bounces due bugtracker response

2017-05-16 Thread PICCORO McKAY Lenz
i noted that the bugtracker seems does not understand the mail activity.. 1) i made a comment, so i receive two mail, one from bugtracker another from maillist! 2) i respond the comment due comes from maillist,.. this have two consecuences: 2.1) the mtu send a mail to bugtracker and also to

Re: [Gambas-user] How to use gb.map ".AddPolyLine( )" method ?

2017-05-16 Thread Fabien Bodard
This is done in the last revision. So you can use the polyline to draw endless line worms and change the line thinkness. map["MyShapeLayer"][MyObject].LineWidth Or for all layer objects (default Value =2): Map["MyShapeLayer"].LineWidth 2017-05-16 22:01 GMT+02:00 Fabien Bodard

Re: [Gambas-user] How to use gb.map ".AddPolyLine( )" method ?

2017-05-16 Thread Fabien Bodard
2017-05-14 20:26 GMT+02:00 ingo : > Hi Fabien, > the gb.map works very well. Thank you for this. > But I have questions about AddPolyLine: > > 1) The AddPolyLine() always draws the outline of polygon. Is it possible to > have only lines with an 'open end'? > I tried to set the

Re: [Gambas-user] String[].Find finds nothing

2017-05-16 Thread Matti
Thank you all for your help. Now, my search is really fast. For anyone having similar problems: 1. My source was a huge unsorted JSON file. I converted it to a much smaller sorted text file. So, reading it into a String array, the array is already sorted. 2. String[].Find() indeed works with

Re: [Gambas-user] how create executable for my application

2017-05-16 Thread rterry
Do You mean the executable was created ok but when you run it the actual executable crashes? I'm assuming that if you run your project via the IDE it doesn't  crash? More details please Sent from my Samsung GALAXY S5 Original message From: cheikh diabang

[Gambas-user] how create executable for my application

2017-05-16 Thread cheikh diabang
hi everybody. i have finish to create my application but i have some problème to generate the executable. I use gambas 3.9.2 i have tried in the GUI: Projet--->generate--->executable But the gambas application crashes I need help please.

Re: [Gambas-user] Gambas-user Digest, Vol 132, Issue 29

2017-05-16 Thread Glaucio Araujo
Hi, Jussi My Xorg.0.log is in ~/.local/share/xorg/ Log attached. My Xinput: gda@acer:~$ xinput list ⎡ Virtual core pointerid=2[master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4[slave pointer (2)] ⎜ ↳ Logitech M215 2nd Gen

Re: [Gambas-user] Serial I/O with byte data

2017-05-16 Thread Mike Crean
Hi, as I said before most likely Modbus RTU or similar protocol. If so you will need to do some BIT bashing and probably some CRC conversion. You will need to know the frame size among other things. Public Sub HbLb()   Dim Xz2 As Long   Hb = Fix(DataS / 256)   Xz2 = Fix(256 * Hb)   Lb = DataS -

Re: [Gambas-user] Serial I/O with byte data

2017-05-16 Thread alexchernoff
it works fine - it was a strange serial port hardware issue. All the "Read" methods suggested above work, Thanks to all! -- View this message in context: http://gambas.8142.n7.nabble.com/Serial-I-O-with-byte-data-tp58933p58995.html Sent from the gambas-user mailing list archive at Nabble.com.