[Gambas-user] Class Draw deprecated since Gambas 3.4

2013-01-25 Thread Pablo
Hello, I'm a new user of gambas. I've seen that class Draw wil be deprecated since version 3.4. That means that from that version we can't use Draw? Thanks Pablo -- Master Visual Studio, SharePoint,

[Gambas-user] Gambas and ssh

2010-06-23 Thread Pablo Ontivero
Hi, i'm trying to make a app for connect to a pc with ssh, i can connect with the other system, but i don't know how to see all the process on a TextArea. PUBLIC conexion AS Process PUBLIC SUB Button1_Click() conexion = SHELL "ssh -l javier 192.168.1.92" FOR READ WRITE END PUBLIC SUB Button2_

Re: [Gambas-user] Gambas and ssh (Pablo Ontivero)

2010-06-23 Thread Pablo Ontivero
Well, thanks for all the answers, i don't have any idea of perl, so i don't know if i was able to make a app with that languaje. The ssh connect entablish with out problem, becouse gambas ask me for the password for the login. but the problem is.. i can't see the process on a TextArea, i think

[Gambas-user] Process output to TextArea Fail

2010-06-29 Thread Pablo Ontivero
Hello, the question is, when i try to print the output of the process on a TextArea, i have good results but if the output have more of 255 results, the app fails. http://pastebin.com/Gyg4Ehhk That link have the output of the shell command. And the code is this http://pastebin.com/Guw4B9DN T

Re: [Gambas-user] Process output to TextArea Fail

2010-06-30 Thread Pablo Ontivero
Well, my system is Ubuntu 10.04, the version of gambas is the last release version on Ubuntu repo (2.19.0-2). I try with the QT version and the GTK+ version, but the fails, i don't notice any bug for the component. This answer your questions? Please tell me if you need more information. Thanks.

Re: [Gambas-user] Process output to TextArea Fail

2010-06-30 Thread Pablo Ontivero
Fails when is running on the debugger, i execute the app, and when it show 250 lines, the console go slow and the app crash with error #11, but only if the TextArea show the content of the "Content" Variable who has the output of the process. Thanks. -

Re: [Gambas-user] Base Conversion

2008-11-16 Thread Pablo Vera
1)) If C >= "A" And C <= "Z" Then D = ASc(C) - 55 ElseIf C >= "0" And C <= "9" Then D = ASc(C) - 48 Else D = 0 End If Num10 = Num10 + D * (36 ^ (E - I)) Next I ToBase10 = Num10 End Function Pablo