Re: [Gambas-user] Gambas Magazine - Update

2014-08-25 Thread Daniel Quintero
Hi Randall? As an idea, can I translate some of the articles to spanish? Regards. *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Wed, Aug 20, 2014 at 3:20 PM, Randall Morgan wrote: > Hi Folks, > > First thank you to all who provided

Re: [Gambas-user] gbr3: unable to load component: gb.markdown

2014-07-24 Thread Daniel Quintero
Gambas3 from Daily PPA's works again! :D *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Mon, Jul 21, 2014 at 5:11 PM, Daniel Quintero wrote: > Hi all, I just got back from vacation and when I update my system today > and want to la

Re: [Gambas-user] gbr3: unable to load component: gb.markdown

2014-07-22 Thread Daniel Quintero
Mate ** -- Kernel: 3.13.0-24-generic (#47-Ubuntu SMP Fri May 2 23:31:42 UTC 2014) -- GCC Version: 4.8 (i686-linux-gnu) -- Xorg Version: 1.15.1 (16 April 2014 01:40:08PM) The packages of daily ppa are still wrong, but I don't know who need to correct this :/ Regards *__

[Gambas-user] gbr3: unable to load component: gb.markdown

2014-07-21 Thread Daniel Quintero
Hi all, I just got back from vacation and when I update my system today and want to launch Gambas, I found this error: gbr3: unable to load component: gb.markdown What can I do to correct it? Regards *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Daniel Quintero
Yes, I only cut&paste from that message :D *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Mon, May 26, 2014 at 12:03 PM, Karl Reinl wrote: > Am Montag, den 26.05.2014, 09:52 -0500 schrieb Daniel Quintero: > > I use this co

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Daniel Quintero
sociated with '" & cboSample.Text & "': " & cboSample.Tag[cboSample.Index]) Endif End Regards *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Sun, May 25, 2014 at 2:12 PM, Karl Reinl wrote: > Salut, > > I

Re: [Gambas-user] How to set name of control

2014-04-11 Thread Daniel Quintero
= "TextBox: " & CStr(i) Next End *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Fri, Apr 11, 2014 at 11:23 AM, abbat81 wrote: > The Textbox2 exist allready ((( > > > > -- > View this message in context:

Re: [Gambas-user] How to set name of control

2014-04-11 Thread Daniel Quintero
The object TextBox2 must already exist Regards *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Fri, Apr 11, 2014 at 10:22 AM, abbat81 wrote: > Please, help to understand it. > > Dim Mycol As Collection > Mycol["2"] = Te

Re: [Gambas-user] Annoying automatic comment creation...

2014-03-31 Thread Daniel Quintero
Good question and good answer. Thanks for the tip Benoît :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Mon, Mar 31, 2014 at 1:00 PM, Benoît Minisini < gam...@users.sourceforge.net> wrote: > Le 31/03/2014 20:04, Stephen a écrit :

Re: [Gambas-user] SetFocus in Editor control

2014-03-07 Thread Daniel Quintero
I put the SetFocus event on Form_Show and now it works :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Thu, Mar 6, 2014 at 11:12 AM, Daniel Quintero wrote: > Hi > > I'm using this control to highlight the code entered into

[Gambas-user] SetFocus in Editor control

2014-03-06 Thread Daniel Quintero
Hi I'm using this control to highlight the code entered into it, but when I use Editor1.SetFocus in the Form_Open event, nothing happens. Can you help me? Thanks *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde M

Re: [Gambas-user] Sample apps

2014-03-06 Thread Daniel Quintero
Yes, that is correct, but I only install Gambas and not the examples I downloaded them from source, but the easiest way is like Jesus said :D *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Thu, Mar 6, 2014 at 2:38 AM, girardhe...@hotmail.com

Re: [Gambas-user] Sample apps

2014-03-05 Thread Daniel Quintero
Jajajaja, thats not usual for me. Thanks :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Wed, Mar 5, 2014 at 5:42 PM, Jesus wrote: > El 06/03/14 00:16, Daniel Quintero escribió: > > I found them! I download the Gambas source code a

Re: [Gambas-user] Sample apps

2014-03-05 Thread Daniel Quintero
I found them! I download the Gambas source code and copied them to the path /usr/share/gambas3/examples :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Wed, Mar 5, 2014 at 4:48 PM, Daniel Quintero wrote: > Hi > > I installed Gambas i

[Gambas-user] Sample apps

2014-03-05 Thread Daniel Quintero
Hi I installed Gambas in Mint as follows: sudo add-apt-repository ppa:gambas-team/gambas-daily sudo apt-get update sudo apt-get install gambas3 But I does not have te sample apps How can I get a copy of them? Regards. *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde

Re: [Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Daniel Quintero
aIDs is an array of Integers (You can declare an array of Strings if is your case, or an array of Variants), and you can assing that array to a Variant variable, as is the case of the Tag property of the combobox. *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México

Re: [Gambas-user] Building a custom MyComboBox

2014-03-03 Thread Daniel Quintero
IDs.Add(hResult!ID) Next cboSample.Tag = aIDs End Public Sub cboSample_Change() If cboSample.Index > -1 Then Message("ID associated with '" & cboSample.Text & "': " & cboSample.Tag[cboSample.Index]) Endif End Regards *___

Re: [Gambas-user] Tip of the day

2014-02-20 Thread Daniel Quintero
Thanks again :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Thu, Feb 20, 2014 at 4:04 PM, Fabien Bodard wrote: > This is the tips files > > 2014-02-20 22:58 GMT+01:00 Daniel Quintero : > > Hi all :) > > > > How c

Re: [Gambas-user] Populate grid with generic query

2014-02-20 Thread Daniel Quintero
Ok, thanks :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Thu, Feb 20, 2014 at 3:55 PM, Fabien Bodard wrote: > 2014-02-20 22:47 GMT+01:00 Daniel Quintero : > > Hi Fabien, thanks for answering :D > > > > I understood al

[Gambas-user] Tip of the day

2014-02-20 Thread Daniel Quintero
Hi all :) How can I print all the "Tips of the day" that appear when Gambas IDE starts? Regards *_____* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* -- Managing the Perf

Re: [Gambas-user] Populate grid with generic query

2014-02-20 Thread Daniel Quintero
is a cell? Thanks, as always, you are a person willing to help :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Thu, Feb 20, 2014 at 2:45 PM, Fabien Bodard wrote: > You must to store the query result as private on the form > > > then &

[Gambas-user] Populate grid with generic query

2014-02-20 Thread Daniel Quintero
vance :) *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* -- Managing the Performance of Cloud-Based Applications Take advantage of what the Cloud has to offer - Avoid Common Pitfalls. Rea

Re: [Gambas-user] Drag & drop from Nautilus

2014-01-04 Thread Daniel Quintero
Oh :D Thanks a lot _ Lic. Daniel Quintero Rojas ¡Saludos desde México! On Sat, Jan 4, 2014 at 2:54 PM, Fabien Bodard wrote: > This is the demo > > 2014/1/4 Fabien Bodard : >> Yes I will send you an example >> >> Le 3 janv. 2014

[Gambas-user] Drag & drop from Nautilus

2014-01-03 Thread Daniel Quintero
Hi all I want to drag a file from Nautilus (I'm using Ubuntu) and drop it into an IconView, but I don't know how to do it. Then, I want to load the icon associated with the file extension, it's possible? Thank for any help Regards _____ Lic. Daniel Quintero

[Gambas-user] Drag & drop question

2013-12-13 Thread Daniel Quintero
is PDF, show the PDF icon in the "Documents atached" section of my program, or an OppenOffice file, or an TXT file, etc. Thanks a lot! *_____* *Lic. Daniel Quintero Rojas* *¡Saludos de

Re: [Gambas-user] Regular Expressions :: Error with gb.pcre component

2012-04-25 Thread Daniel Quintero
Mmm, I updated my Gambas 3.1 last week, I don't know exactly what revision is, but is recent. Ok, I will fix my code. Thanks. *_* *Lic. Daniel Quintero Rojas* http://www.dquinter.com.mx http://futbol.dquinter.com.mx http://twitter.com/#!/dquinteror *¡Sa

[Gambas-user] Regular Expressions :: Error with gb.pcre component

2012-04-25 Thread Daniel Quintero
ffset + Len(re.text) + 1) Else sText = "" End If If sText <> "" Then re.exec(sText) Loop For i = 0 To matches.Max Print matches[i] Next End I have attached the project to more clarity. Thanks. *_* *Lic. Daniel Quin

[Gambas-user] Run comand on a remote Unix server

2012-03-29 Thread Daniel Quintero
. *_* *Lic. Daniel Quintero Rojas* http://www.dquinter.com.mx http://futbol.dquinter.com.mx http://twitter.com/#!/dquinteror *¡Saludos desde México!** * -- This SF email is sponsosred by: Try Windows Azure