Re: [Gambas-user] POSSIBLE! bug in while loop

2015-12-28 Thread adamn...@gmail.com
Add a Wait instruction after n=n+1 to invoke the Event Loop. (Research the help on this) Also see Inc. hth b On Tue, 29 Dec 2015 02:55:41 + (UTC) Robert Boykin wrote: > Test Program code is: > ' Gambas class file > > ' Static Private iexit As Integer = 0 > Public Sub _new() > End > > Publ

[Gambas-user] POSSIBLE! bug in while loop

2015-12-28 Thread Robert Boykin
Test Program code is: ' Gambas class file ' Static Private iexit As Integer = 0 Public Sub _new() End Public Sub Form_Open() GlobalVar.iexit = 0 End Public Sub GObtn_Click() Dim n As Integer n = 0 While n < 10 Print n n = n + 1 If GlobalVar.iexit > 0 Then Break Wend End Public Sub e

Re: [Gambas-user] non printable char "Ⱶ" how to remove from string!!!!!

2015-12-28 Thread Ru Vuott
> and Ru Vuott  thanks for suggestion i'll try later If the string has 2 or more no-printable characters, you have to modify my code, so: Public Sub Main() Dim s As String = "ab" & Chr(180) & "cd ef" & Chr(185) & "g" & Chr(195) & "hil" & Chr(179) & " mnop" Dim bb As Byte[] Dim b A

Re: [Gambas-user] non printable char "Ⱶ" how to remove from string!!!!!

2015-12-28 Thread PICCORO McKAY Lenz
i send you this file with various output, but the special char are not printable, only "gtk critical" warning are out! the out only are in the console of the gambas, later will' run the proyect and send a complete out attached are the file and send a CC to you fabien! 2015-12-23 18:35 GMT-04:30,

Re: [Gambas-user] usb codebar reader how to handle events!?

2015-12-28 Thread PICCORO McKAY Lenz
good trick! the barcode have a delay when tiping.. if this delay are lower thatn so then comes from keyboard! (sound easy, but i think will be dificult sure) i opened the proyect later due right now i'm not at home or job.. and then post feedback 2015-12-24 5:50 GMT-04:30, Charlie : > OK let's tr